Hi !
I’m starting with dhtmlxTouch and couldn’t find any example showing how to update a cell content with javascript
Ex : a multiview like:
var config={
container:“groupBox”,
rows:[
{
gravity:2,
view:“multiview”,
scroll:true,
cells:[
{
view: ‘scrollview’,
scroll: ‘y’,
content: {
template:“
bla bla
”,height: 400
},
id: “tabbar_1”
},
{ template:“
som text
”, id:“tabbar_2” }]
}
]
};
dhx.ready(function(){
dhx.ui(config);
//document.getElementById("divC2") returns an error
}
[…]