Hi,
I am using RadComboBox with WebServiceMethod. Why is it so that RadComboBoxContext doesn't contain ItemsPerRequest property.
<telerik:RadComboBox ItemsPerRequest="20" ..../>
I have also tried to manually add the ItemsPerRequest to the context (IDictionary) on the event OnClientItemsRequesting but i can't seem to find the propery ItemsPerRequest from javascript.
example code:
<telerik:RadComboBox ItemsPerRequest="20" OnClientItemsRequesting="onClientItemsRequesting" ..../>
//javascript
function onClientItemsRequesting(sender, eventArgs) {
context["ItemsPerRequest"] = sender.ItemsPerRequest; // ? where can i find the property
}
I am using RadComboBox with WebServiceMethod. Why is it so that RadComboBoxContext doesn't contain ItemsPerRequest property.
<telerik:RadComboBox ItemsPerRequest="20" ..../>
I have also tried to manually add the ItemsPerRequest to the context (IDictionary) on the event OnClientItemsRequesting but i can't seem to find the propery ItemsPerRequest from javascript.
example code:
<telerik:RadComboBox ItemsPerRequest="20" OnClientItemsRequesting="onClientItemsRequesting" ..../>
//javascript
function onClientItemsRequesting(sender, eventArgs) {
context["ItemsPerRequest"] = sender.ItemsPerRequest; // ? where can i find the property
}