• Matthew Oatts
    June 12, 2015 at 11:45 am #228

    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
    June 12, 2015 at 1:59 pm #232

    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:

    Capture2

     

    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
    August 5, 2015 at 9:04 pm #599

    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.

     

     

     

     

     

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.

Start typing and press Enter to search