Pre-populate field from merged two fields from other Models?

I can easily pre-populate a field with a value from another model’s field using a condition.

Is it possible to use multiple fields to do the same thing? Example: Record Name = {{User Alias}} & {{TODAY’s DATE}}

Jacob

https://community.skuid.com/t/set-default-field-values?topic-reply-list%5Bsettings%5D%…

Using JS to fill data field, now I need a Today() function.

You can use the getDate function for that.   And then use the JQuery datepicker “format” utility to parse the date in any way you need. (http://api.jqueryui.com/datepicker/)  

$.datepicker.formatDate(‘dd/mm/yy’, new Date())

Perfect, Thanks!