Hi,
I have a html form that contains a layout.
This layout has 3 rows…header, content and footer.
I have use template views pointing to another html doc…each one…
this html documents have others views…but i cant see them in my app preview…
what can i do?
this is my code…
index.html
var _main = new dhx.ui(
{
type: “wide”,
id: “mainLayOut”,
width: “100%”,
height: “100%”,
rows:
[
{
view: “template”,
id: “header”,
src: “cabecera.html”
},
{
id: “content”,
cols:
[
//divides the second row into 2 columns
{
gravity: 10,
width: 70,
view: “template”,
src: “menu.html”,
id: “menu”
},
{
gravity: 10,
view: “template”,
src: “muro.html”,
id: “contenido”
},
{
gravity: 10,
width: 70,
view: “template”,
src: “publicidad.html”,
id: “publicidad”
}
]
},
{
view: “template”,
src: “pie.html”,
id: “footer”
}
]
});
and for example…lets take menu.html of the second layout row:
i dont want to use html… i want to use dhtmlx touch views instead…
this is my javascript in that menu.html
var _menu = dhx.ui(
{
view: “label”,
label: “test”,
id: “lblTest”
}
this label does not apear in my preview…i suppose i am doing something wrong…
Any ideas?
thanks in advance…
greetings!!
Javier