DHTMLX Docs & Samples Explorer

10,000 records sample

This sample demonstrates how dhtmlxCombo works with large amount of data.
We have put into a table in a Mysql database 100.000 records filled with random words. Start typing and see what you get.
Important: sample is working with real data - 100.000 records! Enjoy it's performance and imagine how it could be used in your product

Source
<script>
window.dhx_globalImgPath = "../../codebase/imgs/";
</script> <link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxcombo.css"> <script src="../../codebase/dhtmlxcommon.js"></script> <script src="../../codebase/dhtmlxcombo.js"></script> <script>
function doOnLoad() {
    var z = new dhtmlXCombo("combo_zone", "alfa", 200);
    z.enableFilteringMode(true, "php/loadCombo.php", true, true);
}
</script> <div id="combo_zone" style="width:200px; height:30px;"></div>