Gets the key-value mapping of the record.
Returns a key-value string mapping.
Syntax
.keys()
Example
var ks = $.udb('EMP').rows('current').keys();
for (var k in ks) alert(k+='='+ks[k]);