problem i am facing is when this table displays in the GridPanel Cell the below >div> tag is adding on top of the table (which is added using template)
the style "x-grid-cell-inner" in class has a padding , which i don't want.
<div class="x-grid-cell-inner x-unselectable" style="; text-align: left;" unselectable="on" id="ext-gen1455">
(If i override x-grid-cell-inner in my local .css file it will change all over , which i don't want , i want this only one place)
I figured it that by using the style i can remove the padding. But in the ext-all-debug.js
the style is expecting an id , which i am not able to figure it out, how to pass.
metaRowTpl: [
'<tr class="' + Ext.baseCSSPrefix + 'grid-row {addlSelector} {[this.embedRowCls()]}" {[this.embedRowAttr()]}>',
'<tpl for="columns">',
'<td class="{cls} ' + Ext.baseCSSPrefix + 'grid-cell ' + Ext.baseCSSPrefix + 'grid-cell-{columnId} {{id}-modified} {{id}-tdCls} {[this.firstOrLastCls(xindex, xcount)]}" {{id}-tdAttr}><div unselectable="on" class="' + Ext.baseCSSPrefix + 'grid-cell-inner ' + Ext.baseCSSPrefix + 'unselectable" style="{{id}-style}; text-align: {align};">{{id}}</div></td>',
'</tpl>',
'</tr>'
],
Can someone can guide me how to pass the id to "metaRowTpl:" .