I need to call a function after the create view is fully loaded.
I've tried to use render function but it still being called before the page is loaded.
Fullscreen
1
2
3
4
5
6
render : function () {
this._super('render');
this._hiddenFields();
},
Does anyone know how to overcome this?