Hello All,
We are using this awesome grid control but we have a problem by the moment:(
The height of a row is not the standard and one of its columns has a default bg color. This gives us an image of 80% select row color and 20% original column backgroung color when selectig it :(
How can we solve it ?
We are using this awesome grid control but we have a problem by the moment:(
The height of a row is not the standard and one of its columns has a default bg color. This gives us an image of 80% select row color and 20% original column backgroung color when selectig it :(
How can we solve it ?
| <telerik:RadGrid ID="rgTemplate" runat="server" AutoGenerateColumns="False" |
| GridLines="None" AllowPaging="True" AllowSorting="True" |
| PageSize="22" CellPadding="0" AllowMultiRowSelection="True" |
| OnNeedDataSource="rgTemplate_NeedDataSource" Skin="Vista" Width="100%"> |
| <MasterTableView ShowFooter="True" |
| cellspacing="-1" |
| DataKeyNames="MailExternalTemplateId" |
| ClientDataKeyNames="MailExternalTemplateId"> |
| <Columns> |
| <telerik:GridTemplateColumn ItemStyle-Width="1%"> |
| <ItemTemplate> |
| <asp:ImageButton ID="imgTemplate" runat="server" ImageUrl="~/Images/ico_16_2010_d.gif" /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridBoundColumn |
| UniqueName="Name" |
| SortExpression="Name" HeaderText="Name" DataField="Name" ItemStyle-BackColor="#EAF3FF" |
| ItemStyle-Width="25%"> |
| </telerik:GridBoundColumn> |
| <telerik:GridTemplateColumn HeaderText="Description" UniqueName="Description" SortExpression="Description" ItemStyle-Width="20%"> |
| <ItemTemplate> |
| <asp:Label ID="lblDescription" runat="server" Text='<%# Eval("Description")%>'></asp:Label> |
| <asp:HiddenField ID="hdTemplateId" runat="server" Value='<%# Eval("MailExternalTemplateId")%>' /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| .. |
