Hi,
i am using rad-grid with hierarchy and in that for the details table i am having the edit button and when i am clicking on edit below the row will appear and including that ":" is appearing in front of the label
below is the sample code i used and the image is also attached
please give me the solution ASAP
Thanks in advance
Vara Prasad.M
i am using rad-grid with hierarchy and in that for the details table i am having the edit button and when i am clicking on edit below the row will appear and including that ":" is appearing in front of the label
below is the sample code i used and the image is also attached
please give me the solution ASAP
| <Telerik:GridTemplateColumn UniqueName="editit"> |
| <HeaderTemplate> |
| <asp:Label ID="lblParameterValue" runat="server" Text="Parameter Value"></asp:Label></HeaderTemplate> |
| <ItemTemplate> |
| <asp:Label ID="lblParameterValue" runat="server" Text='<%#Eval("ParaValue") %>'></asp:Label> |
| </ItemTemplate> |
| <EditItemTemplate> |
| <asp:Label ID="lblParameterDesc" runat="server" Text='<%#Eval("ParameterDesc") %>'></asp:Label> |
| <asp:TextBox ID="txtParameterValue" runat="server" Text='<%#Eval("ParaValue") %>' /> |
| <asp:Label ID="lblParameterName" runat="server" Text='<%#Eval("ParameterName") %>' |
| Visible="false"></asp:Label> |
| <%--<ajaxToolkit:FilteredTextBoxExtender ID="filterAccountNumber" runat="server" TargetControlID="txtParameterValue" |
| FilterType="Numbers" />--%> |
| <asp:Label ID="lblParameterKey1" runat="server" Text='<%#Eval("ParameterKey") %>' |
| Visible="false"></asp:Label> |
| <asp:Label ID="lblMinLength" Visible="false" runat="server" Text='<%#Eval("MinLength") %>'></asp:Label> |
| <asp:Label ID="lblMaxLength" Visible="false" runat="server" Text='<%#Eval("MaxLength") %>'></asp:Label> |
| <asp:Label ID="lblAllowedSplChars" Visible="false" runat="server" Text='<%#Eval("AllowedSplChars") %>'></asp:Label> |
| <asp:Label ID="lblisSpaceAllowed" Visible="false" runat="server" Text='<%#Eval("isSpaceAllowed") %>'></asp:Label> |
| <asp:Label ID="lblRegularExp" Visible="false" runat="server" Text='<%#Eval("RegularExp") %>'></asp:Label> |
| <asp:Label ID="lblDataType" Visible="false" runat="server" Text='<%#Eval("DataType") %>'></asp:Label> |
| </EditItemTemplate> |
Thanks in advance
Vara Prasad.M