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

Printing: Scene is not printed when blending is used.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 8u20
    • 8
    • javafx
    • JDK 7 and 8 on Windows 7

      my problem is that i have a parent node and i want to print the UI for that node, my node consist of sub node about 80 sub node inside , it a big data entry software for ministry . the issue is when i pass this node to the print function it's caused my resource to lock and print nothing. here is a code:
      this is the main application code:
      (
      package printissue;


      import java.io.IOException;
      import java.io.InputStream;
      import java.sql.SQLException;
      import java.util.logging.Level;
      import java.util.logging.Logger;
      import javafx.animation.FadeTransition;
      import javafx.application.Application;
      import javafx.fxml.FXMLLoader;
      import javafx.fxml.Initializable;
      import javafx.fxml.JavaFXBuilderFactory;
      import javafx.scene.Parent;
      import javafx.scene.Scene;
      import javafx.scene.text.Text;
      import javafx.stage.Stage;
      import javafx.util.Duration;
      import printissue.Page1.Page1Controller;


      /**
       *
       * @author Mohammed
       */
      public class Printissue extends Application {

          private Stage stage;
          private final Stage subStage = new Stage();
          private Scene scene;
          
          private Parent page;
          private Parent subParent;
          private Parent currentPage;

          

          
          
          
          
          
          @Override
          public void start(Stage primarystage) throws Exception {
                      
                
                 
              
                  
                  this.stage = primarystage;
                  gotoPage1();

                  primarystage.setFullScreen(false);
                  primarystage.setResizable(false);
                  primarystage.show();
                  
              
                 
                 
                  
              
          }


          public static void main(String[] args) {

              launch(args);
          }

          public Stage getStage() {
              return stage;
          }
          public Stage getDialogStage(){
              return subStage;
          }
          public Parent getPane(){
              return page;
          }
          public Scene getScene(){
              return scene;
          }

          public void gotoTable() {
              
          }

          private void gotoLogin() {
              
          }

          private void gotoPage1() {
              try {
                  Page1Controller page1 = (Page1Controller) replaceSceneContent("page1.fxml");
                  page1.setApp(this);
                  currentPage = page;

              } catch (Exception ex) {
                  Logger.getLogger(Printissue.class.getName()).log(Level.SEVERE, null, ex);
              }
          }


          
           public boolean userLogging(String s1 , String s2) throws SQLException, ClassNotFoundException, IOException {

               return false;
          }

          public boolean userLogout() {

              currentPage = page;
              gotoLogin();
              return true;

          }

          public void pageSubject(Text t) {

          }

          private Initializable replaceSceneContent(String fxml) throws Exception {

              FXMLLoader loader = new FXMLLoader();
              InputStream in = Printissue.class.getResourceAsStream(fxml);
              loader.setBuilderFactory(new JavaFXBuilderFactory());
              loader.setLocation(Printissue.class.getResource(fxml));

              try {
                  page = (Parent) loader.load(in);
                  
              } finally {
                  in.close();
              }

              FadeTransition t2 = new FadeTransition(new Duration(2000.0), currentPage);
              t2.setFromValue(1);
              t2.setToValue(0);
              t2.play();

              FadeTransition t = new FadeTransition(new Duration(2000.0), page);
              t.setFromValue(0);
              t.setToValue(1);
              t.play();

               scene = new Scene(page);
              

              stage.setScene(scene);
              stage.sizeToScene();

              return (Initializable) loader.getController();
          }

          private Initializable loadReportFXML(String fxml) throws Exception {

              FXMLLoader loader = new FXMLLoader();
              InputStream in = Printissue.class.getResourceAsStream(fxml);
              loader.setBuilderFactory(new JavaFXBuilderFactory());
              loader.setLocation(Printissue.class.getResource(fxml));

              try {
                  subParent = (Parent) loader.load(in);
                 
              } finally {
                  in.close();
              }

              FadeTransition t = new FadeTransition(new Duration(2000.0), subParent);
              t.setFromValue(0);
              t.setToValue(1);
              t.play();

              Scene scene = new Scene(subParent);

              subStage.setScene(scene);
              subStage.sizeToScene();
              subStage.show();

              return (Initializable) loader.getController();
          }

          private void gotoDBError() {
              
          }
          
          
          public void gotoDialog(String errDialog){
              
          }
          
          

              
          
          
          
      })

      this is FXML Code:
      ( <?xml version="1.0" encoding="UTF-8"?>

      <?import java.lang.*?>
      <?import javafx.geometry.*?>
      <?import javafx.scene.control.*?>
      <?import javafx.scene.effect.*?>
      <?import javafx.scene.layout.*?>
      <?import javafx.scene.text.*?>

      <AnchorPane blendMode="DARKEN" maxHeight="600.0" maxWidth="800.0" minHeight="-Infinity" minWidth="-Infinity" nodeOrientation="RIGHT_TO_LEFT" prefHeight="600.0" prefWidth="800.0" styleClass="background" stylesheets="@page1.css" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="printissue.Page1.Page1Controller">
      <children><ScrollPane hbarPolicy="ALWAYS" layoutY="41.0" prefHeight="600.0" prefWidth="800.0" vbarPolicy="ALWAYS" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
        <content>
          <AnchorPane fx:id="AnchorID" nodeOrientation="LEFT_TO_RIGHT" styleClass="background">
      <children><FlowPane fx:id="FlowID" alignment="TOP_RIGHT" columnHalignment="CENTER" layoutX="871.0" layoutY="80.0" prefHeight="2200.0" prefWidth="550.0" rowValignment="TOP" vgap="5.0" AnchorPane.rightAnchor="60.0">
      <children><TextField alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0">
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      <effect>
      <Blend />
      </effect></TextField><Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="الموافقة على الاعلان او الدعوة من قبل">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-1">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><DatePicker editable="false" layoutX="255.24609375" layoutY="288.0" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0" GridPane.rowIndex="1">
      <opaqueInsets>
      <Insets />
      </opaqueInsets>
      <effect>
      <Glow />
      </effect></DatePicker>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ الموافقة على الاعلان او الدعوة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-2">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text3" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0" GridPane.rowIndex="2">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="رقم الكتاب">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-3">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><DatePicker fx:id="datepicker4" editable="false" layoutX="255.24609375" layoutY="288.0" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0" GridPane.rowIndex="3">
      <effect>
      <Glow />
      </effect></DatePicker>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ الغلق">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-4">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><DatePicker editable="false" layoutX="185.0" layoutY="431.0" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="200.0">
      <effect>
      <Glow />
      </effect></DatePicker><Label alignment="CENTER" prefHeight="30.0" prefWidth="60.0" text="و الى">
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font></Label><DatePicker editable="false" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="200.0">
      <effect>
      <Glow />
      </effect></DatePicker><Label alignment="CENTER_RIGHT" contentDisplay="RIGHT" prefHeight="30.0" prefWidth="60.0" text="التمديد من" textAlignment="RIGHT">
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font></Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-5">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <DatePicker editable="false" layoutX="255.24609375" layoutY="288.0" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0" GridPane.rowIndex="3">
      <effect>
      <Glow />
      </effect></DatePicker>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ اعادة الاعلان" textAlignment="RIGHT">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-6">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <DatePicker editable="false" layoutX="255.24609375" layoutY="288.0" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="120.0" GridPane.rowIndex="3">
      <effect>
      <Glow />
      </effect>
      </DatePicker><TextField alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="80.0" promptText="رقم" /><TextField alignment="CENTER_RIGHT" onMouseEntered="#Col7MouseEntered" prefHeight="30.0" prefWidth="180.0" promptText="اسم الجريدة" />
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="140.0" text="وسيلة النشر للاعلان الاول">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-7">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <DatePicker fx:id="datepicker11" editable="false" layoutX="255.24609375" layoutY="288.0" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="120.0" GridPane.rowIndex="3">
      <effect>
      <Glow />
      </effect>
      </DatePicker>
      <TextField fx:id="text12" alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="80.0" promptText="رقم" />
      <TextField fx:id="text13" alignment="CENTER_RIGHT" onMouseEntered="#Col7MouseEntered" prefHeight="30.0" prefWidth="180.0" promptText="اسم الجريدة" />
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="140.0" text="وسيلة النشر للاعلان الثاني">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-8">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <DatePicker fx:id="datepicker14" editable="false" layoutX="255.24609375" layoutY="288.0" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="120.0" GridPane.rowIndex="3">
      <effect>
      <Glow />
      </effect>
      </DatePicker>
      <TextField fx:id="text15" alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="80.0" promptText="رقم" />
      <TextField fx:id="text16" alignment="CENTER_RIGHT" onMouseEntered="#Col7MouseEntered" prefHeight="30.0" prefWidth="180.0" promptText="اسم الجريدة" />
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="140.0" text="وسيلة النشر للاعلان الثالث">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-9">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text17" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="لجنة فتح العطاءات">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-10">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text18" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="رقم كتاب اللجنة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-11">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><DatePicker fx:id="datepicker19" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Glow />
      </effect></DatePicker>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ كتاب اللجنة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-12">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><DatePicker fx:id="datepicker20" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Glow />
      </effect></DatePicker>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ فتح العطاء">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-13">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text21" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="عدد الشركات المقدمة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-14">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><TextField fx:id="text22" alignment="CENTER_RIGHT" layoutX="127.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="مبلغ العطاء">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text23" alignment="CENTER_RIGHT" layoutX="325.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="اسم الشركة">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><Label alignment="BASELINE_CENTER" layoutX="523.0" layoutY="654.0" prefHeight="30.0" prefWidth="30.0" text="-1">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="110.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text24" alignment="CENTER_RIGHT" layoutX="127.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="مبلغ العطاء">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <TextField fx:id="text25" alignment="CENTER_RIGHT" layoutX="325.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="اسم الشركة">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="BASELINE_CENTER" layoutX="523.0" layoutY="654.0" prefHeight="30.0" prefWidth="30.0" text="-2">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="110.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text26" alignment="CENTER_RIGHT" layoutX="127.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="مبلغ العطاء">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <TextField fx:id="text27" alignment="CENTER_RIGHT" layoutX="325.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="اسم الشركة">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="BASELINE_CENTER" layoutX="523.0" layoutY="654.0" prefHeight="30.0" prefWidth="30.0" text="-3">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="110.0" text="عدد الشركات المقدمة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-15">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text28" alignment="CENTER_RIGHT" layoutX="127.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="مبلغ العطاء">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <TextField fx:id="text29" alignment="CENTER_RIGHT" layoutX="325.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="اسم الشركة">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="BASELINE_CENTER" layoutX="523.0" layoutY="654.0" prefHeight="30.0" prefWidth="30.0" text="-4">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="110.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text30" alignment="CENTER_RIGHT" layoutX="127.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="مبلغ العطاء">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <TextField fx:id="text31" alignment="CENTER_RIGHT" layoutX="325.0" layoutY="654.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="190.0" promptText="اسم الشركة">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="BASELINE_CENTER" layoutX="523.0" layoutY="654.0" prefHeight="30.0" prefWidth="30.0" text="-5">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="110.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><TextArea fx:id="text32" nodeOrientation="RIGHT_TO_LEFT" prefHeight="60.0" prefWidth="380.0">
      <effect>
      <Glow />
      </effect></TextArea>
      <Label alignment="CENTER_RIGHT" prefHeight="60.0" prefWidth="140.0" text="ملاحظات">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="60.0" prefWidth="30.0" text="-16">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text33" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0" promptText="الاعضاء">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="لجنة التحليل والدراسة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-17">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text34" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0" GridPane.rowIndex="2">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="رقم الكتاب">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-18">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <DatePicker fx:id="datepicker35" editable="false" layoutX="255.24609375" layoutY="288.0" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0" GridPane.rowIndex="1">
      <effect>
      <Glow />
      </effect>
      <opaqueInsets>
      <Insets />
      </opaqueInsets>
      </DatePicker>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ الكتاب">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-19">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><TextField fx:id="text36" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="رقم و تاريخ محضر التحليل">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-20">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <DatePicker fx:id="datepicker37" editable="false" layoutX="185.0" layoutY="431.0" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker>
      <Label alignment="CENTER_RIGHT" contentDisplay="RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ المصادقة اللجنة" textAlignment="RIGHT">
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><TextField fx:id="text38" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="155.0" promptText="المبلغ">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text39" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="155.0" promptText="اسم الشركة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><Label alignment="BASELINE_CENTER" contentDisplay="RIGHT" prefHeight="30.0" prefWidth="30.0" text="-1">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="180.0" textAlignment="RIGHT">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-22">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text40" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="155.0" promptText="المبلغ">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <TextField fx:id="text41" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="155.0" promptText="اسم الشركة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="BASELINE_CENTER" contentDisplay="RIGHT" prefHeight="30.0" prefWidth="30.0" text="-2">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="180.0" text="اسماء الشركات الثلاثة المرشحة" textAlignment="RIGHT">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-22">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text42" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="155.0" promptText="المبلغ">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <TextField fx:id="text43" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="155.0" promptText="اسم الشركة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="BASELINE_CENTER" contentDisplay="RIGHT" prefHeight="30.0" prefWidth="30.0" text="-3">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="180.0" textAlignment="RIGHT">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text44" alignment="CENTER_RIGHT" onMouseEntered="#Col7MouseEntered" prefHeight="30.0" prefWidth="310.0" />
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="جهة الاحالة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-23">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text45" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="رقم كتاب الاحالة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-24">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><DatePicker fx:id="datepicker46" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ كتاب الاحالة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-25">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextArea fx:id="text47" nodeOrientation="RIGHT_TO_LEFT" prefHeight="60.0" prefWidth="380.0">
      <effect>
      <Glow />
      </effect>
      </TextArea>
      <Label alignment="CENTER_RIGHT" prefHeight="60.0" prefWidth="140.0" text="الملاحظات">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="60.0" prefWidth="30.0" text="-26">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><RadioButton fx:id="text48no" mnemonicParsing="false" prefHeight="30.0" prefWidth="75.0" text="كلا">
      <toggleGroup>
      <ToggleGroup fx:id="radio48" />
      </toggleGroup></RadioButton><RadioButton fx:id="text48yes" mnemonicParsing="false" prefHeight="30.0" prefWidth="75.0" text="نعم" toggleGroup="$radio48" /><Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="160.0" text="تمت اضافتها الى القائمة السوداء">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="الشركة ناكلة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-27">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text49" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="اجراءات النكول تدرج">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-28">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text50" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="رقم العقد">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-29">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><DatePicker fx:id="datepicker51" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ العقد">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-30">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><DatePicker fx:id="datepicker52" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker><Label alignment="CENTER_RIGHT" layoutX="-37.0" layoutY="753.0" prefHeight="30.0" prefWidth="210.0" text="تاريخ المصادقة على العقد">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-31">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="العنوان">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="التصنيف">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="اسم المخول">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="المدير المفوض">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER_RIGHT" prefHeight="45.0" prefWidth="120.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="45.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><TextField fx:id="text53" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text54" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text55" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text56" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><Label alignment="TOP_RIGHT" prefHeight="45.0" prefWidth="120.0" text="لجنة التحليل والدراسة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="TOP_CENTER" prefHeight="45.0" prefWidth="30.0" text="-32">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text57" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0" GridPane.rowIndex="2">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="مدة التنفيذ">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-33">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><TextField fx:id="text58" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="مدة الصيانة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-34">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <DatePicker fx:id="datepicker59" nodeOrientation="RIGHT_TO_LEFT" prefHeight="30.0" prefWidth="310.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="تاريخ النفاذ">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-35">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="اسم المصرف">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="تاريخه">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="مبلغ الصك">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="رقم الصك">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER_RIGHT" prefHeight="45.0" prefWidth="120.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="45.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text60" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><DatePicker fx:id="datepicker61" nodeOrientation="RIGHT_TO_LEFT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker>
      <TextField fx:id="text62" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <TextField fx:id="text63" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><Label alignment="TOP_RIGHT" prefHeight="45.0" prefWidth="120.0" text="مبلغ التامينات النظامية">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="TOP_CENTER" prefHeight="45.0" prefWidth="30.0" text="-36">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="كتاب صحة الصدور ">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="جهة الاصدار">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="مبلغه">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="45.0" prefWidth="100.0" text="تاريخه">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER_RIGHT" prefHeight="45.0" prefWidth="120.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="45.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text64" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <TextField fx:id="text65" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <TextField fx:id="text66" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><DatePicker fx:id="datepicker67" nodeOrientation="RIGHT_TO_LEFT" prefHeight="45.0" prefWidth="100.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker><Label alignment="TOP_RIGHT" prefHeight="45.0" prefWidth="120.0" text="كتاب خطاب الضمان">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="TOP_CENTER" prefHeight="45.0" prefWidth="30.0" text="-37">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text68" alignment="CENTER_RIGHT" layoutX="221.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="310.0" GridPane.rowIndex="2">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField>
      <Label alignment="CENTER_RIGHT" prefHeight="30.0" prefWidth="210.0" text="مبلغ المقاولة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-38">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><DatePicker fx:id="datepicker69" nodeOrientation="RIGHT_TO_LEFT" prefHeight="60.0" prefWidth="100.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker><TextArea fx:id="text70" nodeOrientation="RIGHT_TO_LEFT" prefHeight="60.0" prefWidth="250.0" />
      <Label alignment="CENTER_RIGHT" prefHeight="60.0" prefWidth="170.0" text="رقم الانذار الاولي و تاريخه و اسبابه">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="60.0" prefWidth="30.0" text="-39">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <DatePicker fx:id="datepicker71" nodeOrientation="RIGHT_TO_LEFT" prefHeight="60.0" prefWidth="100.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker>
      <TextArea fx:id="text72" nodeOrientation="RIGHT_TO_LEFT" prefHeight="60.0" prefWidth="250.0" />
      <Label alignment="CENTER_RIGHT" prefHeight="60.0" prefWidth="170.0" text="رقم الانذار الثاني و تاريخه و اسبابه">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="60.0" prefWidth="30.0" text="-40">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <DatePicker fx:id="datepicker73" nodeOrientation="RIGHT_TO_LEFT" prefHeight="60.0" prefWidth="100.0">
      <effect>
      <Glow />
      </effect>
      </DatePicker>
      <TextArea fx:id="text74" nodeOrientation="RIGHT_TO_LEFT" prefHeight="60.0" prefWidth="250.0" />
      <Label alignment="CENTER_RIGHT" prefHeight="60.0" prefWidth="170.0" text="رقم الانذار النهائي و تاريخه و اسبابه">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="60.0" prefWidth="30.0" text="-41">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextArea fx:id="text75" nodeOrientation="RIGHT_TO_LEFT" prefHeight="60.0" prefWidth="350.0" />
      <Label alignment="CENTER_RIGHT" prefHeight="60.0" prefWidth="170.0" text="مبلغ الغرامات التاخيرية">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="60.0" prefWidth="30.0" text="-42">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="CENTER" prefHeight="30.0" prefWidth="550.0" text="حل النزاعات">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER" prefHeight="30.0" prefWidth="120.0" text="الملاحظات">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER" prefHeight="30.0" prefWidth="80.0" text="الموضوع">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER" prefHeight="30.0" prefWidth="80.0" text="المحكمة">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER" prefHeight="30.0" prefWidth="80.0" text="مرحلة الدعوى">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER" prefHeight="30.0" prefWidth="80.0" text="نوع الدعوى">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label><Label alignment="CENTER" prefHeight="30.0" prefWidth="80.0" text="رقم الدعوى">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0" text="-43">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      <TextField fx:id="text76" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="120.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text77" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="80.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text78" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="80.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text79" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="80.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text80" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="80.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><TextField fx:id="text81" alignment="CENTER_RIGHT" nodeOrientation="LEFT_TO_RIGHT" prefHeight="30.0" prefWidth="80.0">
      <effect>
      <Blend />
      </effect>
      <font>
      <Font name="Arial" size="12.0" />
      </font>
      </TextField><Label alignment="BASELINE_CENTER" prefHeight="30.0" prefWidth="30.0">
      <effect>
      <Glow />
      </effect>
      <font>
      <Font name="Arial Bold" size="14.0" />
      </font>
      </Label>
      </children></FlowPane><Button layoutX="1138.0" layoutY="24.0" mnemonicParsing="false" onAction="#insertaction" text="ادخال" /><Button layoutX="1062.0" layoutY="24.0" mnemonicParsing="false" onAction="#queryaction" text="بحث" /><Button layoutX="965.0" layoutY="22.0" mnemonicParsing="false" onAction="#updateaction" text="تحديث" /><Label fx:id="idlabel" layoutX="1281.0" layoutY="26.0" prefHeight="22.0" prefWidth="51.0" /><Label layoutX="1246.0" layoutY="29.0" text="ID : " /><Button fx:id="reportGenButton" layoutX="666.0" layoutY="24.0" mnemonicParsing="false" onAction="#reportGenAction" text="تقرير" /><Button layoutX="864.0" layoutY="24.0" mnemonicParsing="false" onAction="#newaction1" text="New" /><Button fx:id="printButton" layoutX="752.1875" layoutY="24.5" mnemonicParsing="false" onAction="#printButtonFired" text="Print" />
      </children></AnchorPane>
        </content>
      </ScrollPane>
      </children></AnchorPane>
      )
      and this is the controller code:
      (/*
       * To change this license header, choose License Headers in Project Properties.
       * To change this template file, choose Tools | Templates
       * and open the template in the editor.
       */

      package printissue.Page1;

      import java.net.URL;
      import java.util.ResourceBundle;
      import javafx.event.ActionEvent;
      import javafx.fxml.FXML;
      import javafx.fxml.Initializable;
      import javafx.print.PrinterJob;
      import javafx.scene.Node;
      import javafx.scene.control.Button;
      import javafx.scene.control.DatePicker;
      import javafx.scene.control.Label;
      import javafx.scene.control.RadioButton;
      import javafx.scene.control.TextArea;
      import javafx.scene.control.TextField;
      import javafx.scene.control.ToggleGroup;
      import javafx.scene.input.MouseEvent;
      import javafx.scene.layout.AnchorPane;
      import javafx.scene.layout.FlowPane;
      import printissue.Printissue;

      /**
       * FXML Controller class
       *
       * @author Mohammed
       */
      public class Page1Controller implements Initializable {
          @FXML
          private AnchorPane AnchorID;
          @FXML
          private FlowPane FlowID;
          @FXML
          private TextField text3;
          @FXML
          private DatePicker datepicker4;
          @FXML
          private DatePicker datepicker11;
          @FXML
          private TextField text12;
          @FXML
          private TextField text13;
          @FXML
          private DatePicker datepicker14;
          @FXML
          private TextField text15;
          @FXML
          private TextField text16;
          @FXML
          private TextField text17;
          @FXML
          private TextField text18;
          @FXML
          private DatePicker datepicker19;
          @FXML
          private DatePicker datepicker20;
          @FXML
          private TextField text21;
          @FXML
          private TextField text22;
          @FXML
          private TextField text23;
          @FXML
          private TextField text24;
          @FXML
          private TextField text25;
          @FXML
          private TextField text26;
          @FXML
          private TextField text27;
          @FXML
          private TextField text28;
          @FXML
          private TextField text29;
          @FXML
          private TextField text30;
          @FXML
          private TextField text31;
          @FXML
          private TextArea text32;
          @FXML
          private TextField text33;
          @FXML
          private TextField text34;
          @FXML
          private DatePicker datepicker35;
          @FXML
          private TextField text36;
          @FXML
          private DatePicker datepicker37;
          @FXML
          private TextField text38;
          @FXML
          private TextField text39;
          @FXML
          private TextField text40;
          @FXML
          private TextField text41;
          @FXML
          private TextField text42;
          @FXML
          private TextField text43;
          @FXML
          private TextField text44;
          @FXML
          private TextField text45;
          @FXML
          private DatePicker datepicker46;
          @FXML
          private TextArea text47;
          @FXML
          private RadioButton text48no;
          @FXML
          private ToggleGroup radio48;
          @FXML
          private RadioButton text48yes;
          @FXML
          private TextField text49;
          @FXML
          private TextField text50;
          @FXML
          private DatePicker datepicker51;
          @FXML
          private DatePicker datepicker52;
          @FXML
          private TextField text53;
          @FXML
          private TextField text54;
          @FXML
          private TextField text55;
          @FXML
          private TextField text56;
          @FXML
          private TextField text57;
          @FXML
          private TextField text58;
          @FXML
          private DatePicker datepicker59;
          @FXML
          private TextField text60;
          @FXML
          private DatePicker datepicker61;
          @FXML
          private TextField text62;
          @FXML
          private TextField text63;
          @FXML
          private TextField text64;
          @FXML
          private TextField text65;
          @FXML
          private TextField text66;
          @FXML
          private DatePicker datepicker67;
          @FXML
          private TextField text68;
          @FXML
          private DatePicker datepicker69;
          @FXML
          private TextArea text70;
          @FXML
          private DatePicker datepicker71;
          @FXML
          private TextArea text72;
          @FXML
          private DatePicker datepicker73;
          @FXML
          private TextArea text74;
          @FXML
          private TextArea text75;
          @FXML
          private TextField text76;
          @FXML
          private TextField text77;
          @FXML
          private TextField text78;
          @FXML
          private TextField text79;
          @FXML
          private TextField text80;
          @FXML
          private TextField text81;
          @FXML
          private Label idlabel;
          @FXML
          private Button reportGenButton;
          @FXML
          private Button printButton;
          private Printissue application;

          /**
           * Initializes the controller class.
           */
          @Override
          public void initialize(URL url, ResourceBundle rb) {
              // TODO
          }
          public void setApp(Printissue application) {
              this.application = application;
          }

          @FXML
          private void Col7MouseEntered(MouseEvent event) {
          }

          @FXML
          private void insertaction(ActionEvent event) {
          }

          @FXML
          private void queryaction(ActionEvent event) {
          }

          @FXML
          private void updateaction(ActionEvent event) {
          }

          @FXML
          private void reportGenAction(ActionEvent event) {
          }

          @FXML
          private void newaction1(ActionEvent event) {
          }

          @FXML
          private void printButtonFired(ActionEvent event) {
              
              PrinterJob job = PrinterJob.createPrinterJob();
              job.showPrintDialog(application.getStage());


              Node node=application.getPane();
              if (job != null) {
                  boolean success = job.printPage(node);
                  if (success) {
                      job.endJob();
                 }
              }
          }
          
      }
      )

        1. page1.fxml
          42 kB
          Philip Race
        2. Page1Controller.java
          5 kB
          Philip Race
        3. Printissue.java
          4 kB
          Philip Race

            prr Philip Race
            mbasharjfx Mohammed Bashar (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: