Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

newbie BIRT - layout - fields side-by-side for Address etc

Tags:

eclipse

birt

I wanted to find out how to specify fields to appear side-by-side in BIRT layout e.g.- City State Zip in a address line. By default, it seems to put the fields one below another and I can't seem to find a way to reposition them side-by-side

BIRT 2.6.0 and Eclipse Helios

like image 991
shikarishambu Avatar asked Nov 25 '25 16:11

shikarishambu


2 Answers

I would use a grid to control the placement of the controls on the page. BIRT uses a web design metaphor and as such things need to be placed explicitly on a page. When you are building a page in simple HTML you often need a table or some other structural element to control how one piece of text (or image) relates to another. BIRT is no different in this regard.

Good Luck!

like image 145
MystikSpiral Avatar answered Nov 27 '25 15:11

MystikSpiral


Using a grid for this is not the right solution unless you actually want elements aligned into columns.

If you set the Display value of your Data elements to Inline instead of Block they will be displayed side by side on the same line exactly like you want.

like image 37
ebirkenes Avatar answered Nov 27 '25 15:11

ebirkenes