cancel
Showing results for 
Search instead for 
Did you mean: 

RowLayout

Former Member
0 Kudos

Hi experts,

I have a group element in a view of my web dynpro. The layout of my group is RowLayout. How can I do for to insert a space between the components elements of the rows?

Tks in advance...

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi

Change Layout to Grid layout and set colspan .

Former Member
0 Kudos

Tks all,

I solved with the change of Layout in effect!

Bye!

Former Member
0 Kudos

Hi

Put HorizontalGutter Ui element and make invisible.

Former Member
0 Kudos

if u r using HorizontalGutter Ui element and wish to make it invisible , u can bind it to a attribute of type wdui_visibility

set the attribute value to '01'


DATA lo_nd_cn_visible TYPE REF TO if_wd_context_node.
    DATA lo_el_cn_visible TYPE REF TO if_wd_context_element.
    DATA ls_cn_visible TYPE wd_this->element_cn_visible.
    DATA lv_ca_visible LIKE ls_cn_visible-ca_visible.
*   navigate from <CONTEXT> to <CN_VISIBLE> via lead selection
    lo_nd_cn_visible = wd_context->get_child_node( name = wd_this->wdctx_cn_visible ).

*   get element via lead selection
    lo_el_cn_visible = lo_nd_cn_visible->get_element(  ).

*   get single attribute
    lo_el_cn_visible->set_attribute(
      EXPORTING
        name =  `CA_VISIBLE`
      IMPORTING
        value = '01' ).

attribute ca_visible created under the node cn_visible

rgds,

amit

Former Member
0 Kudos

Hi,

HorizontalGutter Ui element insert a horizontal element, but I need of vertical element (as a separator between two buttons for exemple...)...

With the textview element: If I make this element invisible, I don't have more the separator effect...

Former Member
0 Kudos

Hi,

Can you be more clear.

Is it mandatory to use the Row Layout

Regards,

Lekha.

Former Member
0 Kudos

hi ,

try for 2-3 text view UIs with layout as Row Head and make them invisible

u wud get the vertical separator effect

rgds,

amit

Former Member
0 Kudos

hi ,

u cn insert text view element , and in the Text property of the element press ALT + 0160.

u can make use of INVISIBLE element as well

rgds,

amit