Hello,
I use the export data to excel in the jqxgrid.
I need to pass a link columns as an hyper link columns in the excel.
I tried afew types of datafields like, ‘hyperlink’ or ‘link’, but nothing did the work.
how do i do this?
var source =
{
localdata: data,
datatype: “array”,
datafields:
[
{ name: ‘firstname’, type: ‘string’ },
{ name: ‘lastname’, type: ‘string’ },
{ name: ‘productname’, type: ‘string’ },
{ name: ‘available’, type: ‘bool’ },
{ name: ‘date’, type: ‘date’ },
{ name: ‘quantity’, type: ‘number’ },
{ name: ‘price’, type: ‘number’ }
]
};
thanks
Shira