Is it possible to automatically update the Webix datatable when radio buttons are selected?
Here is an example of a datatable:
var list = [{
id:1, user:"", mail:"", rad:''
}, {
id:2, user:"", mail:"", rad:''
}, {
id:3, user:"", mail:"", rad:''
}, {
id:4, user:"", mail:"", rad:''
}, {
id:5, user:"", mail:"", rad:''
}];
webix.ui({
view:"datatable",
data:list,
columns:[{
id:"ra1", header:"", template:"{common.radio()}", width:50
}, {
id:"user", sort:"string", header:"Name", adjust:true
}, {
id:"mail", editor:"text", header:"E-mail" , adjust:true
}]
});
https://jsfiddle.net/9covejnt/2/
I am looking for a way to achieve this functionality.