Is any method to support Grid.js get cardview effect?

Hi this is a question about any method can implement a cardview with gridjs,
I know the “html” config in cell, but it seems not correct…
I need your help! thanks sir

I create a jsfiddle that try on it. I tried many method, still fail

new gridjs.Grid({
    columns: ["Name", "Email", "Phone Number"],
    data: [
        ["John", "[email protected]", "(353) 01 222 3333"],
        ["Mark", "[email protected]", "(01) 22 888 4444"],
        ["Eoin", "[email protected]", "0097 22 654 00033"],
        ["Sarah", "[email protected]", "+322 876 1233"],
        ["Afshin", "[email protected]", "(353) 22 87 8356"]
    ],
    search: true
}).render(document.getElementById("grid"));