|
Tutorial Example
IntroductionThis is the part 2 of the 1. Forget the RowSpecOne problem in all the previous tutorials is that one needs to determine the row spec before hand. When there are many rows, it becomes somewhat tedious to have "pref, 2dlu, " in the rowspec repeated over and over again. DefaultFormBuilder can automatically append "pref" part for us, we just need to specify the line gap between two rows.
<panel> <formbuilder> <formlayout columnspec="pref, 4dlu, 50dlu, 4dlu, min" rowspec="" > </formlayout> <form-properties linegapsize="DLUY2"/> </formbuilder> </panel> It seems to me that DefaultFormBuilder behaves differently for advancing
to next line if rowspec is not manually set. 2. Row GroupingDefaultFormBuilder keeps track a single active row group, which is actually sufficient for all layout purposes. <form-properties rowgroupingenabled="true"/> 3. Other FeaturesAs mentioned in the first tutorial, |