Hello!
We have a grid created with fields using dataPath :
When save the user's preferences using setViewState() => The saved values used for sorting fields are not prefixed with "serie." or "definition." and this causes an error when reloading the user's preferences at the next diplsay. Is there an option on setViewState() or something else to do to deal with data paths?
We have a grid created with fields using dataPath :
Code:
this.titleField = new ListGridField("title", "title"); this.titleField.setDataPath("serie/title"); this.definitionField = new ListGridField("definition", "definition"); this.definitionField.setDataPath("definition/displayedValue");
Comment