SMART datagrid v.1 > Classes > GridBase
Return the first Column object which has the same tag as parameter tag.
The column tag can be duplicated, and you can get all columns which have the same value as tag through columnsByTag.
var column = grid.columnByTag('ludi');
if (column) {
column.toggle('visible');
}