I’m currently developing with the GNU GPL (standard) version of Dhtmlx.
My first try has been to use the dataview widget to display a list of records stored in an MySql table.
My problem is that the DataView is only showing the 35 first records. I’m sure the connector is retrieving correctly all the records (I can check that calling directly the servlet and reading the xml), so it must be the widget that has some kind if limitation.
Is that the case? Is there a special property to set to enable more records to show?
Or is it simply that Standard Edition is “capped”?
I already posted the answer for my problem, but it doesn’t appear. Sorry if I repeat myself
My issue was in the data retrieve by the connector on the server side from the Datanase. It contained single quotes.
When generating the XML to give back to the client, the connector doesn’t escape special character, thus the XML is not compliant and the dataview fails to load when it finds incoherent structure in XML data.
Solution: Escape your data on the server side inside the “BeforeRender” method of the RenderBehavior object.
Suggestion: It might be usefull to implement this functionality directly in the connector…