Hello,
In all of your component, you catch all errors and you do nothing with they.
It could be a little embarrassing in certain case.
Indeed, for example, if I wish to call the ‘uncheck’ method in jqxCheckbox by code, but I made a mistake in the method name, I call ‘unchek’ and not ‘uncheck’…
In this case, all of the code after I called $(“#myCheckbox”).jqxCheckBox(‘uncheck’)
would be ignored !!
I make a sample to show you my problem :
http://jsfiddle.net/YP6gF/21/
This is a little problem, but I spent 2 hours to find why my code is ignored !
I find you make a lot of :
”
try{
// Some code
}
catch (error)
{
}
”
in all of your components, and I think it’s justified, but do nothing in the ‘catch’ is a little dangerous maybe.
Would it’s possible to add a property in all of your components (ex : debugMode : true) to log all of the “errors messages” in the console ?
It could be very usefull for developers.