Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
brunopaulo
Partner - Creator II
Partner - Creator II

Widget for specify sheet

Hi community,

I´m trying create a widget where i have 1 button to go to a specify widget.

I have this html code <div class="lui-buttongroup">

                                        <lui-button ng-click="navigation.gotoSheet(c99eb86b-002b-4ddb-812e-ab5828bcb767)">sheet 3</lui-button>

                                   </div>

What am i doing wrong?

Thanks in advance

Best Regards

Bruno Paulo

3 Replies
Ricardo_Gerhard
Employee
Employee

What´s the error message?

Have you check if this Qlik Sense app is available for all users?

Ricardo Gerhard
OEM Solution Architect
LATAM
brunopaulo
Partner - Creator II
Partner - Creator II
Author

Im using lui code and he has 1 similar to this for extensions. There is no error, just dont work. (the sheet id is mine).

<div class="lui-buttongroup">

                                        <lui-button ng-click="navigation.gotoSheet(SheetID)">sheet 3</lui-button>

                                   </div>

ayandey18
Partner - Contributor II
Partner - Contributor II

Hi Bruno,

Please check the below code

<div class="lui-buttongroup">

    <lui-button ng-click="navigation.gotoSheet('SheetID')">sheet 3</lui-button>

</div>

Give your sheet id within single cote like ng-click="navigation.gotoSheet('c99eb86b-002b-4ddb-812e-ab5828bcb767')"