Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
NZFei
Partner - Specialist
Partner - Specialist

Sense 3.0 - how to add total line to widget table

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

1 Solution

Accepted Solutions
Stefan_Walther
Employee
Employee

That's what we are working on 😉

View solution in original post

7 Replies
NZFei
Partner - Specialist
Partner - Specialist
Author

@Michael Tarallo Can you please help?

Thanks!

Michael_Tarallo
Employee
Employee

Hi Fei - let me see if I can get someone to assist,

Regards,

Mike T

Qlik

Regards,
Mike Tarallo
Qlik
NZFei
Partner - Specialist
Partner - Specialist
Author

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

Stefan_Walther
Employee
Employee

That's what we are working on 😉

NZFei
Partner - Specialist
Partner - Specialist
Author

Thank you so much Stefan!

Do you have any idea when the new version with the new components will be released? Just very roughly...?

pnowicki
Creator
Creator

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>

Stefan_Walther
Employee
Employee

... have a look here into the original article: Table with dynamic label | qliksite.io