please check my source.
$(document).ready(function() {
var layoutInfo = {
type: "line",
rows: [
{
id: "topMenu",
width: "100%",
height: "50px"
},
{
cols: [
{
id: "folder",
header: "Folder Tree",
// I want use html font tag
ex) header: "<font size='2em' color='green'>Folder Tree</font>",
width: "250px",
collapsable: true,
resizable: true
},
{
id: "objectGrid",
resizable: true,
rows: [
{
id: "objectMenu"
},
{
id: "objectList"
},
{
id: "objectPaging"
}
]
},
{
id: "objectInfo",
header: "Info",
width: "300px",
collapsable: true,
resizable: true,
rows: [
{
id: "objectData",
header: "Data",
resizable: true
},
{
id: "objectFile",
header: "File",
resizable: true
}
]
}
]
}
]
};
}