Skip to content

Instantly share code, notes, and snippets.

View joeauty's full-sized avatar

Joe Auty joeauty

  • FlipGive, MedStack, Thinkdata Works, nanoPay, Sigstr, DataSprocket, NetMusician
View GitHub Profile
{"data":{"userdata":[{"id":"549507ccd2cc1986d4000005","created_at":"2012-08-28T18:59:46.000Z","updated_at":null,"name":"doggy","pic":"","width":0,"height":0,"weight":0,"colour":0,"condition":0,"price":44,"description":"<p>\n asdf</p>","listorder":370,"availability":null},{"id":"549507ccd2cc1986d4000006","created_at":"2012-08-28T19:02:25.000Z","updated_at":"2013-01-07T14:11:00.000Z","name":"cat","pic":"","width":0,"height":0,"weight":0,"colour":0,"condition":0,"price":44,"description":"<p>\n adsf</p>","listorder":360,"availability":null},{"id":"549507ccd2cc1986d4000007","created_at":"2012-08-28T19:19:43.000Z","updated_at":null,"name":"monkey","pic":"","width":0,"height":0,"weight":0,"colour":0,"condition":0,"price":3,"description":"<p>\n asdf</p>","listorder":800,"availability":null},{"id":"549507ccd2cc1986d4000008","created_at":"2012-08-28T19:30:46.000Z","updated_at":null,"name":"unicorn","pic":"","width":0,"height":0,"weight":0,"colour":0,"condition":0,"price":32,"descript
'use strict';
/**
* @ngdoc function
* @name datasprocketApp.controller:MainCtrl
* @description
* # MainCtrl
* Controller of the datasprocketApp
*/
angular.module('datasprocketApp')
<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>