Hi,
Owing to the layout of my forms I want to have a asp:label tag styled using the same style as labels attached to a RadTextBox, combo box etc. How would I reuse this? Using the CSSClass="riLabel" on the username label doesn't seem to do anything so I assume that there is some level of specification behind it. What would be nice is a RadLabel component...
Regards,
Jon
Owing to the layout of my forms I want to have a asp:label tag styled using the same style as labels attached to a RadTextBox, combo box etc. How would I reuse this? Using the CSSClass="riLabel" on the username label doesn't seem to do anything so I assume that there is some level of specification behind it. What would be nice is a RadLabel component...
<tr> <td class="gridAdminLabel"><asp:Label CssClass="riLabel">Username:</asp:Label></td> <td class="gridAdminCell"> <telerik:RadTextBox ID="uxUsername" Text="" runat="server" CssClass="formTextBox"></telerik:RadTextBox> <asp:RequiredFieldValidator ID="uxUsernameReq" runat="server" ControlToValidate="uxUsername" ErrorMessage="RequiredFieldValidator" Text="<img src='/blank.gif' alt='Required field' class='errIconTextBox' />" Width="0" ValidationGroup="LoginValidationGroup"></asp:RequiredFieldValidator> </td></tr>Regards,
Jon