cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAC Analytics Designer Component Class

WilliamABatista
Participant
1,236

Hello Experts,

Does someone knows how to make use of these component classes? I need some functionalities of this class but don't know how to code and use it....

https://help.sap.com/doc/958d4c11261f42e992e8d01a4c0dde25/2021.20/en-US/index.html#TableQuickActions...

Thank you all in advance!

William

View Entire Topic
Susanne_Helbig
Product and Topic Expert
Product and Topic Expert

Dear william.andradebatista,

you can access these components via a table object.

QuickActionsVisibility can be accessed as follows:

Table_1.setQuickActionsVisibility({});

set your cursor within the curly brackets and hit CTRL+SPACE to see the value help, see the following example on how to disable quick access to drill and enable quick access to sort the table

Table_1.setQuickActionsVisibility({drill:false,sort:true});

For details regarding the number formatting, please have a look into the Developer Handbook Chapter 5.6.4

I hope this helps!

Best regards
Susanne

WilliamABatista
Participant
0 Likes

Hello Susanne,

thanks for your reply, in fact I made a wrong question, cause my objective at the end is HIDE an specific row in table widget.. I don't want to filter.. example: Let's suppose my table has 10 registers and I want to hide the row number 1.. do you know if is it possible?

Best,

William