slickgrid の 1 つの列で画像を選択して削除しようとしていますが、それができませんでした。そのように単一の画像ボタンを行う方法を理解しています。:
var column = {id:delCol, field:'del', name:'Delete', width:250, formatter:buttonFormatter}
//Now define your buttonFormatter function
function buttonFormatter(row,cell,value,columnDef,dataContext){
var button = "<input class='del' type='button' id='"+ dataContext.id +"' />";
//the id is so that you can identify the row when the particular button is clicked
return button;
//Now the row will display your button
}
これを行う方法についてのアイデアはありますか?