Sample: dhtmlxWindows Buttons Manipulations dhtmlxWindows main page
X
The purpose of this sample is to show that you can affect any button's property with a script command.
Please remember that changing system buttons' state manually can cause their incorrect behaviour.
Select Button
Select Action
 
<script>
 
    var dhxWins = new dhtmlXWindows();
    ...
    // showing button
    dhxWins.window(id).button(id).show();
    // hiding button
    dhxWins.window(id).button(id).hide();
    // is hidden
    var isHidden = dhxWins.window(id).button(id).isHidden();
    // enabling button
    dhxWins.window(id).button(id).enable();
    // disabling button
    dhxWins.window(id).button(id).disable();
    // is enabled
    var isEnabled = dhxWins.window(id).button(id).isEnabled();
</script>