I have a source that has a Value and Text array. The Text is html with an image.
When testing and using the source as a hard typed list:
var source = [
{ html: “
jqxNumberInput
“, title: ‘jqxNumberInput’ },
{ html: “
jqxProgressBar
“, title: ‘jqxProgressBar’ }
];
as per the documentation of the “Text with icons” demo example code it works fine, because there’s the { html: “jkfds” } code, however when drawing from a json (dynamic) source, is there a way to tell the listbox that the “Text” field is html? so it displays properly.
When it has html, it displays ok, but then there is always a mile-long horizontal scroll bar that appears, when it says html: as in the hard coded type it doesn’t have the scroll bar. Thus my need for the html: in the dynamic source.
Thanks, Jeremy