I see in the upgrade guide to 1.9.0 that "url" option is now depreciated but I don't see an example of how to now perform what the "url" method did?
I try this;
var url = this._baseUrl + '?id=' + id;
var $t = $("#tabs");
$t.tabs("url", 0, url);
$t.unbind("tabsload");
$t.bind("tabsload", function (event, ui) {
console.log('tab load complete');
});
$t.tabs("load", 0);
But the tab doesn't load on the second time; oddly it does work the first time. I dunno what is going on. This block is fired when the user clicks on a grid row and id is the RowId.
The problem is it seems to be 'behind' one. Meaning if you pick Sunny, then pick PepperGrinder, on the select of PepperGrinder the Sunny background is applied. Seems the only way I can get it to 'sync' is by picking the theme from the themeroller twice.