angularjs - Unable to select the grid item using SmartTable in Angular JS -


I implemented the grid using angular JS SmartTable According to smart tablet docs, In order to select grid items, we need to add st-select-row = "row" . I also added a pair but I am unable to select the grid.

The implemented app can be viewed in the plunk (url below) Anyone want me to use the Selectable < / Strong> can help? Click

P>

Your plunker actually works

When a line is selected by smart-table, then property Adds the chosen = true related model and a class name to st-selected tr element

Just add a CSS rule and you will be able to see it

  .st-selected {border-left: 4px solid black; }  

Comments