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
Hi,
For native ASP.Net checkbox de default cheked is False.
For radcheckbox I get an error EG this line:
pnl_AfwijkendAfleveradres.Visible = chk_othershipping.Checked
ERROR
Nullable object must have a value.
Marc
Hi Marc,
You can achieve the requested functionality and avoid the error by modifying your code to:
pnl_AfwijkendAfleveradres.Visible = chk_othershipping.Checked == true;
Hi Rumen,
I am programing VB here, not c#
Im setting the panel's visiblity directly from the checkbox checked property.
You can implement a solution based on the HasValue property pnl_AfwijkendAfleveradres.Visible = chk_othershipping.Checked.HasValue