How do I include bootstrap UI components in table

1
+1
-1

Currently the table widget only allow me to specify the filter for each data column in "Column Keys",

e.g. name | myfilter.

I need to be able to include a progressbar (ui.bootstrap.progressbar) but it's seems to be impossible to insert a directive within a filter.

Note that I even had to modify the following line in pbTable.json:
{{ $eval(column, row) | uiTranslate }}
to:
<span ng-bind-html=\"$eval(column, row) | uiTranslate\"></span>

... in order to get any html inserted from the filter to work at all.

Is there a better way to go about this whole thing?

1 answer

1
0
-1

Hi,

I'm afraid your only option is to modify an existing widget or creating your own custom widget.

Notifications