dominodeviant
6 Aug 2007, 10:33 PM
I am working on a app with a specific gui that I have to stick to and therefore I cant use the standard one with DominoUI.
If you look at tab3.jpg I have used UIOutline and UIview separatly:
var appTab3 = function(){
var showBtn, dialog;
return {
init : function() {
var outline = new Ext.nd.ux.UIOutline({
outlineName : 'oMetodsamlingPubliceradeMetoderWeb',
container : 'containerOutline'
});
var view = new Ext.nd.ux.UIView({
viewName : 'vMetoderRollWeb',
container : 'containerView',
showSingleCategory : 'sv'
});
outline = null;
view = null;
}// end init
};// end 'return'
}();
and this is then presented in:
<TR>
<TD>
<div id='containerOutline' style="width:160px; height:400px;"></div>
</TD>
<TD>
<div id='containerView' style="width:800px; height:400px;">Loading view, please wait...</div>
</TD>
</TR>
The tab3.jps is how I want it to look but I cant get the uioutline and uiview to work/communicate (i.e. the outline doesnt open views where the containerView is stated). Instead I get a "this.layout is null or not an object when clicking in the outlinemenu.
If you look at tab2.jpg I have used DominoUI:
var appTab2 = function(){
var showBtn, dialog;
return {
init : function() {
var outline = new Ext.nd.ux.DominoUI({
uiView : {
viewName : 'vMetoderRollWeb',
container : 'center',
showSingleCategory : 'sv'
},
uiOutline : {
outlineName : 'oMetodsamlingPubliceradeMetoderWeb'
//container : 'containerOutline'
}
});
}// end init
};// end 'return'
}();
But then the GUI from the application is overwritten and cant be seen or used, so this I would rather not use because I want to use ext.nd functionality and gui but isolated within the marked area (see divcontent.jpg), which is within a <Div>.
Is it possible to use DominoUI isolated as i want OR cant I use UIView and UI outline separately and make them work together as I presented?
Any ideas or help appreciated so I cant stay and use Ext.nd, which I really want. If its not possible I will have to abbondon my plans :(
Kind regards,
Darko
If you look at tab3.jpg I have used UIOutline and UIview separatly:
var appTab3 = function(){
var showBtn, dialog;
return {
init : function() {
var outline = new Ext.nd.ux.UIOutline({
outlineName : 'oMetodsamlingPubliceradeMetoderWeb',
container : 'containerOutline'
});
var view = new Ext.nd.ux.UIView({
viewName : 'vMetoderRollWeb',
container : 'containerView',
showSingleCategory : 'sv'
});
outline = null;
view = null;
}// end init
};// end 'return'
}();
and this is then presented in:
<TR>
<TD>
<div id='containerOutline' style="width:160px; height:400px;"></div>
</TD>
<TD>
<div id='containerView' style="width:800px; height:400px;">Loading view, please wait...</div>
</TD>
</TR>
The tab3.jps is how I want it to look but I cant get the uioutline and uiview to work/communicate (i.e. the outline doesnt open views where the containerView is stated). Instead I get a "this.layout is null or not an object when clicking in the outlinemenu.
If you look at tab2.jpg I have used DominoUI:
var appTab2 = function(){
var showBtn, dialog;
return {
init : function() {
var outline = new Ext.nd.ux.DominoUI({
uiView : {
viewName : 'vMetoderRollWeb',
container : 'center',
showSingleCategory : 'sv'
},
uiOutline : {
outlineName : 'oMetodsamlingPubliceradeMetoderWeb'
//container : 'containerOutline'
}
});
}// end init
};// end 'return'
}();
But then the GUI from the application is overwritten and cant be seen or used, so this I would rather not use because I want to use ext.nd functionality and gui but isolated within the marked area (see divcontent.jpg), which is within a <Div>.
Is it possible to use DominoUI isolated as i want OR cant I use UIView and UI outline separately and make them work together as I presented?
Any ideas or help appreciated so I cant stay and use Ext.nd, which I really want. If its not possible I will have to abbondon my plans :(
Kind regards,
Darko