JavaFX Turn an FXML tag to an Object for the controller class -


im having issues code, new guy javafx , im not quite sure of im doing @ all(i ofc, not enough)

i need find way add data table (tableview fxml) controller class, have no idea on how this, suggest best way.. thought of maybe if create object of tableview based on fxml table view ...

help guys...

<tableview fx:id="tableview" prefheight="200.0" prefwidth="200.0" stackpane.alignment="center">           <columns>             <tablecolumn editable="false" maxwidth="90.0" prefwidth="78.0" text="fecha" />             <tablecolumn editable="false" maxwidth="90.0" text="hora" />               <tablecolumn editable="false" maxwidth="90.0" prefwidth="79.0" text="folio" />               <tablecolumn editable="false" maxwidth="90.0" prefwidth="77.0" text="estacion" />               <tablecolumn editable="false" maxwidth="190.0" prefwidth="160.0" text="circuito" />               <tablecolumn editable="false" maxwidth="190.0" prefwidth="160.0" text="receta" />               <tablecolumn editable="false" maxwidth="190.0" prefwidth="160.0" text="usuario" />           </columns>            <stackpane.margin>               <insets bottom="8.0" left="8.0" top="8.0" />            </stackpane.margin>         </tableview> 


Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -