#100630
edwardsmarkf
Member

peter- yes you are absolutely correct, although i do have the jqwidgets license.   it is best investment i ever made.
You might consider adding a couple of complete community working examples on the https://www.htmlelements.com/docs/combobox/ page.  we don’t want any new person to get discouraged early on.  Something like this perhaps:
 

<!DOCTYPE html>
<html>
<head>
<link rel=”stylesheet” href=”./source/styles/smart.default.css” type=”text/css” />
<script type=”text/javascript” src=”./source/smart.element.js”></script>
<script type=”text/javascript” src=”./source/smart.button.js”></script>
<script type=”text/javascript” src=”./source/smart.scrollbar.js”></script>
<script type=”text/javascript” src=”./source/smart.listbox.js”></script>
<script type=”text/javascript” src=”./source/smart.dropdownlist.js”></script>
<script type=”text/javascript” src=”./source/smart.combobox.js”></script>
<script type=”text/javascript” >
. . . .let init = () => {
. . . . . . . .const comboBox = new smartComboBox(‘smart-combo-box#my-smart-combo-box’, { });
. . . . . . . .comboBox.dataSource = [“new item 1”,
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . “new item 2″];
. . . .}
. . . .document.readyState === ‘complete’ ? init() : window.onload = init;
</script>
</head>
<body>
<smart-combo-box id=’my-smart-combo-box’ selection-mode=”zeroOrMany” selection-display-mode=”tokens” placeholder=”Select items:”></smart-combo-box>
</body>
</html>

and thanks again for saving me literally years of work by providing such time-saving widgets.