Created
December 31, 2014 08:10
-
-
Save wcadap/feb0abbd35e287bf6c51 to your computer and use it in GitHub Desktop.
This file contains 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 class="panel panel-primary"> | |
<div class="panel-heading">My Contacts</div> | |
<div class="panel-body"> | |
<div class="col-md-6"> | |
<a class="btn btn-primary" href="#/mycontacts/newcontact"><i class="glyphicon glyphicon-file"></i> New</a> | |
</div> | |
<div class="col-xs-10 col-lg-6 col-md-6"> | |
<div class="input-group"> | |
<input type="text" id="searchText" class="form-control pull-right" placeholder="Search for..." ng-model="search_txt"> | |
<span class="input-group-btn"> | |
<button class="btn btn-default" type="button"> | |
<i class="text-muted glyphicon glyphicon-search"></i> | |
</button> | |
</span> | |
</div><!-- /input-group --> | |
</div><!-- /.col-lg-6 --> | |
<div class="table table-responsive"> | |
<table class="table table-striped"> | |
<thead> | |
<tr> | |
<td>Last Name</td> | |
<td>First Name</td> | |
<td>Email</td> | |
<td>Mobile</td> | |
</tr> | |
</thead> | |
<tbody> | |
<tr ng-repeat="contact in contacts | filter:search_txt "> | |
<td>{{contact.lastName}}</td> | |
<td>{{contact.firstName}}</td> | |
<td>{{contact.email}}</td> | |
<td>{{contact.mobile}}</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment