or

Hi,
I am using Grid component with paging, in ASP.NET MVC2 application, but on page change, all site had been reloaded. I am not using any custom handler, only defaults.
What is the problem here?
Thanks,
Edgar
<telerik:RadComboBox ID="cmbDescription" Filter="StartsWith" AllowCustomText="true"
MaxLength="256" Style="margin-right: 1px" javascript:
function cmbDescription_OnClientDropDownOpening(sender, args) {
var tempSLRef = grdVoucherItems.get_tempEntity().SLRef;
if (currentSLRef !== tempSLRef) {
currentSLRef = tempSLRef;
PageMethods.FetchAllSLStandardDescBySLID(currentSLRef, AjaxFetchAllSLStandardDescSucceeded, OnPageMethodFailed, null);
}
}
function AjaxFetchAllSLStandardDescSucceeded(result, context) {
lstSlStandardDescs = result;
cmbDescription.get_items().clear();
for (var i = 0; i < lstSlStandardDescs.length; i++) {
var comboItem = new Telerik.Web.UI.RadComboBoxItem();
comboItem.set_text(lstSlStandardDescs[i].Item1);
comboItem.set_value(lstSlStandardDescs[i].Item3);
cmbDescription.trackChanges();
cmbDescription.get_items().add(comboItem);
cmbDescription.commitChanges();
}