Key events

4 messages - 1165 views

I want to display two screens at the same time. I want to display a large long screen on the background that contains a very long list of items. when I click  search, I want the screen to remain while I display a smaller screen that contains just a textfield in the middle of the screen. up till now, whenever I display a new screen the old screen disappears....

Is it possible to achieve what I want to?

 

Thanks

What you want ot do is a popupBox, no ?

i can add textfield to popUpBox? if yes can also make it a bit tranparent???

Yes you can add what ever you want in popupBox.

Since 1.1.0 popupBox could be defined through xml (here popup.xml)

<popupbox style="layout-data:sld(center,1,-1)">

    <textfield id="tf"/>
    <popupBoxFirstMenuItem onAction="myAction(#tf.text)"/>

</popupbox>

And open it with

Kuix.showPopupBox("popup.xml", null);

 

Tranlucent appearance could be done with tranlucent PNG background image of the PopupBox.