really love Spket. Aweseome IDE, also the code completion is really great in combination with EXTJs. But sometimes it still won't trigger.
Can you make it possible, that this works?
Code: Select all
// somewhere else in the code
var SplineWindowTree = function() {
// local variables
var tree;
return {
// functions
getTreePanel : function()
{
return tree;
},
init : function() {
tree = new Ext.tree.Treepanel({
...
});
}
};
}();
// somewhere else in the code
var tree = SplineWindowTree.getTreePanel();
tree. // code completion doesnt work (EXTJs TreePanel is returned)