Hi,
I am using the radcombobox with automatica load on demand:
this works as expected. This combo box is on an aspx page using a master page. On the master page I'm logging events - however I do not want to capture ajax postbacks. (I do want to capture non ajax postbacks, but not postbacks from, for example, the combo box repopulating values as you type)
i have tried:
and
with no success.
Any advice would be appreciated.
Thank you,
Ryan
I am using the radcombobox with automatica load on demand:
<telerik:RadComboBox ID="cboSKU" runat="server" DataTextField="STCode" DataValueField="STCode" MarkFirstMatch="true" ShowToggleImage="false" EnableAutomaticLoadOnDemand="true" ShowMoreResultsBox="true" ItemsPerRequest="30" AutoPostBack="true" onselectedindexchanged="cboSKU_SelectedIndexChanged" >this works as expected. This combo box is on an aspx page using a master page. On the master page I'm logging events - however I do not want to capture ajax postbacks. (I do want to capture non ajax postbacks, but not postbacks from, for example, the combo box repopulating values as you type)
i have tried:
if (RadAjaxManager1.IsAjaxRequest == false) { AddLogEntry(); }and
if (ScriptManager.GetCurrent(Page).IsInAsyncPostBack == false) { AddLogEntry(); }with no success.
Any advice would be appreciated.
Thank you,
Ryan