/* Template Name: webadmin - Admin & Dashboard Template Author: Themesdesign Website: https://Themesdesign.com/ Contact: Themesdesign@gmail.com File: Ecommerce shops Js File */ // Basic Table new gridjs.Grid({ columns: [ { name: 'Brand', sort: { enabled: false }, formatter: (function (cell) { switch (cell) { case "M": return gridjs.html('
' + cell + '
'); case "B": return gridjs.html('
' + cell + '
'); case "K": return gridjs.html('
' + cell + '
'); case "P": return gridjs.html('
' + cell + '
'); default: return gridjs.html('
' + cell + '
'); } }) }, { name: 'Name', formatter: (function (cell) { return gridjs.html('
'+ cell[0] +'

'+ cell[1] +'

'); }) }, , "Email", "Date", "Product", "Current Balance", { name: "Action", sort: { enabled: false }, formatter: (function (cell) { return gridjs.html(''); }) } ], pagination: { limit: 7 }, sort: true, search: true, data: [ [ "M", ["Nedick's", "Wayne McClain"], "WayneMcclain@gmail.com", "07/10/2021", "86", "$12,456" ], [ "B", ["Brendle's", "David Marshall"], "Davidmarshall@gmail.com", "12/10/2021", "82", "$34,523"], [ "K", ["Tech Hifi", "Katia Stapleton"], "Katiastapleton@gmail.com", "14/11/2021", "75", "$63,265"], [ "P", ["Packer", "Mae Rankin"], "Maerankingmail.com", "14/11/2021", "62", "$42,652"], [ "L", ["Lafayette", "Andrew Bivens"], "Andrewbivens@gmail.com", "15/11/2021", "55", "$52,652" ], [ "B", ["Tech Hifi", "John McLeroy"], "JohnmcLeroy@gmail.com", "20/11/2021", "53", "$12,523"], [ "K", ["Packer", "Katia Stapleton"], "Katiastapleton@gmail.com", "23/11/2021", "66", "63,523"], [ "P", ["Packer", "Mae Rankin"], "Maerankingmail.com", "14/11/2021", "62", "$42,652"], [ "L", ["Lafayette", "Andrew Bivens"], "Andrewbivens@gmail.com", "15/11/2021", "55", "$52,652" ], [ "B", ["Tech Hifi", "John McLeroy"], "JohnmcLeroy@gmail.com", "20/11/2021", "53", "$12,523"], [ "K", ["Packer", "Katia Stapleton"], "Katiastapleton@gmail.com", "23/11/2021", "66", "63,523"], ] }).render(document.getElementById("table-ecommerce-shops"));