SMART datagrid v.1 > Classes > LinkCellRenderer
在被包含在url表达式(Expression)的字段中,通过逗号而区分和指定不能为空值的字段的字段名称。 如果指定在这里的字段中的一个以上的值为空值,就会在点击工具提示或单元格时,将不会触发事件。
默认值为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);