It's working now. Here is the solution:
getDisplayValue: function() {
if(this.displayTplData && this.displayTplData.length){
if(this.displayTplData[0].text)
return...
Type: Posts; User: extLearning
It's working now. Here is the solution:
getDisplayValue: function() {
if(this.displayTplData && this.displayTplData.length){
if(this.displayTplData[0].text)
return...
My bad! The template of the dropdown menu still works.
Now, only the case of selecting a new item need's to be fixed, in order not to show nothing because of
else return '';
Almost there!
Hi,
I found a way to get to the display value:
getDisplayValue: function() {
if(this.displayTplData && this.displayTplData.length){
return this.displayTplData[0].name.name;
...
Hi Gary,
currently my renderer looks like this:
renderer: function (value) {
if (Ext.isDefined(value)) {
return value.name;
}
...
Hi,
I'm using a grid with rowediting plugin and a combobox managing 'company' objects. The column itself displays the company name correctly, because a renderer is available. The combobox itself...
Hi,
I'm having the same problem here.
->Column display is ok, because of renderer.
->displayTpl of combobox is set and working
Adapting my renderer didn't work. Still shows [Object object]....