12 lines
271 B
JavaScript
12 lines
271 B
JavaScript
window.renderCell = function(result, {col, row})
|
|
{
|
|
if(col.name === 'url')
|
|
{
|
|
result[0] = {html:'<a href="' + row.data.url + '" target="_blank">' + row.data.url + '</a>', style:{flexDirection:"column"}};
|
|
|
|
return result;
|
|
}
|
|
|
|
return result;
|
|
};
|