Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
When editing a table using Sense 3.0 widget, I don't see any components that can define the total line. I basically only need a switcher or check box that can allow user to decide to show the total lines or not like what we have in standard pivot table:
Is it doable and how to achieve it please?
Thanks.
Fei
That's what we are working on 😉
@Michael Tarallo Can you please help?
Thanks!
Hi Fei - let me see if I can get someone to assist,
Regards,
Mike T
Qlik
Thank you very much Mike.
If we can have more components in the widget in the future, that will make the widget more powerful.
Cheers.
Fei
That's what we are working on 😉
Thank you so much Stefan!
Do you have any idea when the new version with the new components will be released? Just very roughly...?
From a different thread, here is the widget code for a table with a totals row.
<table border="1">
<thead>
<tr>
<th ng-repeat="head in data.headers">
{{settings.customLabel.split(';')[$index]}}
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="row in data.rows">
<td ng-repeat="cell in row.cells">
{{cell.qText}}
</td>
</tr>
<tr><td>Total</td>
<td ng-repeat="total in data.totals">
{{total.qText}}
</td>
</tr></tbody>
</table>
... have a look here into the original article: Table with dynamic label | qliksite.io