Skip to main content


This article describes the USoft 10 product only.

In USoft 11, the web UI API was revised and improved. For full details, go to:

Revised web UI API in USoft 11


This article is about the meta() function of the Cols object.

Cols.meta()

Gets the meta data container of the first column in a set of columns. If you already have a column container, this method is a shortcut for having to make a detour via $.udbMeta.

Returns a colsMeta object.

Syntax

cols.meta()

Example

Use as a shortcut:

var cs = $.udb("EMP").rows('current').cols("NR");
var csMeta = cs.meta();

Instead of:

var cs = $.udb("EMP").rows('current').cols("NR");
var csMeta = $.udbMeta(cs.ds()).cols("NR");

 

Be the first to reply!

Reply