SpreadJS Documentation
GC.Spread.Sheets.Tables Namespace / TableManager type / findByName Method
The table name.
In This Topic
    findByName Method
    In This Topic
    Gets the table with a specified name.
    Syntax
    var instance = new GC.Spread.Sheets.Tables.TableManager(sheet);
    var value; // Type: Table
    value = instance.findByName(name);
    function findByName( 
       name : string
    ) : Table;

    Parameters

    name
    The table name.

    Return Value

    The table instance if the cell belongs to a table; otherwise, null.
    Example
    This example finds the table by name.
    var activeSheet = spread.getActiveSheet();
    
    activeSheet.tables.add("Table1", 0, 0, 3, 3, GC.Spread.Sheets.Tables.TableThemes.dark1);
    activeSheet.getCell(0,0).text("Name");
    activeSheet.getCell(0,1).text("Value");
    activeSheet.getCell(0,2).text("T/F");
    activeSheet.getCell(1,0).text("AW");
    activeSheet.getCell(1,1).text("5");
    activeSheet.getCell(1,2).text("T");
    
    $("#button1").click(function () {
    var table  = activeSheet.tables.findByName("Table1");
    alert(table);
    activeSheet.tables.move(table, 3, 3);
        });
    See Also