是否可以将HTML代码与Ext JS代码分开?例如,我正在网格面板js文件中编写一些html代码。在这里,我需要将html代码移至其他文件并将其引用到网格面板。就像我们为CSS做的一样。我们将css文件分开保存,并引用class(css)来查看文件。
Ext.define('SomeGrid', {
columns:[{},{},{}],
plugins: [
{
ptype: 'rowexpander',
rowBodyTpl: [
'<table class="customers">',
' <tr>',
' <th>Name</th>'
' </tr>',
' <tr>',
' <td>{name}</td>',
' </tr>'
]
}
],
})