Skip to content

Instantly share code, notes, and snippets.

@joeauty
Created December 28, 2014 04:54
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save joeauty/a52004ea5f8135f1b195 to your computer and use it in GitHub Desktop.
<h3>Edit table {{selectedtable.tablename}}</h3>
<div ng-repeat="thisrow in userdata" class="col-lg-9 col-md-9">
<div ng-repeat="(key, value) in schema" class="row">
<!-- text -->
<div ng-if="compareField(value,'text')">
<input type="text" name="{{key}}" ng-model="thisrow[key]" class="form-control">
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment