Hi,
when the ejButton is disabled I can't set the text property.
$('#bt').ejButton({text: 'text1'});
$('#bt').ejButton('disable');
$('#bt').ejButton('option', 'text', 'text2');
or
$('#bt').ejButton({text: 'text1', enabled: false});
$('#bt').ejButton('option', 'text', 'text2');
Text property does not change.
Thanks.