Hi,
Is there any documentation available of using dhtmlxConnector with dhtmlxCombo in java? We are trying to use combo box with autocomplete and partial data loading from server.
-Sachin
Hi,
Is there any documentation available of using dhtmlxConnector with dhtmlxCombo in java? We are trying to use combo box with autocomplete and partial data loading from server.
-Sachin
There is no need for extra configuration
[code] protected void configure() {
Connection conn= ( new DataBaseConnection()).getConnection();
ComboConnector c = new ComboConnector(conn);
c.dynamic_loading(20);
c.render_table("country_data", "country_id", "name");
}[/code]
dynamic_loading defines how much data must be returned by single load command
filtering will work automatically