var app = angular.module('app', ['ui.grid']);
app.controller('MainCtrl', ['$scope', '$http', function ($scope, $http) {
refresh();
$scope.gridOptions = {
columnDefs: [
{ name: 'name', cellTemplate: '<div class="ui-grid-cell-contents">{{ COL_FIELD.first }} {{ COL_FIELD.last }}</div>' },
{ name: 'email', cellTemplate: 'emailTemplate.html' },
{ name: 'address', cellTemplate: 'mapAddress.html' },
]
};
function refresh() {
$http.get('data.json')
.success(function (data) {
$scope.gridOptions.data = data;
});
}
this.openAddress = function (address) {
var param = address.street + ",+" + address.city + ",+" + address.state;
window.open('https://www.google.com/maps/search/' + param);
};
}]);
.grid {
width: 100%;
height: 250px;
}
<!DOCTYPE html>
<html ng-app="app">
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.13/angular.js"></script>
<script src="//cdn.rawgit.com/angular-ui/bower-ui-grid/v3.0.6/ui-grid.min.js"></script>
<link rel="stylesheet" href="//cdn.rawgit.com/angular-ui/bower-ui-grid/v3.0.6/ui-grid.min.css" type="text/css" />
<link rel="stylesheet" href="main.css" type="text/css" />
</head>
<body>
<div ng-controller="MainCtrl as Main">
<div id="grid1" ui-grid="gridOptions" class="grid"></div>
</div>
<script src="app.js"></script>
<script type="text/ng-template" id="mapAddress.html">
<div class="ui-grid-cell-contents">
<button class="btn" type="button" ng-click="grid.appScope.Main.openAddress(COL_FIELD)">Map Address</button>
</div>
</script>
</body>
</html>
[
{
"name": {
"first": "Sherrie",
"last": "Watkins"
},
"company": "GRAINSPOT",
"email": "sherriewatkins@grainspot.com",
"address": {
"street": "3560 Brevoort Place",
"city": "Bayview",
"state": "Texas"
}
},
{
"name": {
"first": "Oliver",
"last": "Barrett"
},
"company": "CABLAM",
"email": "oliverbarrett@cablam.com",
"address": {
"street": "4783 Douglass Street",
"city": "Hegins",
"state": "Nevada"
}
},
{
"name": {
"first": "Thornton",
"last": "Rodgers"
},
"company": "LEXICONDO",
"email": "thorntonrodgers@lexicondo.com",
"address": {
"street": "6254 Beard Street",
"city": "Lithium",
"state": "Colorado"
}
},
{
"name": {
"first": "Alvarado",
"last": "Keller"
},
"company": "ILLUMITY",
"email": "alvaradokeller@illumity.com",
"address": {
"street": "4957 Melrose Street",
"city": "Dellview",
"state": "Rhode Island"
}
},
{
"name": {
"first": "Verna",
"last": "Roberts"
},
"company": "ANIMALIA",
"email": "vernaroberts@animalia.com",
"address": {
"street": "7356 Wogan Terrace",
"city": "Fostoria",
"state": "Vermont"
}
},
{
"name": {
"first": "Finch",
"last": "Wells"
},
"company": "SENTIA",
"email": "finchwells@sentia.com",
"address": {
"street": "7582 Meserole Street",
"city": "Brownlee",
"state": "Kentucky"
}
},
{
"name": {
"first": "Barrett",
"last": "Riddle"
},
"company": "GENESYNK",
"email": "barrettriddle@genesynk.com",
"address": {
"street": "1414 Heyward Street",
"city": "Klondike",
"state": "Alabama"
}
},
{
"name": {
"first": "Potts",
"last": "Mosley"
},
"company": "WATERBABY",
"email": "pottsmosley@waterbaby.com",
"address": {
"street": "8412 Polar Street",
"city": "Indio",
"state": "Nebraska"
}
},
{
"name": {
"first": "Randall",
"last": "Pena"
},
"company": "BIOHAB",
"email": "randallpena@biohab.com",
"address": {
"street": "7000 Coventry Road",
"city": "Toftrees",
"state": "Palau"
}
},
{
"name": {
"first": "Olson",
"last": "Ellison"
},
"company": "EQUITAX",
"email": "olsonellison@equitax.com",
"address": {
"street": "5470 Division Avenue",
"city": "Cawood",
"state": "Michigan"
}
},
{
"name": {
"first": "Key",
"last": "Trujillo"
},
"company": "ZANILLA",
"email": "keytrujillo@zanilla.com",
"address": {
"street": "7533 Times Placez",
"city": "Gambrills",
"state": "Northern Mariana Islands"
}
},
{
"name": {
"first": "Craft",
"last": "Parker"
},
"company": "KINETICA",
"email": "craftparker@kinetica.com",
"address": {
"street": "649 Wyckoff Street",
"city": "Hinsdale",
"state": "Guam"
}
},
{
"name": {
"first": "Jeanne",
"last": "Barker"
},
"company": "BUNGA",
"email": "jeannebarker@bunga.com",
"address": {
"street": "3435 Kensington Street",
"city": "Rose",
"state": "Indiana"
}
},
{
"name": {
"first": "Felecia",
"last": "Schroeder"
},
"company": "RADIANTIX",
"email": "feleciaschroeder@radiantix.com",
"address": {
"street": "5617 Ralph Avenue",
"city": "Montura",
"state": "Oregon"
}
},
{
"name": {
"first": "Herrera",
"last": "Dorsey"
},
"company": "ULTRIMAX",
"email": "herreradorsey@ultrimax.com",
"address": {
"street": "7474 Reed Street",
"city": "Florence",
"state": "New Jersey"
}
},
{
"name": {
"first": "Dona",
"last": "Perez"
},
"company": "MULTRON",
"email": "donaperez@multron.com",
"address": {
"street": "3231 Doughty Street",
"city": "Finzel",
"state": "South Carolina"
}
},
{
"name": {
"first": "Day",
"last": "Stone"
},
"company": "ENDIPIN",
"email": "daystone@endipin.com",
"address": {
"street": "4820 Blake Avenue",
"city": "Motley",
"state": "New York"
}
},
{
"name": {
"first": "Callahan",
"last": "Slater"
},
"company": "CANDECOR",
"email": "callahanslater@candecor.com",
"address": {
"street": "8760 Dinsmore Place",
"city": "Thermal",
"state": "California"
}
},
{
"name": {
"first": "Mccray",
"last": "House"
},
"company": "RODEOCEAN",
"email": "mccrayhouse@rodeocean.com",
"address": {
"street": "8303 Berriman Street",
"city": "Ronco",
"state": "Alaska"
}
},
{
"name": {
"first": "Fletcher",
"last": "Greer"
},
"company": "TETRATREX",
"email": "fletchergreer@tetratrex.com",
"address": {
"street": "2140 Cropsey Avenue",
"city": "Corriganville",
"state": "Virgin Islands"
}
},
{
"name": {
"first": "Sherman",
"last": "Mcneil"
},
"company": "ZOXY",
"email": "shermanmcneil@zoxy.com",
"address": {
"street": "7790 Bancroft Place",
"city": "Windsor",
"state": "North Carolina"
}
},
{
"name": {
"first": "Barrera",
"last": "Washington"
},
"company": "GINK",
"email": "barrerawashington@gink.com",
"address": {
"street": "9520 Jackson Court",
"city": "Innsbrook",
"state": "Delaware"
}
},
{
"name": {
"first": "Rosales",
"last": "Huff"
},
"company": "ASSISTIX",
"email": "rosaleshuff@assistix.com",
"address": {
"street": "3654 Glenmore Avenue",
"city": "Hoehne",
"state": "Marshall Islands"
}
},
{
"name": {
"first": "Brandi",
"last": "Jackson"
},
"company": "ACCUPRINT",
"email": "brandijackson@accuprint.com",
"address": {
"street": "7314 Lincoln Place",
"city": "Shindler",
"state": "Pennsylvania"
}
},
{
"name": {
"first": "Anderson",
"last": "Leblanc"
},
"company": "IMKAN",
"email": "andersonleblanc@imkan.com",
"address": {
"street": "2960 Dekoven Court",
"city": "Gordon",
"state": "Arizona"
}
},
{
"name": {
"first": "Charlene",
"last": "Burke"
},
"company": "BLUEGRAIN",
"email": "charleneburke@bluegrain.com",
"address": {
"street": "6993 Huron Street",
"city": "Kilbourne",
"state": "Idaho"
}
},
{
"name": {
"first": "Hull",
"last": "Golden"
},
"company": "VIASIA",
"email": "hullgolden@viasia.com",
"address": {
"street": "5872 Miller Avenue",
"city": "Twilight",
"state": "Illinois"
}
},
{
"name": {
"first": "Bowers",
"last": "Delaney"
},
"company": "INJOY",
"email": "bowersdelaney@injoy.com",
"address": {
"street": "3414 Tech Place",
"city": "Welda",
"state": "Missouri"
}
},
{
"name": {
"first": "Tamra",
"last": "Schmidt"
},
"company": "CORPULSE",
"email": "tamraschmidt@corpulse.com",
"address": {
"street": "3652 Belmont Avenue",
"city": "Bodega",
"state": "New Hampshire"
}
},
{
"name": {
"first": "Marta",
"last": "Luna"
},
"company": "ZEAM",
"email": "martaluna@zeam.com",
"address": {
"street": "228 Ivan Court",
"city": "Hendersonville",
"state": "Arkansas"
}
},
{
"name": {
"first": "Randolph",
"last": "Byers"
},
"company": "EXOVENT",
"email": "randolphbyers@exovent.com",
"address": {
"street": "7951 Kane Place",
"city": "Iberia",
"state": "Mississippi"
}
},
{
"name": {
"first": "Walls",
"last": "Horne"
},
"company": "HOTCAKES",
"email": "wallshorne@hotcakes.com",
"address": {
"street": "9067 Furman Avenue",
"city": "Nile",
"state": "Oklahoma"
}
},
{
"name": {
"first": "Shields",
"last": "Hendrix"
},
"company": "FLEXIGEN",
"email": "shieldshendrix@flexigen.com",
"address": {
"street": "6469 Navy Walk",
"city": "Jacumba",
"state": "Tennessee"
}
},
{
"name": {
"first": "Avila",
"last": "Baxter"
},
"company": "RETRACK",
"email": "avilabaxter@retrack.com",
"address": {
"street": "2791 Columbus Place",
"city": "Dahlen",
"state": "Kansas"
}
},
{
"name": {
"first": "Robles",
"last": "Reilly"
},
"company": "COWTOWN",
"email": "roblesreilly@cowtown.com",
"address": {
"street": "7485 Strickland Avenue",
"city": "Golconda",
"state": "Georgia"
}
},
{
"name": {
"first": "Fran",
"last": "Bolton"
},
"company": "ELITA",
"email": "franbolton@elita.com",
"address": {
"street": "3659 Albemarle Terrace",
"city": "Taycheedah",
"state": "Montana"
}
},
{
"name": {
"first": "Gilda",
"last": "Singleton"
},
"company": "ZIZZLE",
"email": "gildasingleton@zizzle.com",
"address": {
"street": "6349 Charles Place",
"city": "Shasta",
"state": "Ohio"
}
},
{
"name": {
"first": "Alexis",
"last": "Dale"
},
"company": "SOLAREN",
"email": "alexisdale@solaren.com",
"address": {
"street": "6805 Robert Street",
"city": "Jacksonburg",
"state": "Virginia"
}
},
{
"name": {
"first": "Knox",
"last": "Cervantes"
},
"company": "COASH",
"email": "knoxcervantes@coash.com",
"address": {
"street": "9932 Sunnyside Court",
"city": "Crucible",
"state": "Minnesota"
}
},
{
"name": {
"first": "Catherine",
"last": "Pace"
},
"company": "REMOTION",
"email": "catherinepace@remotion.com",
"address": {
"street": "2543 Granite Street",
"city": "Sabillasville",
"state": "North Dakota"
}
},
{
"name": {
"first": "Freeman",
"last": "English"
},
"company": "ULTRASURE",
"email": "freemanenglish@ultrasure.com",
"address": {
"street": "6665 Green Street",
"city": "Veyo",
"state": "New Mexico"
}
},
{
"name": {
"first": "Steele",
"last": "Shannon"
},
"company": "XPLOR",
"email": "steeleshannon@xplor.com",
"address": {
"street": "1308 Tehama Street",
"city": "Gardiner",
"state": "American Samoa"
}
},
{
"name": {
"first": "Lillian",
"last": "Moore"
},
"company": "PHEAST",
"email": "lillianmoore@pheast.com",
"address": {
"street": "1509 Eldert Street",
"city": "Tyhee",
"state": "Puerto Rico"
}
},
{
"name": {
"first": "Addie",
"last": "Schwartz"
},
"company": "CEPRENE",
"email": "addieschwartz@ceprene.com",
"address": {
"street": "2191 Coleridge Street",
"city": "Muse",
"state": "Massachusetts"
}
},
{
"name": {
"first": "Colette",
"last": "Morris"
},
"company": "KYAGORO",
"email": "colettemorris@kyagoro.com",
"address": {
"street": "4453 Virginia Place",
"city": "Bath",
"state": "Washington"
}
},
{
"name": {
"first": "Potter",
"last": "Mercado"
},
"company": "OVIUM",
"email": "pottermercado@ovium.com",
"address": {
"street": "8964 Sutter Avenue",
"city": "Savannah",
"state": "Louisiana"
}
},
{
"name": {
"first": "Elinor",
"last": "Sanders"
},
"company": "JASPER",
"email": "elinorsanders@jasper.com",
"address": {
"street": "3050 Lombardy Street",
"city": "Sehili",
"state": "Florida"
}
},
{
"name": {
"first": "Rios",
"last": "Mcdowell"
},
"company": "GEEKNET",
"email": "riosmcdowell@geeknet.com",
"address": {
"street": "8214 Lake Place",
"city": "Tolu",
"state": "Federated States Of Micronesia"
}
},
{
"name": {
"first": "Karin",
"last": "Lester"
},
"company": "ZOMBOID",
"email": "karinlester@zomboid.com",
"address": {
"street": "9280 Havemeyer Street",
"city": "Cartwright",
"state": "Wisconsin"
}
},
{
"name": {
"first": "Workman",
"last": "Stevenson"
},
"company": "MANGLO",
"email": "workmanstevenson@manglo.com",
"address": {
"street": "1288 Atlantic Avenue",
"city": "Gouglersville",
"state": "Wyoming"
}
},
{
"name": {
"first": "Alison",
"last": "Perry"
},
"company": "EXOSIS",
"email": "alisonperry@exosis.com",
"address": {
"street": "5179 Johnson Avenue",
"city": "Tecolotito",
"state": "West Virginia"
}
},
{
"name": {
"first": "Christie",
"last": "Winters"
},
"company": "GEOSTELE",
"email": "christiewinters@geostele.com",
"address": {
"street": "6501 Ludlam Place",
"city": "Sisquoc",
"state": "South Dakota"
}
},
{
"name": {
"first": "Burnett",
"last": "Petersen"
},
"company": "FRANSCENE",
"email": "burnettpetersen@franscene.com",
"address": {
"street": "388 Rose Street",
"city": "Deltaville",
"state": "Iowa"
}
},
{
"name": {
"first": "Kimberly",
"last": "Fuentes"
},
"company": "SKYPLEX",
"email": "kimberlyfuentes@skyplex.com",
"address": {
"street": "2403 Kossuth Place",
"city": "Eureka",
"state": "District Of Columbia"
}
},
{
"name": {
"first": "Wilma",
"last": "Holmes"
},
"company": "ZOUNDS",
"email": "wilmaholmes@zounds.com",
"address": {
"street": "219 Hornell Loop",
"city": "Efland",
"state": "Connecticut"
}
},
{
"name": {
"first": "Melton",
"last": "Warner"
},
"company": "CINASTER",
"email": "meltonwarner@cinaster.com",
"address": {
"street": "4152 Danforth Street",
"city": "Walker",
"state": "Utah"
}
},
{
"name": {
"first": "Santiago",
"last": "Ortiz"
},
"company": "PYRAMIA",
"email": "santiagoortiz@pyramia.com",
"address": {
"street": "8527 Dwight Street",
"city": "Weogufka",
"state": "Hawaii"
}
},
{
"name": {
"first": "Rocha",
"last": "Wallace"
},
"company": "ACUMENTOR",
"email": "rochawallace@acumentor.com",
"address": {
"street": "6246 Bushwick Place",
"city": "Herald",
"state": "Maryland"
}
},
{
"name": {
"first": "Daniel",
"last": "Hall"
},
"company": "RECRITUBE",
"email": "danielhall@recritube.com",
"address": {
"street": "5154 Furman Street",
"city": "Mansfield",
"state": "Texas"
}
},
{
"name": {
"first": "Stout",
"last": "Hoffman"
},
"company": "SYNTAC",
"email": "stouthoffman@syntac.com",
"address": {
"street": "423 Garnet Street",
"city": "Boyd",
"state": "Nevada"
}
},
{
"name": {
"first": "Nettie",
"last": "Cruz"
},
"company": "SYBIXTEX",
"email": "nettiecruz@sybixtex.com",
"address": {
"street": "6330 Truxton Street",
"city": "Denio",
"state": "Colorado"
}
},
{
"name": {
"first": "Brooks",
"last": "Flynn"
},
"company": "KINDALOO",
"email": "brooksflynn@kindaloo.com",
"address": {
"street": "3490 Harbor Lane",
"city": "Heil",
"state": "Rhode Island"
}
},
{
"name": {
"first": "Isabelle",
"last": "Curry"
},
"company": "GLUKGLUK",
"email": "isabellecurry@glukgluk.com",
"address": {
"street": "5610 Underhill Avenue",
"city": "Yardville",
"state": "Vermont"
}
},
{
"name": {
"first": "Davis",
"last": "Aguirre"
},
"company": "INEAR",
"email": "davisaguirre@inear.com",
"address": {
"street": "398 Putnam Avenue",
"city": "Roland",
"state": "Kentucky"
}
},
{
"name": {
"first": "Bishop",
"last": "Schultz"
},
"company": "ORBALIX",
"email": "bishopschultz@orbalix.com",
"address": {
"street": "7174 Columbia Place",
"city": "Rockhill",
"state": "Alabama"
}
},
{
"name": {
"first": "Montgomery",
"last": "Mcbride"
},
"company": "NETPLAX",
"email": "montgomerymcbride@netplax.com",
"address": {
"street": "3194 Orange Street",
"city": "Glidden",
"state": "Nebraska"
}
},
{
"name": {
"first": "Lacy",
"last": "Patrick"
},
"company": "DUFLEX",
"email": "lacypatrick@duflex.com",
"address": {
"street": "8756 Saratoga Avenue",
"city": "Hiwasse",
"state": "Palau"
}
},
{
"name": {
"first": "Ruby",
"last": "Mejia"
},
"company": "LYRIA",
"email": "rubymejia@lyria.com",
"address": {
"street": "7151 Howard Alley",
"city": "Bordelonville",
"state": "Michigan"
}
},
{
"name": {
"first": "Cunningham",
"last": "Pacheco"
},
"company": "NEPTIDE",
"email": "cunninghampacheco@neptide.com",
"address": {
"street": "1240 Dare Court",
"city": "Dyckesville",
"state": "Northern Mariana Islands"
}
},
{
"name": {
"first": "Lynn",
"last": "Rodriquez"
},
"company": "PAWNAGRA",
"email": "lynnrodriquez@pawnagra.com",
"address": {
"street": "8834 Cooke Court",
"city": "Loma",
"state": "Guam"
}
},
{
"name": {
"first": "Garcia",
"last": "Vargas"
},
"company": "ZINCA",
"email": "garciavargas@zinca.com",
"address": {
"street": "2106 Powell Street",
"city": "Kieler",
"state": "Indiana"
}
},
{
"name": {
"first": "Holloway",
"last": "Gordon"
},
"company": "MEDIOT",
"email": "hollowaygordon@mediot.com",
"address": {
"street": "4195 Seigel Court",
"city": "Mathews",
"state": "Oregon"
}
},
{
"name": {
"first": "Terry",
"last": "Hernandez"
},
"company": "ENERSOL",
"email": "terryhernandez@enersol.com",
"address": {
"street": "5531 Keap Street",
"city": "Crayne",
"state": "New Jersey"
}
},
{
"name": {
"first": "Cooley",
"last": "Ramirez"
},
"company": "UXMOX",
"email": "cooleyramirez@uxmox.com",
"address": {
"street": "3609 Liberty Avenue",
"city": "Odessa",
"state": "South Carolina"
}
},
{
"name": {
"first": "Cote",
"last": "Collier"
},
"company": "SUPPORTAL",
"email": "cotecollier@supportal.com",
"address": {
"street": "4902 Stryker Street",
"city": "Kipp",
"state": "New York"
}
},
{
"name": {
"first": "Theresa",
"last": "Conrad"
},
"company": "ESCHOIR",
"email": "theresaconrad@eschoir.com",
"address": {
"street": "7734 Holt Court",
"city": "Osage",
"state": "California"
}
},
{
"name": {
"first": "Koch",
"last": "Livingston"
},
"company": "EMOLTRA",
"email": "kochlivingston@emoltra.com",
"address": {
"street": "6809 Willow Street",
"city": "Sugartown",
"state": "Alaska"
}
},
{
"name": {
"first": "Lenora",
"last": "Hudson"
},
"company": "COGNICODE",
"email": "lenorahudson@cognicode.com",
"address": {
"street": "4208 Wythe Avenue",
"city": "Escondida",
"state": "Virgin Islands"
}
},
{
"name": {
"first": "Edwina",
"last": "Alvarado"
},
"company": "EXTRAWEAR",
"email": "edwinaalvarado@extrawear.com",
"address": {
"street": "8024 Baughman Place",
"city": "Graball",
"state": "North Carolina"
}
},
{
"name": {
"first": "Sandoval",
"last": "Elliott"
},
"company": "QUAILCOM",
"email": "sandovalelliott@quailcom.com",
"address": {
"street": "9862 Colin Place",
"city": "Roulette",
"state": "Delaware"
}
},
{
"name": {
"first": "Terra",
"last": "Hicks"
},
"company": "GINKLE",
"email": "terrahicks@ginkle.com",
"address": {
"street": "919 Harrison Avenue",
"city": "Moraida",
"state": "Marshall Islands"
}
},
{
"name": {
"first": "Leah",
"last": "Spears"
},
"company": "ZILIDIUM",
"email": "leahspears@zilidium.com",
"address": {
"street": "1031 Argyle Road",
"city": "Stewart",
"state": "Pennsylvania"
}
},
{
"name": {
"first": "Alexandria",
"last": "Noel"
},
"company": "XINWARE",
"email": "alexandrianoel@xinware.com",
"address": {
"street": "1476 Kay Court",
"city": "Wright",
"state": "Arizona"
}
},
{
"name": {
"first": "Baker",
"last": "Buckley"
},
"company": "COMVEYOR",
"email": "bakerbuckley@comveyor.com",
"address": {
"street": "8493 Gunnison Court",
"city": "Santel",
"state": "Idaho"
}
},
{
"name": {
"first": "Bender",
"last": "Hebert"
},
"company": "DIGIQUE",
"email": "benderhebert@digique.com",
"address": {
"street": "8550 Throop Avenue",
"city": "Dorneyville",
"state": "Illinois"
}
},
{
"name": {
"first": "Janie",
"last": "Campbell"
},
"company": "GEEKOSIS",
"email": "janiecampbell@geekosis.com",
"address": {
"street": "5192 Macon Street",
"city": "Tryon",
"state": "Missouri"
}
},
{
"name": {
"first": "Socorro",
"last": "Callahan"
},
"company": "SIGNIDYNE",
"email": "socorrocallahan@signidyne.com",
"address": {
"street": "9592 Noll Street",
"city": "Bellamy",
"state": "New Hampshire"
}
},
{
"name": {
"first": "Laurie",
"last": "Beard"
},
"company": "PASTURIA",
"email": "lauriebeard@pasturia.com",
"address": {
"street": "3523 Sapphire Street",
"city": "Dennard",
"state": "Arkansas"
}
},
{
"name": {
"first": "Harrington",
"last": "Andrews"
},
"company": "ZYTREX",
"email": "harringtonandrews@zytrex.com",
"address": {
"street": "2445 Lee Avenue",
"city": "Foxworth",
"state": "Mississippi"
}
},
{
"name": {
"first": "Vinson",
"last": "Christensen"
},
"company": "COMTENT",
"email": "vinsonchristensen@comtent.com",
"address": {
"street": "8605 Henderson Walk",
"city": "Chestnut",
"state": "Oklahoma"
}
},
{
"name": {
"first": "Clements",
"last": "Baird"
},
"company": "ISOLOGICS",
"email": "clementsbaird@isologics.com",
"address": {
"street": "8037 Stuart Street",
"city": "Austinburg",
"state": "Tennessee"
}
},
{
"name": {
"first": "Lizzie",
"last": "Pruitt"
},
"company": "ANDERSHUN",
"email": "lizziepruitt@andershun.com",
"address": {
"street": "1962 Dodworth Street",
"city": "Elfrida",
"state": "Kansas"
}
},
{
"name": {
"first": "Doyle",
"last": "Arnold"
},
"company": "INCUBUS",
"email": "doylearnold@incubus.com",
"address": {
"street": "4292 Rockwell Place",
"city": "Garberville",
"state": "Georgia"
}
},
{
"name": {
"first": "Jackie",
"last": "Howe"
},
"company": "POLARAX",
"email": "jackiehowe@polarax.com",
"address": {
"street": "9059 Pine Street",
"city": "Zortman",
"state": "Montana"
}
},
{
"name": {
"first": "Elvia",
"last": "Franks"
},
"company": "VURBO",
"email": "elviafranks@vurbo.com",
"address": {
"street": "1801 Landis Court",
"city": "Cornucopia",
"state": "Ohio"
}
},
{
"name": {
"first": "Massey",
"last": "Copeland"
},
"company": "GORGANIC",
"email": "masseycopeland@gorganic.com",
"address": {
"street": "1189 Canarsie Road",
"city": "Chemung",
"state": "Virginia"
}
},
{
"name": {
"first": "Singleton",
"last": "Holt"
},
"company": "LOTRON",
"email": "singletonholt@lotron.com",
"address": {
"street": "7442 Chester Street",
"city": "Gorham",
"state": "Minnesota"
}
},
{
"name": {
"first": "Carly",
"last": "Merritt"
},
"company": "TERRAGEN",
"email": "carlymerritt@terragen.com",
"address": {
"street": "4934 Ovington Court",
"city": "Derwood",
"state": "North Dakota"
}
},
{
"name": {
"first": "Margie",
"last": "Mitchell"
},
"company": "QUONK",
"email": "margiemitchell@quonk.com",
"address": {
"street": "3660 School Lane",
"city": "Makena",
"state": "New Mexico"
}
},
{
"name": {
"first": "Lindsay",
"last": "Gilbert"
},
"company": "AQUAZURE",
"email": "lindsaygilbert@aquazure.com",
"address": {
"street": "2168 Stuyvesant Avenue",
"city": "Hamilton",
"state": "American Samoa"
}
}
]
<div class="ui-grid-cell-contents"><a href="mailto:{{ COL_FIELD }}">Send E-Mail</a></div>