- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2018 06:41 AM
Hi
Widget : Approval Info
Can i able to change "Earlier Items" button position and Color to Yellow.....???
and add Table lines to Options labels
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2018 08:49 AM
To move the button to right change your button below mentioned code.
<button type="button" name="earlier_item" style="float: right;" class="btn btn-warning btn-question" ng-click="c.earlier_item()">${Earlier Items}</button>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2018 08:34 AM
Thanks Ujwall,
1. in case if i want to make it center then should i have to clear un-commented lines
2.. in case if i want to make it to Right position under Reject button then should i have to change any things here
3..Like this Option values should be display like this Box level

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2018 08:49 AM
To move the button to right change your button below mentioned code.
<button type="button" name="earlier_item" style="float: right;" class="btn btn-warning btn-question" ng-click="c.earlier_item()">${Earlier Items}</button>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2018 09:25 AM
Great ...!!! Thanks a Lot,
Genius...Thanks a Lot Ujjawal it is working..!!
is it Possible to add Lines to labels under Options

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2018 09:45 AM
Replace below piece of code of the widget
<div ng-repeat="variable in data.variables" ng-if="variable_toggle">
<label>{{::variable.label}}</label>
<div>{{::variable.display_value}}</div>
</div>
with this code
<table >
<tr ng-repeat="variable in data.variables" ng-if="variable_toggle">
<td>{{::variable.label}}
<br>
{{::variable.display_value}}</td>
</tr>
</table>
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2018 10:03 AM
Thanks a Lot Ujjwal !!!