Rows.keys()
note
This article is about the keys() function of the Rows object.
Rows.keys()
Gets the key-value mapping of the record.
Returns a key-value string mapping.
Syntax
*rows*.keys()
Example
var ks = $.udb('EMP').rows('current').keys();
for (var k in ks) alert(k+='='+ks[k]);