| <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="false" Skin="Hay"> |
| <ClientSettings EnableRowHoverStyle="true" /> |
| <MasterTableView> |
| <Columns> |
| <telerik:GridButtonColumn DataTextField="value" /> |
| <telerik:GridButtonColumn DataTextField="text" /> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |
| ListItemCollection list = new ListItemCollection(); |
| list.Add(new ListItem("One", "1")); |
| list.Add(new ListItem("Two", "2")); |
| list.Add(new ListItem("", "3")); |
| list.Add(new ListItem("", "4")); |
| RadGrid1.DataSource = list; |
| RadGrid1.DataBind(); |
Rows with empty button column text gets broken cell borders in Internet Explorer works in Firefox.