function FluigUtils(){} FluigUtils.setCalendar=function(fieldId){ return FLUIGC.calendar(fieldId, { pickDate: true, pickTime: false }); } FluigUtils.getLoading=function(message){ var loading = FLUIGC.loading(window, { textMessage : message }); loading.show(); return loading; } FluigUtils.sendToast=function(message,type){ type = type ? type : 'info'; FLUIGC.toast({ message : message, type : type }); } FluigUtils.createChart=function(idDiv){ return FLUIGC.chart(idDiv, { width: '400', height: '200', }); } FluigUtils.createAlert=function(titulo,menssagem,callback){ FLUIGC.message.alert({ message: menssagem, title: titulo },callback); } FluigUtils.confirm = function(params){ return new Promise(function(resolve,reject){ FLUIGC.message.confirm(params, function(result, el, ev) { resolve(result); }); }) }