]> hackdaworld.org Git - outofuni/tavern2.git/blobdiff - lib/product_category_component.html
disable category create button
[outofuni/tavern2.git] / lib / product_category_component.html
index e255a5417a91298d605a47d51aa76bdf9877a868..6fff73015a57f277a6a5d757ee825ff2226f3b1a 100644 (file)
        <div class="mdl-textfield mdl-js-textfield
                    mdl-textfield--floating-label ain">
                <input class="mdl-textfield__input" type=text id=ptn
-                      [(ngModel)]="new_prod_category_name">
+                      [(ngModel)]="new_prod_category_name"
+                      (keyup)="checkInput()">
                <label class="mdl-textfield__label" for=ptn>Name</label>
        </div>
        <div class="mdl-textfield mdl-js-textfield
                    mdl-textfield--floating-label ain">
                <input class="mdl-textfield__input" type=text id=pti
-                      [(ngModel)]="new_prod_category_id">
+                      [(ngModel)]="new_prod_category_id"
+                      (keyup)="checkInput()">
                <label class="mdl-textfield__label" for=pti>Identifier</label>
        </div>
        <button class="mdl-button mdl-js-button mdl-button--raised abtn"
-               (click)="createProductCategory()">
+               (click)="createProductCategory()"
+               [disabled]="!docreate">
                Create
        </button>
 </div>