Hello,
I am trying to override the POST method of the client side functionality on a ListView, but I cannot figure out a way to do it, since apparently there is no event in ClientEvents that's triggered once the items are being requested.
My goal is to pass a parameter to the service.
As an example, I am pointing out the functionality available in RadComboBox, called "OnClientItemsRequesting", in which I am able to get the context and set a custom property, as easily as:
My question is:
Is there any way at all to pass a parameter as POST in the ListView control?
Thank you in advance!
                                I am trying to override the POST method of the client side functionality on a ListView, but I cannot figure out a way to do it, since apparently there is no event in ClientEvents that's triggered once the items are being requested.
My goal is to pass a parameter to the service.
As an example, I am pointing out the functionality available in RadComboBox, called "OnClientItemsRequesting", in which I am able to get the context and set a custom property, as easily as:
function CountyItemsRequesting(sender, eventArgs) {    var context = eventArgs.get_context();    context.District = $find("<%= ddlDistrict.ClientID %>")._value;}My question is:
Is there any way at all to pass a parameter as POST in the ListView control?
Thank you in advance!
