I am having trouble extracting data via XValuePath when i have to go a level up.
Is it possible to traverse a level up? When i do a listgrid fetch and backend returns a generic error like service is down, i want to display it in label right above the listgrid. Is my approach good? I know there are errors i can set on list grid fields, but this is more generic so i want to display for the entire list.
Code:
setRecordXPath("/data"); ids.setValueXPath("taxIds"); // this works fine errors.setValueXPath("../error"); // does NOT work, get null when extracting
Comment