I have a model on my page with a row that is not yet saved to Salesforce, so it has a SKUID Temp ID pending a save to the database.
I’m trying to create a new row in a related model as follows (example javascript):
relatedModel.createRow({doAppend:true, additionalConditions:[<br> {field: 'ParentLookup__c', value: skuidTempIdFromMainObjectsModel}<br> ]}<br>);
The skuidTempIdFromMainObjectsModel is properly populated with the SKUID Temp ID of the parent object, but it would appear when I create a new row this way, the ParentLookup__c field on the newly created row is empty (it doesn’t pass the skuid temp ID over)
In the SKUID editor you are able to create a new row and pass skuid temp IDs over and once the models save everything works properly to associate the items together. How can this be accomplished when creating new rows via javascript?
Thanks!