Good morning,
i have page where top consist of a form and bottom consist of grid data. Grid data has 4 types of record:
'S' - saved record where when i click on the row in the grid top of the page is fill out and I may modify radnumerictextbox and set the max value of radnumerictexbox in code behind
'P' - pending record where when i click on the row in the grid top of the page is fill out and I cannot modify radnumerictextbox however the requested hours which i get from SP into the grid has to go to radnumericbox instead max value is going into box.
For example: from 'S' saved record i set max value to 100. After that when i click on ''P' record instead of going 200 hours(from SP) into radnumeric box it will show max value from 'S' saved record which is 100.
My question is: is there possibilty to initialize max value when i click on 'P' record to show me actually reguested hours instead of max value set manually from previous clicked even though requested hours is greater than max value. if not then what other option do i have?
Thanks so much for your help.
Vitaly.
Hi there,
I´m using a RadNumericTextBox as a counter and I would like to show the number on the right but no between the arrows.
Right now I´m using the option: <EnabledStyle HorizontalAlign="Right" />
Thanks,
Alvaro.
Hi
Is there a way that i can change color of up arrow to green and down arrow to red.
Thanks in advance.
I have the RadNumericTextBox, which don't have MaxValue and MinValue (attribute not added). In my page, based on calculation, the value will be set in the RadNumericTextBox. First time the calculated value is 0.0 and set to RadNumericTextBox as 0.0. Then I tried with another calculation, the value is 10.0. But this time, I got the following exception (ArgumentOutOfRangeException).
Value of '10.0' is not valid for 'Value'. 'Value' should be between 'MinValue' and 'MaxValue'.
Looking like the value for MaxValue and MinValue automattically set as 0 at the first time.
Please help on this ASAP
Hi,
I want to have a Radnumeric Textbox "cssWorkload" in a table <td> element. I am using AJAX to initiate the Text box and do all the functionalities in My code. But when i run the code the Radnumeric text box does not show up when its under ClientItemTemplate.
<ClientItemTemplate>
<table cellpadding="10px" border="0" cellspacing="3px" id="tblSelectedItems1">
<tr style="height: 18px;">
<td class="cssEmployee">
<span>
<asp:Label runat="server" ID="Label1">#= Text #</asp:Label>
<asp:HiddenField runat="server" ID="HiddenField1" Value='#= Value #' />
</span>
</td>
<td class="cssWorkload">
<span>
<telerik:RadNumericTextBox runat="server" Visible="true" ID="RadNumericTextBox1" Type="Number"
RenderMode="Auto" AutoPostBack="True" >
<NumberFormat DecimalDigits="0"></NumberFormat>
<ClientSettings showbutton="true"></ClientSettings>
<ClientEvents OnLoad="Load"/>
</telerik:RadNumericTextBox>
</span>
</td>
</tr>
</table>
</ClientItemTemplate>