4 Answers, 1 is accepted
0

lupotana
Top achievements
Rank 1
answered on 29 May 2009, 03:57 PM
Exist or not exist this control in Telerik controls collection?
0
Hello lupotana,
There is no RadButton control in our RadControls for ASP.NET AJAX suite.
Instead, you can use our RadFormDecorator control to apply skins to the existing ASP.NET buttons. Please examine the following links for more information:
RadFormDecorator First Look online demo
RadFormDecorator Overview
Regards,
Daniel
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.
There is no RadButton control in our RadControls for ASP.NET AJAX suite.
Instead, you can use our RadFormDecorator control to apply skins to the existing ASP.NET buttons. Please examine the following links for more information:
RadFormDecorator First Look online demo
RadFormDecorator Overview
Regards,
Daniel
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
Skywalker
Top achievements
Rank 1
answered on 25 Aug 2009, 06:47 PM
Hi Daniel,
The RadFormDecorator is an awesome control to style things like buttons.
However, what would still be really nice is a dedicated RadButton control with the following features:
Number 1 would be my favourite becasue that would help a lot in forms that users shouldn't submit more than once (in case of billing operations etc.)
Of course there are ways to implement the "submit only once" feature, but there is not a single way (that I know of) to simply set a property enabling this behaviour.
The RadFormDecorator is an awesome control to style things like buttons.
However, what would still be really nice is a dedicated RadButton control with the following features:
- A property indicating that the button should be disabled immediatly after being clicked
- A property indicating that the button should remain pressed after being clicked
- A dedicated skin for a button to enable things like hover images (or is that already possible using RadFormDecorator?)
Number 1 would be my favourite becasue that would help a lot in forms that users shouldn't submit more than once (in case of billing operations etc.)
Of course there are ways to implement the "submit only once" feature, but there is not a single way (that I know of) to simply set a property enabling this behaviour.
0
Hello Sipke,
Thank you for your suggestions.
I will pass them to our developers for future consideration.
You can attain the first requirement easily. Sample snippet is shown below:
Best regards,
Daniel
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Thank you for your suggestions.
I will pass them to our developers for future consideration.
You can attain the first requirement easily. Sample snippet is shown below:
<script type="text/javascript"> |
function responseEnd(sender, args) |
{ |
if (args.get_eventTarget().indexOf("TestButton") >= 0) |
args.get_eventTargetElement().disabled = "true"; |
} |
</script> |
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" ClientEvents-OnResponseEnd="responseEnd"> |
<asp:Button ID="TestButton" runat="server" Text="Test" /> |
</telerik:RadAjaxPanel> |
Best regards,
Daniel
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.