cancel
Showing results for 
Search instead for 
Did you mean: 

hiding items

Former Member
0 Kudos

Dear Gurus,

Is it possible to hide web items such that only when something like a label or text is clicked then only will this web item be shown? Else its hidden?

Many Thanks,

Suzie

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

Alternative solution to what Bhanu mentioned is,

You can have clickable links in the page as

Show table1

Show table2

Show table3

.

.

and

Web Items

table1

Table 2

Table 3

By default you hide the Table2 and Table3 with Div tags

and when user clicks on "Show Table2" call javascript function and unhide the "Table 2".

Hope it helps

Regards

MB

former_member188975
Active Contributor
0 Kudos

Hi Suzie,

You can use some code like this:

<A href="<SAP_BW_URL ITEM='TABLE' MULTI='X' HIDDEN='X' CMD_1='ITEM=CHART*&MULTI=X&HIDDEN=''>">Show Chart</A><HREF>

This will hide all items named as TABLE1, TABLE2 (or TABLE) and show all items named as CHART1, CHART2 (or CHART).

Hope this helps...