Skip to main content

Posts

Showing posts with the label button

Enable or Disable OpenbravoERP html buttons

Disable: The button: $('#SubmitButton').prop('disabled', true); The css of the button: document.getElementById('SubmitButton').setAttribute("class", "ButtonLink_disabled"); Enable: The button: $('#SubmitButton').prop('disabled', false); The css of the button: document.getElementById('SubmitButton').setAttribute("class", "ButtonLink_enabled");