Hi
After referring Entryform.jsp in blog component in libs , i tried a code bit
<div id= 'new'>
</div>
<script type="text/javascript">
CQ.Util.build({
"xtype":"panel",
"border":false,
"layout":"form",
"defaults": {
"hideLabel":true
},
"items":[{
"xtype":"textfield",
"defaultValue":"Entry title",
"fieldLabel":"title",
"name":"title"
}
,{
"xtype":"richtext",
"name":"text",
"width":"100%",
"enableSourceEdit":true,
"fieldLabel":"richtext"
}
],
"renderTo":"new"
});
</script>
This is giving me dialog in my page like
the richtext box is getting rendered like above .......
How can i get properly like
Thanks
veena
Look out for the CSS the is used when a proper RTE is displayed in a dialog, include that CSS in your page as well, looks like a styling issue?