Versed in Flash ActionScript, primarily in interactive website and game design/programming . Experienced in Flash/Flex based new media design, customized online solutions with innovative concepts, high impact websites through creative technologies. 7 years of software development and OOD experience C, C++ and 3D Graphics programming Versed in full-life cycle skills, including requirements analysis, modeling, object-oriented analysis ,OOP, deployment, maintenance, and refactoring using UML
Tuesday, May 1, 2012
treecolumn renderer function for Ext.tree.Panel
Ext.define('MyApp.view.XmlTreePanel', {
extend: 'Ext.tree.Panel',
alias: 'widget.xmltreepanel',
title: 'My Tree Panel',
store: 'MyXmlTreeStore',
id:'xmltreepanel',
initComponent: function() {
var me = this;
Ext.applyIf(me, {
viewConfig: {
},
columns: [
{
xtype: 'treecolumn',
renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {
return unescape(value);
},
text: 'MyTreeColumn'
}
]
});
me.callParent(arguments);
}
});
No comments:
Post a Comment