I have successfully added a row double click event listener to my grid:
listeners : { itemdblclick: function(dv, record, item, index, e) { alert('working'); } },
Now I need to get the exact value in the third column in the selected row, how can I do this?
EDIT
Ok, I found this:
listeners: { itemclick: function(dv, record, item, index, e) { alert(record.get('name')); } }
but it looks like the result of record.get('name') not text! it is an object, but I cannot deal with it as with text. does any body have any ideas?
EDIT
For example, if I Search(record.get('name')); name in the search function: Search(record.get('name')); it will not work. but if I go through it like this: Search('Mike'); it works !
Noon
source share