edvin
09/30/2018, 8:53 PMValV
09/30/2018, 9:07 PM+--------+ +--------+ +--------+ +--------+ +--------+
Category | |v| Section | |v| | Add | | Remove | | Cancel |
+--------+ +--------+ +--------+ +--------+ +--------+
Vertical layout:
+--------+
Category | |v|
+--------+
+--------+
Section | |v|
+--------+
+--------+
| Add |
+--------+
+--------+
| Remove |
+--------+
+--------+
| Cancel |
+--------+
And square set:
+--------+
Category | |v|
+--------+
+--------+
Section | |v|
+--------+
+--------+ +--------+
| Add | | Remove |
+--------+ +--------+
+--------+
| Cancel |
+--------+
ValV
09/30/2018, 9:08 PMedvin
09/30/2018, 9:11 PMedvin
09/30/2018, 9:12 PMValV
09/30/2018, 9:13 PMedvin
09/30/2018, 9:14 PMValV
09/30/2018, 9:21 PMLabel
to underlying control as graphic, or is a some kind of container? I'd like to use them, 'cause they easily attach labelsedvin
09/30/2018, 9:23 PMPane
and offers different layouts based on the orientation given and there is also a custom Field for buttonbarsedvin
09/30/2018, 9:23 PMedvin
09/30/2018, 9:26 PMedvin
09/30/2018, 9:27 PMFieldset
is an open class. You can make your own version for each distinct layout evenValV
09/30/2018, 9:29 PMfieldset
preallocate width based on the orientation and maximum field size?edvin
09/30/2018, 9:30 PMValV
09/30/2018, 9:32 PMflowpane
between fieldset
and the field
does something weird. At least it has fixed size in that caseedvin
09/30/2018, 9:32 PMedvin
09/30/2018, 9:33 PMedvin
09/30/2018, 9:33 PMValV
09/30/2018, 9:41 PMfieldset
resizing works dynamically, that was another container that restricted maximum width of fieldset
edvin
09/30/2018, 9:41 PMValV
09/30/2018, 9:48 PMStylesheet
, can I? I see no flowPane
element thereValV
09/30/2018, 9:48 PMhgap
, vgap
ValV
10/01/2018, 1:03 AMStylesheet
ValV
10/01/2018, 2:38 AMopenInternalWindow
over some Node (e.g. inside HBox)?edvin
10/01/2018, 7:06 AMInternalWindow
if you really have to know that detail 🙂ValV
10/01/2018, 9:12 AMNode
(StackPane
), otherwise Scene
, right? And I'm not sure how to pass parameter, if I call openInternalWindow<CategoryControlFragment>(owner = thatNode)
edvin
10/01/2018, 7:23 PMValV
10/01/2018, 10:10 PMPersonModel
class and how does it reflect the state of PersonEditor
instanceValV
10/01/2018, 10:29 PMPersonModel
used to store parameters. As far as I understood, it should be
class PersonEditor: Fragment() {
val model: PersonModel by inject()
...
}
So the trick inside editPerson
just creates two instances for PersonModel
and PersonEditor
classes and sets them up in a separate resource space, right? I.e. to pass parameters via a Scope, I must create some auxiliary class for my CategoryControlFragment
to store some options?amanda.hinchman-dominguez
10/01/2018, 10:38 PMscope.collection
or whatever into another controller? I don't see why not, but it's complaining anyway