cancel
Showing results for 
Search instead for 
Did you mean: 

Tooltip text for rowselectionButton (BSP-Htmlb).

Former Member
0 Kudos

Hi all,

In BSP for filterbutton there is an option for tooltip text but for me the issue is want tooltip text for row selection button(selection mode button),

--

With Thanks,

Accepted Solutions (1)

Accepted Solutions (1)

former_member184111
Active Contributor
0 Kudos

Hi Bala,

Use the below mentioned code in the layout:

DATA: find       type string value `class="urSTRowUnSelIcon"` ,
          replace  type string value `class="urSTRowUnSelIcon" title="This is row button tooltip"`.

<bsp:findAndReplace find    = "<%= find %>"
                             replace  = "<%= replace %>" >

                <htmlb:tableView id              = "tv_id"
                                 headerText          = "Some text"
                                 headerVisible      = "true"
                                 design              = "alternating"
                                 visibleRowCount     = "5"
                                 fillUpEmptyRows     = "true"
                                 onRowSelection      = "MyEventRowSelection"
                                 selectionMode       = "MULTILINEEDIT"
                                 width               = "880"
                                 filter              = "SERVER"
                                 emptyTableText      = "No items found for specified search criterion"
                                 iterator            = "<%= iterator %>"
                                 table               = "<%= itab %>" />
</bsp:findAndReplace>

Just replace the code of tableview with your tableview code.

I have tested the above code and it is working fine.Dont forget to add the BSP extension on top of your layout page .

Regards,

Anubhav

Answers (0)