How to load RadComboBoxItemData[] from Web APi in aspx?
In Web API:
public RadComboBoxItemData[] ABC(object context)
{
List<RadComboBoxItemData> result = null;
...
return result.ToArray();
}
How to load RadComboBoxItemData[] from Web APi in aspx?
In Web API:
public RadComboBoxItemData[] ABC(object context)
{
List<RadComboBoxItemData> result = null;
...
return result.ToArray();
}
Copyright © 2021 Jogjafile Inc.
Following is the code that I have used with great success.
Following is the custom web service I wrote for our use case.