I am trying to set up a button with a different style based on the css generated and the instructions provided.
My primary goal is to have the button with a different width (i.e. 400px).
the following does not achieve my goal (assume i am using 2 themes and everything else is set up correctly).
$(“#btnCloseAccount”).jqxButton({ theme:’cancelaccount’, width: ‘400’, height: ’25’});
// without the call to render, the button does not change width to 400….
the following does work, but I get the error : Uncaught jqxCore: Invalid parameter ‘[render]’ does not exist.
$(“#btnCloseAccount”).jqxButton({ theme:’cancelaccount’, width: ‘400’, height: ’25’});
$(‘#btnCloseAccount’).jqxButton(‘render’);