I have several native HTML Selects in my project, which I then convert to jqxDropDownList’s using
$(“#listid”).jqxDropDownList(options);
Is there a way to undo this at runtime, and convert it back to a native select?
I see I can call $(“#jqxList”).destroy() but this just removes it from the DOM, and the original select remains as display:none and with a modified #id
I have a single page app, which is why I need to create and revert these at runtime, rather than just creating them once
You could create it dynamically and also, I would suggest you use the wrapper as a parent for this element and after destroy it you could add again default HTML element.
Also, I would like to suggest you look at our “Single Page App” section in our Documentation.