
Bradley Lane
Top achievements
Rank 1
Bradley Lane
asked on 18 Mar 2009, 05:24 AM
Hi,
Is it possible to remove the up and down buttons from RadSpinEditor?
I would like to use it as a kind of Numeric TextBox with built in validation and range checking.
Thanks,
Brad
Is it possible to remove the up and down buttons from RadSpinEditor?
I would like to use it as a kind of Numeric TextBox with built in validation and range checking.
Thanks,
Brad
5 Answers, 1 is accepted
0
Accepted
Hello Bradley Lane,
Thank you for your question.
It is possible to remove the buttons of RadSpinEditor. For additional information, please refer to the following Knowledge Base article: Creating numeric textbox.
Kind regards,
Nikolay
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Thank you for your question.
It is possible to remove the buttons of RadSpinEditor. For additional information, please refer to the following Knowledge Base article: Creating numeric textbox.
Kind regards,
Nikolay
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0

Bradley Lane
Top achievements
Rank 1
answered on 18 Mar 2009, 11:06 PM
Thanks Nikolay,
This is a good solution and suits my needs!
What are the chances of getting this functionality as property of RadSpinEditor in a future release?
Thanks,
Brad
This is a good solution and suits my needs!
What are the chances of getting this functionality as property of RadSpinEditor in a future release?
Thanks,
Brad
0
Hi Bradley Lane,
A property to hide the buttons is a good feature to add, indeed. It will be implemented in our next service pack.
I have updated your Telerik points for the suggestion. If you have additional questions, feel free to contact me.
Kind regards,
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0

Helmy
Top achievements
Rank 1
answered on 21 Jul 2011, 08:16 AM
hi ,
i want to use the event (key down) with radSpinEditor and it is not working
Thanks,
helmy
i want to use the event (key down) with radSpinEditor and it is not working
Thanks,
helmy
0
Hi Helmy,
Thank you for writing.
For our small editors we use the standard TextBox control for the textbox part. In order to use the KeyDown event of RadSpinEditor, please subscribe to the KeyDown event of its TextBoxItem:
We will consider improving the API of RadSpinEditor allowing you to directly work with the KeyDown event of the control.
I hope this helps.
Best wishes,
Nikolay
the Telerik team
Thank you for writing.
For our small editors we use the standard TextBox control for the textbox part. In order to use the KeyDown event of RadSpinEditor, please subscribe to the KeyDown event of its TextBoxItem:
public
Form1()
{
InitializeComponent();
this
.radSpinEditor1.SpinElement.TextBoxItem.KeyDown +=
new
KeyEventHandler(TextBoxItem_KeyDown);
}
void
TextBoxItem_KeyDown(
object
sender, KeyEventArgs e)
{
throw
new
NotImplementedException();
}
We will consider improving the API of RadSpinEditor allowing you to directly work with the KeyDown event of the control.
I hope this helps.
Best wishes,
Nikolay
the Telerik team
Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!