How to call function after render create.js

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.

 render : function () { 
	 
	this._super('render');
	this._hiddenFields();
				
},

 

Does anyone know how to overcome this?