BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
Hi Manolo,
On analyzing your code, you have used setVisible(false) for hide dropdownlist. This method is not available in our dropdownlist. Instead of using this, you can use the JQuery hide and show method to show/hide our dropdownlist while check the radiobuttons. Please find the code for same:
<code>
<script>
function onRadSemanalChange(args) {
if (args.isChecked)
$('#<%=ddlTest.ClientID%>_wrapper').hide();
}
function onRadDiarioChange(args) {
if (args.isChecked)
$('#<%=ddlTest.ClientID%>_wrapper').show();
}
</script>
<code>
Also, we have modified your sample based on this and please refer to the following sample:
Sample: Sample
Where is the documentation of controls' functions in script section?
We have a documentation link to know about our controls properties, methods and events information.Please go through the following API link,
http://help.syncfusion.com/js/api/ejdropdownlist
Please let us know if you have further query.
Regards,
Kasithangam
Hi Manolo,
Thanks for your update.
Please let us know you have any other queries.
Regards,
Saranya.S