我遇到與dhtmlx組合自動填充模式的問題。dhtmlx組合,自動完成模式,js
的包括文件如下:
// Images
<script>
window.dhx_globalImgPath="combo/dhtmlxCombo/codebase/imgs/";
</script>
// CSS
<link rel="stylesheet" type="text/css" href="combo/dhtmlxCombo/codebase/dhtmlxcombo.css">
// Required JS files
<script src="combo/dhtmlxCombo/codebase/dhtmlxcommon.js"></script>
<script src="combo/dhtmlxCombo/codebase/dhtmlxcombo.js"></script>
<script src="combo/dhtmlxCombo/codebase/ext/dhtmlxcombo_extra.js"></script>
我的代碼沒有問題上面,並且效果很好。
下面的代碼我有我的組合本身在頁面上如下:
<!-- HTML Combo -->
<div id="pickup" style="width:260px;"></div>
<!-- Initialisation of combo -->
<script>
var x = new dhtmlXCombo("pickup",260,"image");
// this works
x.loadXML("list.xml");
x.enableFilteringMode(true);
</script>
我的問題是,我想通過使用下面的代碼行使用自動完成模式:
x.enableFilteringMode(true, "list.xml", true, true)
當我嘗試上述線,它不會給出錯誤,但它不過濾。但即時消息告訴使用PHP文件,但我不知道我需要放在list.php文件本身。我可以編寫代碼,但不知道要輸入什麼內容。任何人都可以點亮一下,文檔不會有幫助。