.isEmbeddedColumn()

Previous Next

Finds out if the first column item is of an embedded data source.

Returns a boolean.

Syntax

.isEmbeddedColumn()

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');

 }

);