Hi !
How simply changing an ui-icon in Actions column (ui-icon-trash for example) by an other ui-icon ?
Thanks a lot for your help,
Pierre-Yves
2 Answers
Currently, trash icon have this style.
.ui-icon-trash:before {
content: ‘\e68f’;
}
You can change ‘content’ of it with other by referring:
https://mkkeck.github.io/jquery-ui-iconfont/styles/jquery-ui.icon-font.css
https://mkkeck.github.io/jquery-ui-iconfont/#usage
e.g.
.ui-icon-trash:before {
content: ‘\e661’;
}
Your Answer