|
@@ -31,6 +31,7 @@ class Table extends Component {
|
|
|
|
|
|
@:privateAccess editor.tables.push(this);
|
|
|
root.addClass("cdb-sheet");
|
|
|
+ root.addClass("n_" + sheet.name);
|
|
|
if( editor.view != null ) {
|
|
|
var cname = parent == null ? null : sheet.parent.sheet.columns[sheet.parent.column].name;
|
|
|
if( parent == null )
|
|
@@ -140,6 +141,7 @@ class Table extends Component {
|
|
|
var col = J("<th>");
|
|
|
col.text(c.name);
|
|
|
col.addClass( "t_"+c.type.getName().substr(1).toLowerCase() );
|
|
|
+ col.addClass( "n_" + c.name );
|
|
|
if( c.documentation != null )
|
|
|
col.attr("title", c.documentation);
|
|
|
if( sheet.props.displayColumn == c.name )
|