Available in the Full Version
Data Grid - JsRender Integration
This sample uses CTP (Community Technical Preview) features. The API and behavior may change when these features are released with full support.
Employee ID | Name | Image | Title | Languages | Phone | Country | Birth Date |
---|
1 | Nancy Davolio | ![]() | Sales Representative | English Russian | (206) 555-9857 | ![]() | 12/8/1948 |
2 | Andrew Fuller | ![]() | Vice President, Sales | English German | (206) 555-9482 | ![]() | 2/19/1952 |
3 | Janet Leverling | ![]() | Sales Representative | English | (206) 555-3412 | ![]() | 8/30/1963 |
4 | Margaret Peacock | ![]() | Sales Representative | English Spanish | (206) 555-8122 | ![]() | 9/19/1937 |
5 | Steven Buchanan | ![]() | Sales Manager | English Italian | (71) 555-4848 | ![]() | 3/4/1955 |
6 | Michael Suyama | ![]() | Sales Representative | English Portuguese | (71) 555-7773 | ![]() | 7/2/1963 |
7 | Robert King | ![]() | Sales Representative | English French Spanish | (71) 555-5598 | ![]() | 5/29/1960 |
8 | Laura Callahan | ![]() | Inside Sales Coordinator | English Mandarin | (206) 555-1189 | ![]() | 1/9/1958 |
9 | Anne Dodsworth | ![]() | Sales Representative | English Japanese | (71) 555-4444 | ![]() | 1/27/1966 |
This sample is designed for a larger screen size.
On mobile, try rotating your screen, view full size, or email to another device.
jsRender is a third party templating engine which can be enabled in the igGrid.
This sample demonstrates the use of the jsRender in the grid's column template. "Name" and "Birth Date" columns use helper functions to process their content while "Languages" column demonstrates the {{for ...}} iterator tag.
Code View
Copy to Clipboard
<!DOCTYPE html> <html> <head> <title></title> <!-- Ignite UI for jQuery Required Combined CSS Files --> <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" /> <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/structure/infragistics.css" rel="stylesheet" /> <script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script> <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> <script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script> <!-- Ignite UI for jQuery Required Combined JavaScript Files --> <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.core.js"></script> <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.lob.js"></script> <script src="/js/external/jsrender.js" type="text/javascript"></script> </head> <body> <table id="grid12"></table> <!--Sample JSON Data--> <script src="/data-files/nw-employees.js"></script> <script> $(function () { var titles = ["Sales Representative", "Sales Manager", "Inside Sales Coordinator", "Vice President, Sales"]; var countries = ["UK", "USA"]; $.views.helpers( { toDate: function (val) { return new Date(val); } }); $.views.helpers( { toFullName: function (val) { var name = val.split(',').reverse().join(" "); return name; } }); $("#grid12").igGrid({ width: "100%", height: "600px", autoGenerateColumns: false, autoCommit:true, columns: [ { headerText: "Employee ID", key: "ID", dataType: "number" }, { headerText: "Name", key: "Name", dataType: "string", template: "{{>#view.hlp('toFullName')(Name)}}" }, { headerText: "Image", key: "ImageUrl", dataType: "object", template: "<img width='100' height='90' src={{>ImageUrl}}></img>" }, { headerText: "Title", key: "Title", dataType: "string" }, { headerText: "Languages", key: "Languages", dataType: "object", template: "{{for Languages}}<div>{{:name}}</div>{{/for}}" }, { headerText: "Phone", key: "Phone", dataType: "string" }, { headerText: "Country", key: "Country", dataType: "string", template: "<img width='26' height='15' src='/images/samples/nw/countries/{{>Country}}.gif'></img> <span style='display: table-cell;vertical-align: middle;'>{{>Country}}</span>" }, { headerText: "Birth Date", key: "BirthDate", dataType: "date", template: "<span style='color:{{if #view.hlp('toDate')(BirthDate) > #view.hlp('toDate')('1980-01-01T00:00:00.000')}}#4573D6{{else}}#F75F4F{{/if}};'>{{>BirthDate}}</span>" } ], dataSource: northwindEmployees, primaryKey: "ID", templatingEngine: "jsrender", features: [ { name: 'Responsive', enableVerticalRendering: false, columnSettings: [ { columnKey: 'ID', classes: 'ui-hidden-phone' }, { columnKey: 'Phone', classes: 'ui-hidden-phone' }, { columnKey: 'Name', classes: 'ui-hidden-phone' } ] } ] }); }); </script> </body> </html>
var northwindEmployees = [ { "ID": 1, "Name": "Davolio, Nancy", "Title": "Sales Representative", "ImageUrl": "../../images/samples/nw/employees/1.png", "Phone": "(206) 555-9857", "PhoneUrl": "tel:(206) 555-9857", "BirthDate":"1948-12-08T00:00:00", "HireDate":"1992-05-01T00:00:00", "Country": "USA", "Languages": [{ name: "English" }, { name: "Russian" }] }, { "ID": 2, "Name": "Fuller, Andrew", "Title": "Vice President, Sales", "ImageUrl": "../../images/samples/nw/employees/2.png", "Phone": "(206) 555-9482", "PhoneUrl": "tel:(206) 555-9482", "BirthDate":"1952-02-19T00:00:00", "HireDate":"1992-08-14T00:00:00", "Country": "USA", "Languages": [{ name: "English" }, { name: "German" }] }, { "ID": 3, "Name": "Leverling, Janet", "Title": "Sales Representative", "ImageUrl": "../../images/samples/nw/employees/3.png", "Phone": "(206) 555-3412", "PhoneUrl": "tel:(206) 555-3412", "BirthDate":"1963-08-30T00:00:00Z", "HireDate":"1992-04-01T00:00:00Z", "Country": "USA", "Languages": [{ name: "English" }] }, { "ID": 4, "Name": "Peacock, Margaret", "Title": "Sales Representative", "ImageUrl": "../../images/samples/nw/employees/4.png", "Phone": "(206) 555-8122", "PhoneUrl": "tel:(206) 555-8122", "BirthDate":"1937-09-19T00:00:00Z","HireDate":"1993-05-03T00:00:00Z", "Country": "USA", "Languages": [{ name: "English" }, { name: "Spanish" }] }, { "ID": 5, "Name": "Buchanan, Steven", "Title": "Sales Manager", "ImageUrl": "../../images/samples/nw/employees/5.png", "Phone": "(71) 555-4848", "PhoneUrl": "tel:(71) 555-4848", "BirthDate":"1955-03-04T00:00:00Z","HireDate":"1993-10-17T00:00:00Z", "Country": "UK", "Languages": [{ name: "English" }, { name: "Italian" }] }, { "ID": 6, "Name": "Suyama, Michael", "Title": "Sales Representative", "ImageUrl": "../../images/samples/nw/employees/6.png", "Phone": "(71) 555-7773", "PhoneUrl": "tel:(71) 555-7773","BirthDate":"1963-07-02T00:00:00Z","HireDate":"1993-10-17T00:00:00Z", "Country": "UK", "Languages": [{ name: "English" }, { name: "Portuguese" }] }, { "ID": 7, "Name": "King, Robert", "Title": "Sales Representative", "ImageUrl": "../../images/samples/nw/employees/7.png", "Phone": "(71) 555-5598", "PhoneUrl": "tel:(71) 555-5598", "BirthDate":"1960-05-29T00:00:00Z","HireDate":"1994-01-02T00:00:00Z", "Country": "UK", "Languages": [{ name: "English" }, { name: "French" }, { name: "Spanish" }] }, { "ID": 8, "Name": "Callahan, Laura", "Title": "Inside Sales Coordinator", "ImageUrl": "../../images/samples/nw/employees/8.png", "Phone": "(206) 555-1189", "PhoneUrl": "tel:(206) 555-1189","BirthDate":"1958-01-09T00:00:00Z","HireDate":"1994-03-05T00:00:00Z", "Country": "USA", "Languages": [ { name: "English" }, { name: "Mandarin" }] }, { "ID": 9, "Name": "Dodsworth, Anne", "Title": "Sales Representative", "ImageUrl": "../../images/samples/nw/employees/9.png", "Phone": "(71) 555-4444", "PhoneUrl": "tel:(71) 555-4444", "BirthDate":"1966-01-27T00:00:00Z","HireDate":"1994-11-15T00:00:00Z", "Country": "UK", "Languages": [{ name: "English" }, { name: "Japanese" }] } ]