I’m very new to jqWidgets (currently evaluating) and somewhat new to jQuery, so I’m not sure if I’m missing something simple here. Do the jqWidgets not support the usual method chaining in jQuery?
I find that the following works as expected:
var next = $(this).next(); next.jqxDropDownList('clear'); next.jqxDropDownList({disabled: false});
I would have expected the following to also work in the same way, but it does not.
var next = $(this).next(); next.jqxDropDownList('clear').jqxDropDownList({disabled: false});
Am I missing the key to chaining the methods properly, or do I just need to resign myself to using separate statements instead of chaining methods?
Thanks in advance for any help you can give.
Donovan