I am using w2ui grid in-line edit with list and many other stuff.
How can I listen to the onselect event of an element ?
$('#grid').w2grid({
name: 'grid',
columns: [
{
field: 'fieldname',caption: 'caption',sortable: true,
editable: {
type: 'list',
items: people,
showAll: true
}
}
],....