xOnXCell_Edit_OnChanged method

dynamic xOnXCell_Edit_OnChanged(
  1. XFDataItem itemInEdit,
  2. XCol xCol,
  3. dynamic newValue
)

Evento chiamato quando il valore cambia all'interno dell EDITOR della CELLA

Implementation

xOnXCell_Edit_OnChanged(XFDataItem itemInEdit, XCol xCol, dynamic newValue) async {
  itemSelectedInEdit = itemInEdit;
  if (liEditedItems.any((element) => element.id == itemInEdit.id).not()) {
    liEditedItems.add(itemInEdit as K);
  }
  setState(() {
    changed_Data = true;
    widget.edited!.value = true;
  });
  xOnXCell_Edit_SubmitValue_ToItem(itemInEdit, xCol, newValue, true);
}