To create a Linkbutton column that supports filtering and sorting, I'm using the technique shown here:
http://www.telerik.com/community/code-library/aspnet-ajax/grid/filtering-and-sorting-for-gridbuttoncolumn.aspx
Here's my existing markup:
I need to know how to substitute a space ( ) character when there's no data in a column. Otherwise, I'm getting cells with no lines.
How do I add a space character to a custom grid button column?
BTW, if there's a better technique than the GridButtonColumnWithFilteringSorting solution, I'd be glad to see it.
Thanks,
Ken
http://www.telerik.com/community/code-library/aspnet-ajax/grid/filtering-and-sorting-for-gridbuttoncolumn.aspx
Here's my existing markup:
| <custom:GridButtonColumnWithFilteringSorting HeaderText="Company" UniqueName="Company" |
| HeaderStyle-Width="150px" ItemStyle-Width="150px" SortExpression="Company" Reorderable="false" |
| Resizable="false" DataTextField="Company" DataField="Company" CommandName="Edit" |
| ButtonType="LinkButton"> |
| <HeaderStyle Width="150px"></HeaderStyle> |
| <ItemStyle Width="150px"></ItemStyle> |
| </custom:GridButtonColumnWithFilteringSorting> |
I need to know how to substitute a space ( ) character when there's no data in a column. Otherwise, I'm getting cells with no lines.
How do I add a space character to a custom grid button column?
BTW, if there's a better technique than the GridButtonColumnWithFilteringSorting solution, I'd be glad to see it.
Thanks,
Ken