Based off the demo for calendar databinding, I'm using the radgrid to create a control which has a value specified for a specific date. In the ascx I have instructed the radgrid and the mastertableview to show horizontal gridlines only. However, vertical ones still appear. Here is the radgrid definition in my ascx. What am I missing?
| <telerik:RadGrid ID="objRadGrid" runat="server" AutoGenerateColumns="False" Skin="Web20" EnableViewState="false" |
| Width="300px" OnNeedDataSource="objRadGrid_NeedDataSource" OnUpdateCommand="objRadGrid_UpdateCommand" |
| GridLines="Horizontal"> |
| <MasterTableView Width="100%" ShowHeader="false" GridLines="Horizontal"> |
| <Columns> |
| <telerik:GridTemplateColumn HeaderText="Goal Value" UniqueName="TemplateColumn"> |
| <ItemTemplate> |
| <asp:Label runat="server" ID="date" Text='<%# Eval("Date", "{0:d}") %>'> |
| </asp:Label> |
| |
| </ItemTemplate> |
| <EditItemTemplate> |
| <asp:TextBox runat="server" ID="txtGoalValue" Text='<%# Eval("Goal") %>' Visible="true" /> |
| </EditItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridEditCommandColumn ButtonType="ImageButton" /> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |
