Is there a way to detect when a column cell in the Listview changes and triggers an event to do something else?
ie.
ListView has 3 columns: item,qty,desc
1,1,item_1
2,2,item_2
3,,3item_3
When any of the of the values in qty column changes, it trigger an event with the row subitem. When row 2 qty change to 0, the event with the row 2 as argument and the eventhandler would check the qty it needs to order more.
ie.
ListView has 3 columns: item,qty,desc
1,1,item_1
2,2,item_2
3,,3item_3
When any of the of the values in qty column changes, it trigger an event with the row subitem. When row 2 qty change to 0, the event with the row 2 as argument and the eventhandler would check the qty it needs to order more.