I have a gird on ap a web page and on the grid is a GridDateTimeColumn I allow filtering I have it set as
This works fine but for some reason if the textbox next to the date time picker has focus and I hit the enter key it reloads the entire page.
<telerik:GridDateTimeColumn DataField="TradeDate" DataFormatString="{0:MM/dd/yyyy}" DataType="System.DateTime" FilterControlAltText="Filter TradeDate column" HeaderText="Trade Date" ReadOnly="True" SortExpression="TradeDate" UniqueName="TradeDate" HeaderStyle-HorizontalAlign="Right" ItemStyle-HorizontalAlign="Right" FilterControlWidth="110px" EnableRangeFiltering="true" AutoPostBackOnFilter="true" ShowFilterIcon="false"> </telerik:GridDateTimeColumn>This works fine but for some reason if the textbox next to the date time picker has focus and I hit the enter key it reloads the entire page.