Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8092030

cannot customize node layout constraints using CSS

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • fx2.0
    • javafx
    • JavaFX 2.0 ea b18

      GridPane and other layout panes stores the layout constrains as client properties but it's not possible to change this layout information via a CSS style sheet.

      An example:

          Label labelNode = new Label(label);
          labelNode.getStyleClass().add ("input-label"); // All Labels which are "connected" to Input fields
          GridPane.setConstraints(labelNode, 0, row);
          GridPane.setHalignment(labelNode, HPos.RIGHT); // Labels should be right to the next field
          
          TextBox textNode = new TextBox();
          GridPane.setConstraints(textNode, 1, row);
          GridPane.setHalignment(textNode, HPos.LEFT); // TextBox left to the previous label

      Now I (or a customer) want to change the right justified labels to left:

      .input-label {
        -fx-node-halignment: left;
      }

      best regards, josh.

            Unassigned Unassigned
            arittnerjfx Aljoscha Rittner (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Imported: