Is there any way to change delete icon in inbuilt jquery list? I tried searching in documentation but not able to find.

I have list and sublist in jtable and want to change subgrid delete icon to another icon.

有帮助吗?

解决方案

The delete icon in jTable (jQuery, not java) is set with CSS. See for example the jtable_basic.css file which is containing the following lines:

div.jtable-main-container table.jtable tbody > tr > td .jtable-delete-command-button {
  background: url('delete.png') no-repeat;
  width: 16px;
  height: 16px;
}

So change the background in the css file you use for your jTable.

其他提示

I don't know if this helps, but I sometime use my own delete column that calls a JavaScript function delete. I can also use any image src I want, or I could use a button as well.

delete:{
   width: '.5%',
   display: function(data){
        return '<img src="..." onClick="delete(' + data.record.id + ')/>';
   }
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top