- 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 09:55 AM
also add css as below
table, th, td {
border: 1px solid black;
padding-top: 5px;
padding-left: 5px;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2018 10:02 AM
It is working fine..
Added piece of CSS code:
table, th, td {
border: 1px solid black;
padding-top: 5px;
padding-left: 5px;
}
HTML code:
Replaced 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>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2018 08:45 AM
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:54 AM
I think you should open a separate thread for this. Because if a new person comes with same requirement and search for adding the table structure in options (for approval record widget) then this post will not be coming in search results. So request you to please open threads accordingly. So that community becomes helpful for all of us.
Hope you understand how should we use of community.