getInnerTpl is not present in the documentation; you can find it only in the examples (and the source code, of course), and seems much more like an internal feature.
Is there a documented way to get the same result?
That is, if I set
Code:
...
listConfig: {
getInnerTpl: function() {
return '<div>{columnA} ({columnB})</div>';
}
},
...
it works; I've tried to set tpl config option to something like
Code:
...
tpl: '<tpl for="."><div>{colunmA} ({columnB})<div></tpl>',
...
but in this case I cannot select items any longer (ie cannot click on list items).