Matthew Oatts
On a table row – can I replace the “X” for delete (on right right hand side of the row). With something else…an icon or something?
SPARK Support
The delete button style is found in the BPMExt-Control-Table.css file. Since it uses Font Awesome icons, you can change it to whatever you want by overriding the CSS.
<style>
td.RowDel:before {
content: “\f072”; <———this is a font awesome unicode (plane in this example).
font-family: FontAwesome;
font-size: 17px;
font-weight: 400!important;
line-height: 20px;
color: #9D6E6E;
}
</style>
You get this result:

However, our SPARK developers really like the idea of adding a configuration option to specify what icon you want for delete, so we’ve created a feature request to be delivered in an upcoming release!
Rameshkumar
we have a following requirement, please let us know, how we can achieve that ?
1. When we display the data on the table, existing record from DB should be shown without delete button. But when you add a new row, delete button should be visible.
2. Can we achieve this by using OOTB delete button ?
3. If we cant achieve with OOTB, can we use removeRecord ? I have tried this option, but it did not work. Please let me know the solution.