My client wants to be able to click on a part number to begin editing the record. He also wants to be able to filter on the PartNumber field.
When I attempt to filter on the following column, I get the error "The query syntax is not valid., near keyword 'LIKE', line 6, column 6." (Using Entity Framework.
How do I get a LinkButton and filtering to work together?
Here's the code:
Ken
When I attempt to filter on the following column, I get the error "The query syntax is not valid., near keyword 'LIKE', line 6, column 6." (Using Entity Framework.
How do I get a LinkButton and filtering to work together?
Here's the code:
| <telerik:GridTemplateColumn UniqueName="TemplateColumn4" AllowFiltering="True" Groupable="False" |
| HeaderStyle-Width="55px" ItemStyle-Width="55px" Reorderable="False" ShowSortIcon="True"> |
| <ItemTemplate> |
| <asp:LinkButton runat="server" CausesValidation="false" CommandName="Edit" |
| Text='<%#Eval("PartNumber") %>' /> |
| </ItemTemplate> |
| <HeaderStyle Width="55px"></HeaderStyle> |
| <ItemStyle Width="55px"></ItemStyle> |
| </telerik:GridTemplateColumn> |
Ken