Could you tell me where I can get the latest java connector. Your web site has version 1.5 dated back in 2012.
I have a newer version that is dated 2013 (I think was supplied here in the forum) but I don’t seem to have the corresponding connector.js for it.
For example, if I try to use the 1.5 version the GridConnector does not have the method GridConnector.filter() which is inherited from BaseConnector. Whereas the newer version does.
Can you please clarify if there is a later verison and where I can get this from.
We plan to officially release the next verson of connectors in next two weeks.
The version from the forum is the beta version, with dev. fixes and updates, which was not released yet ( all functionality from it will be available in the next official version )
OK that’s great. can you confirm whether the following problem has been also fixed.
When using server side filtering along with connector.is_select_mode() an IndexOutOfBounds error occurs.
It appears that the config object is not initialised before this method is called. This can be tseted using something like:
Server Side:
GridConnector c = new GridConnector(con);
c.dynamic_loading(100);
if (c.is_select_mode())
c.render_sql("select * from employee", "id", "name,dob,address");
else {
c.render_table("employee", "id", "name,dob,address");
}
When using server side filtering on a grid using attachHeader - if the data has an &(ampersand) character it breaks with an error of malformed xml. If I remove the filtering it works.
I can’t reconstruct this issue locally, can you provide the exact server side response which causes the problem ( can be catched by using firebug or chrome dev. tools )
Thanks for the info.
I was able to fix the issue, please try to use the attached jar file ( it includes all latest fixes as well ) connector.combo.all.zip (281 KB)