Hi any option to add icons to the action column?
instead of text add some nice looking icons?
thank you
PD: fixed by using this post Add image or icon in table action - #3 by minijohn
thanks !
Hi any option to add icons to the action column?
instead of text add some nice looking icons?
thank you
PD: fixed by using this post Add image or icon in table action - #3 by minijohn
thanks !
Easiest but with less flexibility: You can actually use emoji!
[WIN] + .
on Windows, Command + Control + Space
on MacOS
Or you can define custom CSS code as mentioned HERE, which provide a lot of possibilities
/*
// - rt-table-{{tableId}}
// - nth-child(x) is selecting the xth button
// - Last 2 instructions are to remove borders and are optional
*/
#rt-table-table1 .table-cell-action button:nth-child(3) {
background: url(https://www.svgrepo.com/show/429765/banana-blackbarry-blackberries.svg);
background-size: 25px auto;
background-repeat: no-repeat;
background-position: center;
padding: 0 15px;
box-shadow: 0 0 0 0 transparent;
-webkit-box-shadow: 0 0 0 0 transparent;
}
@rferland Awesome, thanks!
You can also use an icon object itself and bind certain actions to it. I have some icons that open hidden modals. It's much cleaner looking than the big modal buttons.