cancel
Showing results for 
Search instead for 
Did you mean: 

Gap between Yes and No buttons in Pop up window

Former Member
0 Kudos

Hi,

How to make more gap between Yes and No push buttons in POPUP window with using below method.

CALL METHOD comp_controller->window_manager->create_popup_2_confirm

Thanks,

Subbu

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Subrahmanyam,

Do you still have problem?

Former Member
0 Kudos

No Goel,

Thanks for your Reply.

Former Member
0 Kudos

Hi Subrahmanyam S,

Follow the following steps:

1. Enhance component 'GS_PTC'

2. Write below line on PopupToConfirm.htm before '<% ENDLOOP. %>' statement.

      <thtmlb:spacing/><thtmlb:spacing/>

You can write   <thtmlb:spacing/> as per your requirement to increase spaces.

For example:

<% LOOP AT buttons ASSIGNING <fs_buttons>. %>

       <thtmlb:button id      = "<%= <fs_buttons>-id %>"

                      text    = "<%= <fs_buttons>-text %>"

                      onClick = "<%= <fs_buttons>-on_click %>"

                      tooltip = "<%= <fs_buttons>-tooltip %>"

                      iconSrc = "<%= <fs_buttons>-icon_src %>" />

       <thtmlb:spacing/><thtmlb:spacing/><thtmlb:spacing/>    <!-- Line of code written-->

     <% ENDLOOP. %>

former_member267851
Participant
0 Kudos

Hi Sbrahmanyam,

1st  U can't change it bcoz it is standard .

2nd if u see this as a issue , create custom view  and design ur button in htmlb code.

Regards

Alok