{xtype: 'actioncolumn',width:30,sortable: false,
items: [
{iconCls : 'icon-delete' ,tooltip: 'Delete Plant',
handler: function(grid, rowIndex, colIndex , item , e , record) {
Ext.MessageBox.show(
{title: '삭제?',msg: '정말로 삭제하시겠습니까?',buttons: Ext.MessageBox.YESNO,
fn: function ( button ) {
if ( button == "yes") {
grid.getStore().removeAt(rowIndex);
};
console.log( arguments );
} ,
animateTarget: grid ,
icon: Ext.MessageBox.QUESTION
}
);
}
}
]
}
댓글 없음:
댓글 쓰기