Good day
Title is the error I get when trying to update checkboxes on the success event of a service. The service is called on the load event
I would think the checkbox has been initialized at this point.
Code is
var setChannelsFromResponse = function (response) {
var channs = response.channels;
Code: Select all
for (i = 0; i < channs.length; i++) {
Apperyio("mcb" + channs[i].toString()).attr("checked", true).checkboxradio("refresh");
}
}
I've tried various things including
using timeouts
using the init event.
No luck
I also see this has popped up before, but was unsolved
https://getsatisfaction.com/apperyio/...
Any ideas please? I feel like I'm clearly missing something here.
Thanks