Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
Support and Learning
Productivity and Design Tools
I would like to increase the size of the checkbox to make it easier for users to check. Is there a simple way to do that with the new radCheckbox control?
Thanks,
Todd.
Hello Todd,
RadCheckBox offers elastic design so changing the font-size of the page/control will increase/decrease its size: http://docs.telerik.com/devtools/aspnet-ajax/controls/checkbox/mobile-support/elastic-design.
Here is the basic example you can also see in the article:
<style type=
"text/css"
>
button.RadCheckBox {
font-size
:
26px
;
}
</style>
<telerik:RadCheckBox runat=
"server"
ID=
"RadCheckBox1"
Text=
"Elastic CheckBox Button"
Checked=
"true"
</telerik:RadCheckBox>
And here is a small example that only changes the checkbox size without the label, even though I do not find it very appealing
button.RadCheckBox .rbIcon {