.isEmbeddedColumn() |
Finds out if the first column item is of an embedded data source. Returns a boolean. Syntax
This function returns true if the first column item is of an embedded data source, false otherwise.
Example $.udbMeta('EMP').cols().each( function(index, c){ if (c.isEmbeddedColumn()) alert('Column '+c.name()+' is an embedded column'); } ); |