javascript - Enable buttons when user read the disclaimer angular 2 -
hi have following modal,
<div class="dialog-header"> <div class="col-2 warning-image"> </div> </div> <div class="dialog-content" [innerhtml]="message | translate: messagedata? messagedata : null"></div> <table>........</table> <div>{{descalimer}}</div> <div class="dialog-footer"> <button class="btn btn-dbs-solid" (click)="confirm(false)">{{confirmbtn.text | translate}}</button> </div>
i can have table long , can short. button should shown time, enable once user read full table , disclaimer. how enable button on full scrolldown in angular or javascript? idea? in advance.
Comments
Post a Comment