detailActions always visible in detail view

I know it may be a simple process, but as much as I have tried I can’t get it. There is a way to keep visible, even if the scroll of the buttons located in the detailActions is active.

Normally, it looks like this. Tap to go to the end of the scroll to access the buttons.

image

The idea for user-friendliness is to keep the buttons visible without going all the way to the end.
image

Any ideas or suggestions are welcome.

Saludos,

Nelson F.

Hi, @nelsonf

It can be done using CSS styles that are set for the detailActions horizontal box. For example,

 <hbox id="detailActions" width="100%" css="position: sticky;
                bottom: 0;
                background-color: #fff">
            <button id="saveAndCloseBtn" action="saveAction"/>
            <button id="closeBtn" action="closeAction"/>
 </hbox>

Regards,
Maria.