Unfortunately the issue cannot be reconstructed locally. allowFreeText() function is turned off by default and cannot influence your server-side filtering.
Please, try to use:
cmb= new dhtmlXCombo(…) //cmb.load("…/…/combo/cmb.jsp"); // only first 100 options
cmb.allowFreeText(false);
cmb.enableFilteringMode(true, “…/…/combo/cmb.jsp”, true);
If the problem still occurs for you please, provide with a complete demo, where the problem can be reconstructed locally.
Here you can find a tutorial about creating a complete demo: docs.dhtmlx.com/tutorials__auxi … pport.html
cmb.allowFreeText(false);
I input “1”. The input is canceled. And I can’t input “123”.
server side code is below.
String where = "";
if (request.getParameter("mask") != null) {
where = " where id like '" + request.getParameter("mask") + "%'";
}
String sql = "select id, name from TokuiSakiMst" + where;
// create combo xml
Please, try to update your dhtmlx files. If the problem still occurs after that please, provide with a complete demo or share with a demo link, where the problem can be reconstructed.