Questions tagged [popuppanel]
51 questions
0
votes
1 answer
Is Gwt PopupPanel method setPopupPosition overwritten when adding it to another Panel?
I'd like to set the position of my PopupPanel relative to the Panel I'm adding it to. However, the position I set with
popupPanel.setPopupPosition(750,230);
is ignored.
Is the method position overwritten when adding it to a panel?

Sophie Sepp
- 521
- 1
- 5
- 16
0
votes
1 answer
How to get the mouse position in JSNI
I have tried the following code but it is not working in full screen.
public static native void hello1()
/*-{
var body=$doc.getElementsByTagName("body")[0];
var posx=0;
var posy=0;
body.addEventListener("click",function (e)
{
…

user
- 1
- 4
0
votes
1 answer
trouble in popuppanel and selectonemenu with converter
i have a problem in a rich POPUPPANEL in my form i have a selectonemenu with converter it works great if i make the component in simple form with panel grid but when i make this on popuppanel the value of selectonemenu not send to my bankingbean i…

mogiwara
- 47
- 1
- 6
0
votes
2 answers
Mouse events are not working in gwt popup panel
MouseUp and Mousedown events are not working for PopupPanel in GWT, but the same code is working for normal view in GWT.Is there any thing we need to do before writing mouse events on GWT PopupPanel.Kindly guide me as soon as possible.

user3154688
- 5
- 3
0
votes
1 answer
My modal in jsf don´t hide
I have one problem
I´m using one modal to get informations and put in a datatable.

user812612
- 379
- 4
- 7
- 15
0
votes
0 answers
GWT Popup Panel Style CSS
I am trying to add Loading icon .gif within GWT popuppanel , but my Loading icon view is some what hard to see , Can i get any CSS style to appear icon within the popuppanel to get rich look ?

TMKS
- 121
- 1
- 3
- 14
0
votes
1 answer
Displaying PopupPanel
THREE QUESTIONS:
Why does my popupPanel not display correctly?
How can I only get it to appear once if clicked multiple times?
How can I add a Close button to the popupPanel?
function showPassword(e){
var app = UiApp.getActiveApplication();
…

Justin_DavieHigh
- 225
- 2
- 7
- 22
0
votes
2 answers
GWT PopupPanel just appearing once
I`m using GWT-Popup-Panel with the following code:
private static class MyPopup extends PopupPanel {
public MyPopup() {
// PopupPanel's constructor takes 'auto-hide' as its boolean parameter.
// If this is set, the panel…

Sophie Sepp
- 521
- 1
- 5
- 16
0
votes
1 answer
How to dynamically populate pick list right side values
I am using rich:popuppanel component and having issues with populating values in picklist.
My requirement is as below.
Populate extended data table
Select a row using check box - User ID in that row will be passed to backing bean
Click assign…

user2455158
- 97
- 3
- 12
0
votes
1 answer
GWT- PopupPanel with search?
I am looking for a way to create a popup dialog box when a user double clicks a textinput field that will contain a scroll-able list (from database table) where the user can select a field, hit ok, and have it placed into the textbox when popup…

TheJavaBeast
- 163
- 3
- 16
0
votes
1 answer
Rerendring a component inside popupPanel fails
I have popupPanel with a simple form (for search) and a dataTable (for search results). I try to Rerender the dataTable after submitting the form and populating the search results which fails. Here is the source code

Yashar
- 1,122
- 2
- 15
- 43
0
votes
1 answer
JSF action not called OR selectbox value is null
i have another strange JSF problem here... I don´t really know why, but what ever i try to do, i have one out of two problems. Either the action method inside my popupPanel is not (means never) called or it is called, but the value from my selectBox…

user1502353
- 99
- 1
- 10
0
votes
1 answer
RichFaces 4 dataTable edit issue
I would like to do such table with editing like here -> http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=dataTable&sample=dataTableEdit&skin=blueSky . The problem ist that, when I do changes in editPane (popupPanel) they are not…

4dawid
- 1
- 1
0
votes
1 answer
Can't get GWT Popup panel glass effect to work
I have extended PopupPanel and am trying to get the glass/see through effect to work
Here is my class
import com.google.gwt.user.client.Timer;
import com.google.gwt.user.client.ui.*;
public class MyPopup extends PopupPanel
{
private static Label…

MayoMan
- 4,757
- 10
- 53
- 85
0
votes
1 answer
gwt popuppanel cancel onclose process based on a condition
I have a PopupPanel
private PopupPanel simplePopup;
The popup opens in the app. When the user clicks outside of it the popup is closed. This is the default behaviour. I'd like to override that behaviour and DON'T close the popup IF a condition is…

Mike
- 1,296
- 2
- 15
- 40