or
Hello!
I saw the demo
and start to use it. the problem is that I can't get tooltip after 10 rows when I changed my page size to 50.
I used the same code. the only difference is that I use databind in codebind and master page (but all rad controls are in content page).
I changed the demo size and get an error from demo.
Please help and thanks.
Amy
<telerik:RadNumericTextBox ID="txtId" runat="server" NumberFormat-DecimalDigits="8" NumberFormat-NegativePattern="-n%" NumberFormat-PositivePattern="n%" MaxLength="16" NumberFormat-GroupSeparator="" SelectionOnFocus="SelectAll" Width="100px" EnabledStyle-HorizontalAlign="Right" > <ClientEvents OnBlur="Blur" OnFocus="Focus" /> </telerik:RadNumericTextBox><asp:CheckBox ID="Datenschutz" runat="server" /><asp:CustomValidator ClientValidationFunction="ValidateDatenschutz" runat="server" ID="DatenschutzValidator" CssClass="..." ErrorMessage="<br/>..." /><telerik:RadButton ID="Submit" runat="server" Text="Speichern" OnClick="OnSubmitClick" CausesValidation="true" />function ValidateDatenschutz(sender, eventArgs) { eventArgs.IsValid = document.all[datenschutzCheckboxId].checked;}