Hi,
I have a custom percentage bar control within a GridTemplateColumn. In the grid's ItemDataBound event I set the correct % value for the relevant row.
The problem that I am having is that the control is made up of table elements and as such it seems to be somehow contaminated (for want of a better word!) by the grid styling. This problem is demonstrable when I do a simple table. How do I get around this?
Shown below is the template column along with the progress bar control and also the basic table.
Regards,
Jon
I have a custom percentage bar control within a GridTemplateColumn. In the grid's ItemDataBound event I set the correct % value for the relevant row.
The problem that I am having is that the control is made up of table elements and as such it seems to be somehow contaminated (for want of a better word!) by the grid styling. This problem is demonstrable when I do a simple table. How do I get around this?
Shown below is the template column along with the progress bar control and also the basic table.
Regards,
Jon
<telerik:GridTemplateColumn HeaderText="" UniqueName="percentagePresentImg" ItemStyle-Width="120px" Resizable="False" AllowFiltering="False"> |
<ItemTemplate> |
<eo:ProgressBar ID="uxPresentPB" runat="server" Width="100px" ControlSkinID="Windows_Vista" RepeatIndicatorImage="True"></eo:ProgressBar> |
<table><tr><td>feubfew</td></tr></table> |
</ItemTemplate> |
<HeaderStyle Width="120px" /> |
<ItemStyle Width="120px"></ItemStyle> |
</telerik:GridTemplateColumn> |