I might be missing something obvious but I see in the js src that there's a destroy method but I cannot seem to be able to get it to actually remove the buttons and wrapper div.
I'm just trying something simple like...
function destroyIntegerSpinnerControl(input) {
if (typeof input == 'undefined')
return;
var spinner = new ISpin(input);
if (typeof spinner != 'undefined')
spinner.destroy();
}
Any suggestions?
I might be missing something obvious but I see in the js src that there's a destroy method but I cannot seem to be able to get it to actually remove the buttons and wrapper div.
I'm just trying something simple like...
Any suggestions?