How to use the table.empty.text function in table

To help you get started, we’ve selected a few table examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github silentbalanceyh / vertx-ui / src / economy / backup / TreeTable / op / Op.Init.ts View on Github external
const initTable = (reference: any) => {
    let table = readConfig(reference).table;
    table = Ux.treeTableColumns(table);
    const options = readOptions(reference);
    if (options.hasOwnProperty("table.empty.text")) table.emptyText = options['table.empty.text'];
    if (!table.hasOwnProperty("bordered")) table.bordered = true;
    return table;
};
const _initData = (reference) => {