Created
February 22, 2013 15:16
-
-
Save asicfr/5014121 to your computer and use it in GitHub Desktop.
binding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="authorCreate" data-ng-controller="AuthorCreateCtrl"> | |
<h2>Author Create</h2> | |
<form class="form-horizontal"> | |
<div class="control-group"> | |
<label class="control-label" for="id">id</label> | |
<div class="controls"> | |
<input type="text" id="id" data-ng-model="oneauthor.id" /> | |
</div> | |
</div> | |
<div class="control-group"> | |
<label class="control-label" for="firstName">firstName</label> | |
<div class="controls"> | |
<input type="text" id="firstName" data-ng-model="oneauthor.firstName" /> | |
</div> | |
</div> | |
<div class="control-group"> | |
<label class="control-label" for="lastName">lastName</label> | |
<div class="controls"> | |
<input type="text" id="lastName" data-ng-model="oneauthor.lastName" /> | |
</div> | |
</div> | |
</form> | |
<br /> | |
<button data-ng-click="saveAuthor()">Save</button> | |
<button data-ng-click="openListAuthorPage()">Return to list</button> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment