-
Grzesiek
105
posts
Member since:
Jun 2007
Posted 12 Nov 2009
Link to this post
I have question to the spinbuttons.
Is there any option that I can set a increase/decrease value by 0.01 or 0.1.
Default is 1.0 - how can I change it if this is available?
-
-
17764
posts
Member since:
Mar 2007
Posted 13 Nov 2009
Link to this post
Hi Grzesiek,
You can set the IncrementSettings-Step property to desired as shown below.
<telerik:RadNumericTextBox ID="RadNumericTextBox1" runat="server" ShowSpinButtons="True">
<IncrementSettings Step="0.1" />
</telerik:RadNumericTextBox>
Regards,
Shinu.
-