Hi Peter,
I have a json structure like:
{
“Members”: {
“0”: [
{
“MaxSuccessfullyExecutions”: -1,
“HostName”: “*”,
“StartupType”: 1,
“StartupTypeRequest”: 0,
…
},
{
“MaxSuccessfullyExecutions”: -1,
“HostName”: “*”,
“StartupType”: 1,
“StartupTypeRequest”: 0,
…
}
}
}
Is there a way of setting the records as: Members[“0”] instead of implementing the loadServerData at the dataAdapter, and loosing its base functionality? My current problem is: one of the columns of the grid has a dropdownlist which has no values selected, and i believe that the problem is at the implementation of loadServerData which doesn’t set the correct value to the dropdownlist.
Thank you