Is there a way to listen for a change of a value in propertygrid?
In this case I want the grid report to the right to be refreshed when there is a change to the "From date".
{
title: '', iconCls: 'stair-small'
, showGroup: true
, columns: [[
{ field: 'name', title: 'Name', width: 130, sortable: true }
, { field: 'value', title: 'Value', width: 130, resizable: true, align: 'left' }
]]
, data: {
"rows": [
{ name: "From date", value: nextdate, editor: "datebox" }
, { name: "User", value: '', editor: "" }
, { name: "FX-board members", group: 'Send changes via mail to', value: 'On', editor: { type: 'checkbox', options: { on: 'On', off: 'Off' } } }
, { name: "System-owners", group: 'Send changes via mail to', value: 'On', editor: { type: 'checkbox', options: { on: 'On', off: 'Off' } } }
, { name: "SC-controllers", group: 'Send changes via mail to', value: 'On', editor: { type: 'checkbox', options: { on: 'On', off: 'Off' } } }
]
}
}
Many thanks for advice!