Modify ↓
Opened 12 months ago
Closed 12 months ago
#143 closed enhancement (fixed)
Better fxml: static properties should be attributes
| Reported by: | Bill van Melle <billvm@…> | Owned by: | tom |
|---|---|---|---|
| Priority: | major | Milestone: | 0.1.0 |
| Component: | tooling-fxgraph | Version: | 0.0.14 |
| Keywords: | Cc: |
Description
These days fxgraph is producing fairly natural fxml, except when it comes to static properties. Instead of
<VBox alignment="top_center">
...
<GridPane.rowIndex>1</GridPane.rowIndex>
<GridPane.columnIndex>0</GridPane.columnIndex>
<GridPane.columnSpan>2</GridPane.columnSpan>
</VBox>
I want to see
<VBox alignment="top_center" GridPane.rowIndex="1" GridPane.columnIndex="0" GridPane.columnSpan="2">
...
</VBox>
This will make it much nicer if I want to share fxml with someone who's not using e(fx)clipse.
Attachments (0)
Change History (2)
comment:1 Changed 12 months ago by tom
- Milestone set to 0.1.0
comment:2 Changed 12 months ago by tom
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
