Four Js Development Tools Forum

Discussions by product => Genero BDL => Topic started by: . on June 03, 2008, 03:49:40 pm



Title: Group Height
Post by: . on June 03, 2008, 03:49:40 pm
Hi,

In my per file I have declared a group like so

       <G status  >           #  I have other items on the left
           [s1]


radiogroup  s1 = formonly.lv_status,
                         comments="customer status",
                         orientation=vertical,
                         items=(("A","Active")),("I","InActive");

The problem I am facing is that the group takes the height of the  form which is uneccessarily big since it only has one item

looking at the 42f XML file generated after compling I manually changed gridHeight from 16 to 5 and I got it the size that I want
                                       
               <Group text="Status" posY="1" posX="83" gridWidth="11" gridHeight="16">

In the  .per file how can I set the height?


Title: Re: Group Height
Post by: Reuben B. on June 04, 2008, 12:47:51 pm
Hi,

In my per file I have declared a group like so

       <G status  >           #  I have other items on the left
           [s1]


radiogroup  s1 = formonly.lv_status,
                         comments="customer status",
                         orientation=vertical,
                         items=(("A","Active")),("I","InActive");

The problem I am facing is that the group takes the height of the  form which is uneccessarily big since it only has one item

looking at the 42f XML file generated after compling I manually changed gridHeight from 16 to 5 and I got it the size that I want
                                       
               <Group text="Status" posY="1" posX="83" gridWidth="11" gridHeight="16">

In the  .per file how can I set the height?


Try ...
Code
  1. <G status   >
  2. [s1]
  3. <           >


Title: Re: Group Height
Post by: . on June 04, 2008, 02:30:47 pm
Thanks Reuben, it works.