Questions tagged [flowpanel]
30 questions
0
votes
1 answer
Unable to get a proper background image in an panel inside a fullscreen scrollview in GWT
I'm having trouble with setting the main background image for a page.
I've got a full screen scrollview, in which I have a centered ~1000px wide flowpanel. The issue is that I want the flowpanel to have a background image that goes from the top of…

user705142
- 461
- 5
- 18
0
votes
1 answer
Flowlayout Adding control in between controls dynamically
I am making a change to an existing application. I am stuck on an issue where I need to add controls in the middle of a flow panel. I have simplified the problem below.
A label and button controls are added per object. I have 3 sets of objects I add…

Dev Learner
- 83
- 6
0
votes
0 answers
Closing a form from a FlowPanel image
When you click on an image in my flowView, a new window appears. On this appearing I want the Form containing the FlowView to be closed.
I've found a way to do it however, it is very messy and surely there's a better way? My code which works but…

benjiiiii
- 478
- 10
- 33
0
votes
0 answers
Forward Event to underlying Widget in GWT?
I use a widget which provides Drag and Drop. Here is what my UiBinder looks like:
mainPanel = new FlowPanel();
dropPanel = new DropPanel();
dropLabel = new Label("Drop Image…

Michael
- 32,527
- 49
- 210
- 370
0
votes
2 answers
GWT FlowPanel not adding widget
I have a class that extends FlowPanel. I add a DataGrid widget and a Grid widget like…

Patrick
- 261
- 3
- 16
0
votes
1 answer
Add widgets vertically in flowpanel
I want to add widgets to the flowpanel but in vertical manner. I have given display:block css to flowpanel and for the child widgets display:inline:block. They are placed vertically but in a single column. I want a vertical flow like horizontal…

pbhle
- 2,856
- 13
- 33
- 40
0
votes
1 answer
How do I scroll flowpanel programmatically
I am trying to flow a panel left and right with the following code.
private void btnLeft_Click(object sender, EventArgs e)
{
if (flowPanelItemCategory.Location.X <= xpos)
{
xmin = flowPanelItemCategory.HorizontalScroll.Minimum;
…

Smith
- 5,765
- 17
- 102
- 161
0
votes
2 answers
Calculating flow panel width based on its contents
I am dynamically populating frames into flow panels (as part of a horizontally oriented VCL Metropolis app). I need to resize each group's flow panel to fit all its items horizontally. I have a very simple formula which does the trick sometimes, but…

Jerry Dodge
- 26,858
- 31
- 155
- 327
0
votes
3 answers
What kind of GWT Panel that make Html widgets in it flow like a sentence in a paragraph?
I want to make each sentence in a paragraph stored inside a html widget. For instance, "I go to school. School is in city. My mom cooks for me. She is one I love"
There are 4 sentences in this paragraph and I want to store each of these sentence…

Tum
- 3,614
- 5
- 38
- 63
0
votes
1 answer
GWT enforcing Widgets horizontally and having scrollbar
I am having a FlowPanel with Float Left set in GWT inside a ScrollPanel. I want to enforce that instead of wrapping the new content to next line it gets added horizontally into FlowPanel and Scrollbar appears.

JDT
- 109
- 1
- 2
- 10
0
votes
1 answer
GWT - Structure of a html file for my flowpanel
I have a Flowpanel with some listboxes and labels in it:
private ListBox lbStartHour = new ListBox();
private ListBox lbStartMin = new ListBox();
private ListBox lbPauseMin = new ListBox();
private ListBox lbEndHour = new ListBox();
private…

kArvee
- 84
- 1
- 11
0
votes
1 answer
Wrapping FlowPanel across FlexTable doesnt work
I am newbee to GWT,
I have separate class which I use for only displaying LIST,when I say list I basically am using FLEXTABLE to show my data...3 FLEXTABLE places side by side.
So, the problem I am facing here is...If I wrap all these FLEXTABLE with…

Santosh
- 875
- 5
- 14
- 33
0
votes
1 answer
GWT: CellTable inside FlowPanel inside TabPanel
I have a CellTable widget (item that extends Composite and has a CellTable + Pager via UiBinder), which is inside a FlowPanel, which is the contents of a tab for a TabPanel.
I've set the height and width programmatically (for now) on all so…

James
- 1,237
- 4
- 22
- 43
0
votes
0 answers
GWT Fail to add nested LayoutPanel to FlowPanel
I've been trying to add a view with LayoutPanel to another view into a FlowPanel:
parent contains this:
child contains this:

user349072
- 493
- 2
- 5
- 12
0
votes
2 answers
GWT: add CellList members to Flow Panel one by one
Is there a way to add CellList members to Flow panel one by one instead of adding CellList itself to the panel?
for example.
private static final CellList myNodeCellList =
new…

solikang
- 53
- 10