Hi Team!
In mobile fields by default in the section list or view page mode is only showing the fields completed or not null. There is a way to change that? Show all the fields even if are null?
For example here in activities is not showing call notes, only when you are in edit mode.
Like
Hello Federico,
Hope you're doing well.
This is default mobile application behavior. Empty fields always remain invisible in case they are not filled in. This logic can be changed with the help of development only. It would be necessary to override the Terrasoft.controller.BasePreviewPage of the method doChangeField in all pages like this:
doChangeField: function(field, newValue, executeRulesCallback) { this.callParent(arguments); field.show(); }
Best regards,
Roman
Hello Federico,
Hope you're doing well.
This is default mobile application behavior. Empty fields always remain invisible in case they are not filled in. This logic can be changed with the help of development only. It would be necessary to override the Terrasoft.controller.BasePreviewPage of the method doChangeField in all pages like this:
doChangeField: function(field, newValue, executeRulesCallback) { this.callParent(arguments); field.show(); }
Best regards,
Roman
Roman Rak, Thanks, that can be apply only for a specific object?
I just create a new controller for the specific schema and works. Thanks