Hello,
I am building a multi-view app, and here is the code for the multi-view portion of the config:
{
gravity:2,
view:"multiview",
id:"multiview1",
cells:[
{ template:"<div>Test Content 1</div>", id:"tabbar_1" },
{ template: "<div>Test Content 2</div>", id:"tabbar_2" },
{ template:"<div>Test Content 3</div>", id:"tabbar_3" }
]
},
I want to be able to dynamically add HTML elements to the cells. Here is an example of what I would like to be able to do:
$$(“tabbar_1”).addHTML(myhtml);
Anyone know how to do this?