I try to find a setting to set SelectionOnFocus="SelectAll" by defaut for all input into my application. Is it possible without parse all webpage to make manually the change?
ty
2 Answers, 1 is accepted
0
Vasil
Telerik team
answered on 31 Oct 2013, 08:13 AM
Hi Allin,
The Default is "None" for RadTextBox and it is set to "SelectAll" for NumericTextBox.
Now in the App_Browsers folder create an default.browser with this content:
<browsers>
<browser refID="Default">
<controlAdapters>
<adapter
controlType="Telerik.Web.UI.RadTextBox"
adapterType="RadInputAdapter"
/>
<adapter
controlType="Telerik.Web.UI.RadNumericTextBox"
adapterType="RadInputAdapter"
/>
<adapter
controlType="Telerik.Web.UI.RadMaskedTextBox"
adapterType="RadInputAdapter"
/>
<adapter
controlType="Telerik.Web.UI.RadDateInput"
adapterType="RadInputAdapter"
/>
</controlAdapters>
</browser>
</browsers>
I hope this helps.
Regards,
Vasil
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.