0
有沒有辦法強制更新Webix數據表中每個單選按鈕的更改?如何強制更新Webix數據表中的單選按鈕
我有一個像
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/
一個數據表,但我沒有線索如何做到這一點。