We are currently on v3.6 and all calls to methods for the toggle button seem to be ignored. Please see the following code:
case 'jqxToggleButton' :
switch(currCmd)
{
case "setProperty" :
var propObj = {};
propObj[command.propName] = command.propValue;
$(newId).jqxToggleButton(propObj);
propObj = {};
break;
case "callMethod" :
$(newId).jqxToggleButton(command.methodName);
break;
}
I have already verified that the newId is set appropriately for both calls. In fact, the setting of properties works without issue. However, the call to any method seems to be ignored. I have even attempted to just hard code a call to a supported method and still does not call the method.
thanks