Help!!!
What might cause a RadGrid with GridBoundColumns (needed for filtering) not to postback after inserting value to column and pressing enter. Here is the code:
<telerik:RadGrid ID="rgModules" runat="server" AutoGenerateColumns="False" AllowSorting="True" AllowPaging="false" Width="100%"
AllowFilteringByColumn="True" AutoGenerateEditColumn="True" AllowAutomaticUpdates="False" EnableLinqExpressions="false"
OnNeedDataSource="rgModules_NeedDataSource" OnUpdateCommand="rgModules_UpdateCommand" OnDeleteCommand="rgModules_DeleteCommand"
CellSpacing="0" GridLines="None" PageSize="5" OnItemDataBound="rgModules_ItemDataBound" OnItemCommand="rgModules_ItemCommand"
OnItemCreated="rgModules_ItemCreated&quo ...
Go to the complete details ...