Playing with my newlisp demo I set all Buttons to enabled=false
I want to enable them when all libs are ready loaded.
The Buttons Html.
Code: Select all
<button id="PushButton1" type="button" class="btn btn-default [NAB.PushButton1_effect]" ng-style="NAB.PushButton1_style" ng-hide="NAB.PushButton1_hidden" ng-disabled="NAB.PushButton1_disabled" ng-click="PushButton1_click()">NewLispCall</button>
Code: Select all
var newlispButton = document.getElementById('PushButton1');
newlispButton.enabled = true;
Is this the right way to Access the nab-object from JavaScript?
Regards