Each row of table having calendar,when user select date from calender then I retriving data from row

I have a webix data table in which each row having calendar.When user select the date from calendar then
(1). I want to retrieve all data from that row.
(2). I want to retrieve default date of that calendar.

Here is my snippet.

Please help me

http://webix.com/snippet/a7d73b73

Thanks In advance

Again, as was explained in the previous topic, we recommend to use related datatable events:

on:{
    onAfterEditStop:function(values, editor){
      console.log(this.getItem(editor.row))
    }
  },

I got that but I want to retrieve old date and the selected date.How can I retrieve old date and selected date from calendar.

here is my snippet

http://webix.com/snippet/bb6e519c

Please help me

I want to retrieve old date and the selected date

As you can see from the snippet and the API, onAfterEditStop stores the object with both values.

onAfterEditStop:function(values, editor){
      console.log(values)  
}

The function below is called when I select string from combo.I want the below function to be called only when user select date from calendar,But now below function called even when user select string from combo.

onAfterEditStop:function(values, editor){
console.log(this.getItem(editor.row))
//Here I am sending http get request
}

Here is my snippet

http://webix.com/snippet/ceb75dc4

Please help me
Thanks

Thank you.It is working fine now.

Please check the editor object of the event handler. It contains the id of the column where editing was performed. You can check this id and do anything you need depending on it:

onAfterEditStop:function(values, editor){
      if (editor.column == "colId") {/* ... */}  
}