EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: mapner on August 15, 2017, 06:37:46 PM



Title: Visibility attribute in a Linkbutton
Post by: mapner on August 15, 2017, 06:37:46 PM
Hi,

How can I set the "visibility" attribute (visible or hidden) in a Linkbutton ?

Thanks!


Title: Re: Visibility attribute in a Linkbutton
Post by: stworthy on August 15, 2017, 11:46:34 PM
Just call native 'show' or 'hide' methods to display or hide the linkbutton.
Code:
$('#btn1').show();
$('#btn2').hide();


Title: Re: Visibility attribute in a Linkbutton
Post by: mapner on August 16, 2017, 05:56:19 AM
Thanks Stworthy!