|
Title: How to get the linkbutton is enable or disable? Post by: frankgao on February 11, 2016, 03:08:19 AM How to get the linkbutton is enable or disable property dynamic?
Title: Re: How to get the linkbutton is enable or disable? Post by: mzeddd on February 11, 2016, 04:13:34 AM $('#button').linkbutton('disable');
Title: Re: How to get the linkbutton is enable or disable? Post by: frankgao on February 12, 2016, 04:28:45 AM $('#button').linkbutton('disable'); Thank you for your reply, I need get the linkbutton attribute disable or enable status. Title: Re: How to get the linkbutton is enable or disable? Post by: battlezad on February 22, 2016, 02:17:43 AM You can use it like
if('#button').linkbutton('options').disabled) return false; Title: Re: How to get the linkbutton is enable or disable? Post by: frankgao on February 22, 2016, 02:32:37 AM You can use it like if('#button').linkbutton('options').disabled) return false; Thanks.Solved. |