so my question is that how can i make a call to the
function declared in the readyuser.js which i wish to
declare it at the same html file of webix.ready but as a separate function,
like the following code ,
function make_call_to_LoadDO(){
webix. ? app.LoadDO();
};
i need this function to be called by another app
and in turn it will call the LoadDO() declared in my readyuser.js .
but after i have done , what happened is that in my html file where i called
the following webix.ready() , it just does not pick up my
my datatable id : picklist declared in readyuser.js ?
(i am not very good in javascript , sorry and excuse me …)
webix.ready(function(){
var appui = {
type:"space",
rows:[
{ view:"readyuser", id:"user1", urls:{
data: "debug->dummy",
users: "debug->dummy"
}}
]
};
webix.attachEvent("LoadDO", function(){
webix.message("start LoadDO data...");
$$("picklist").clearAll();
//--->picklist of the datatable call will not work , why?
}) ;
webix.ui({ rows:[ appui ]});
});