-
Notifications
You must be signed in to change notification settings - Fork 0
Entity Properties
Mihir Maruti Kadam edited this page Mar 27, 2017
·
3 revisions
Get current entity name.
//Type : String
var enitityLogicalName = MK.FSGEntity.logicalName;
Returns a string representing the GUID id value for the record.
//Type : String
var id = MK.FSGEntity.id;
Returns a string representing the GUID id value for the record.
//Type : Boolean
var isDirty = MK.FSGEntity.isDirty;
Provides methods to access the data for a record displayed on the form.
//Type : Array
var allAttributes = MK.FSGEntity.allAttributes;
Returns a string representing the XML that will be sent to the server when the record is saved.
//Type : String
var xml = MK.FSGEntity.dataXml;
Gets a string for the value of the primary attribute of the entity.
//Type : String
var primaryValue = MK.FSGEntity.primaryAttributevalue;