SMART datagrid v.1 > Classes > LinkCellRenderer
Among the fields which have been contained in url expression, it separates and specifies the field name of fields which should not be an empty value by comma. Among the fields which have been specified here, if one or more values are empty values, Event will not be fired when click the tooltip or cell.
Defaults to null.
var columns = [{
name: "Country",
fieldName: "Country",
width: "100",
renderer: {
type: "link",
url: "http://www.countryreports.org/country/${Country}.htm",
requiredFields: "Country",
showUrl: false
}
},
...
];
grid.getColumns(columns);