-
10 Nov 2009 9:39 PM #1
Error
Error
I am not able to show the xml content in the fm.textfiled. How to solve this problem
-
10 Nov 2009 9:48 PM #2
Xml content not render properly insde fm.TextField. why ?
Xml content not render properly insde fm.TextField. why ?
I am not able to show the xml content in the fm.textfiled. How to solve this problem?
cmGridlet = new Ext.grid.ColumnModel([
{
id:'SectionData',
header: "Sequence",
dataIndex: 'sequence',
width: 50,
editor: new fm.TextField({
disabled:false,
allowBlank: true
})
}
]}
I need to display some xml content like <sequence><id>1</id></sequence> inside this TextField. But when i put inside the field it shows 1. But when i try to edit (click on textfield)it shows the proper xml inside. It means, complete xml is coming properly but not rendering. It shows only text filed not the whole xml.
How to solve this problem?
-
10 Nov 2009 11:39 PM #3Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 41
Code:renderer: Ext.util.Format.htmlEncode


Reply With Quote