Migration and New Functions
New in version 2.0
New in version 1.5
Security:
Flexibility:
New in version 1.2
Migration from older versions
0.9 -> 0.96
- beforeFilter and beforeSorting events provide object as parameter instead of plain data
- Order of parameters for render_* methods of TreeGrid and Tree connectors was changed.
//0.9
render_table("table","id","fields","parent id")
//1.0
render_table("table","id","fields","extra fields","parent id")
0.96 -> 1.0
- beforeOutput event has different parameters
1.0 -> 1.5
- new version of filtering out HTML content before saving, use the next code if you want to revert logic of connector to the previous behavior
ConnectorSecurity::$xss = DHX_SECURITY_TRUSTED;
Back to top