Components, drag panels, 3d, so on

1) Not all FB components are presented... no place for costume (for ex pv3d based) components?
2) CS4? heh... how to drag panels (for ex tools to layers to middle of screen )?
3) no z in standart component propertys?
4) how to close Selection window?
5) lang pacs?
6) Eclipse how to turn it on???
sory for my EN

1) The list of components in the Beta release is incomplete. We will be adding more components as development continues.
2) I don't know what you are asking about with CS4. Other than the HUD, the panels in the Beta release are not draggable.
3) Correct. The z property is not editable through the Catalyst Beta UI. If you want to change the order in which components are stacked, you can drag them around in the Layers panel, but this isn't modifying the z property. If you want to modify the z property itself, you will need to edit the code in Builder after you are finished with the design in Catalyst.
4) You can turn the HUD on and off through the Window=>HUD menu item (F7 is the shortcut key).
5) As far as I know, the Beta is only available in English.
6) I'm not sure what you mean here. If you are trying to edit the generated code, you are going to have to use Builder for that. The Code view in Catalyst is read-only.
-Adam Altman
Catalyst Engineering

Similar Messages

  • XFWM Drag Panel to Un-Maximize Titleless Window

    I'm using xfwm-titleless+ with xfce4-windowck-plugin. Everything works great and I now have the title of my windows displayed in my top panel, along with the buttons to close, minimize, and maximize.
    My problem is, I've had this setup on gnome-shell and I was able to click the gnome shell and drag downwards and it would be as if i was clicking the window's titlebar.
    Is there a way to do this with xfce?

    I'm not sure this is what you're asking but you can hold Alt key and move window around with mouse holding left button. It will also restore orginal size of window before maximizing. You can resize window with Alt + Right mouse button.

  • Quick question about custom Components and Panels

    Okay, so here is the situation.
    I created a custom component that overrides paintComponent. All this component does is draw a diagonal line.
    If I add this component directly to a JFrame it displays fine.
    The issue: I made a custom JPanel that at the moment only contains this component. If I add it to the JPanel then add that to the JFrame, it only displays a dot.
    Any suggestions?

    Layout issue. The intermediate JPanel has a default FlowLayout manager which shows its child components at their preferredSizes. These sizes are computed by the layout manager in the process of laying out the children. When there are no children the size reported to the parent is the default size which for JPanel is (10, 10). You can change the layout manager for the intermediate panel or specify a preferredSize for the graphic component in one of two ways:
    1 - use the setPreferreSize method
    2 override the getPreferredSize method in the class:
    class Pseudo extends Jpanel {
        protected void paintComponent(Graphics g) {
            // custom drawing...
        public Dimension getPreferredSize() {
            return new Dimension(desiredWidth, height);
    }

  • Getting text components on panel

    Hi guys!
    How to access all components on the panel? I mean, if i have:
    jpanel1, jpanel2, jtextField1, jtextField2, and
    jpanel1.add(jtextField1);
    jpanel1.add(jpanel2);
    jpanel2.add(jtextField2);
    then, jpanel1.getComponents() will return {jtextField1, jpanel2}, right?
    so, can i get array {jpanel2, jtextField1, jtextField2} ?

    No is the short answer. You will have to iterate through all the components. Try a method like:
         public java.util.List getAllComponents(Container initialComponent)
              java.util.List compList = new ArrayList();
              Component[] comps = initialComponent.getComponents();
              for (int i = 0; i < comps.length; i++)
                   if(comps[i] instanceof Container)
                        compList.addAll(getAllComponents((Container) comps));
                   compList.add(comps[i]);
              return compList;

  • Dragging panels at runtime

    I'm trying to create an interface that allows the user to
    move their page components around at run time. I can create list
    controls, datagrids, etc. that have draggable items, but I'm trying
    to make it so that the entire container can be repositioned to the
    users satisfaction.
    I've searched here and elsewhere, found nothing. Any
    suggestions?
    Thanks in advance.

    use popups
    var MyPanel:Panel = new Panel();
    // third param true is for modal. for modelless use false
    mx.managers.PopUpManager.addPopUp(MyPanel, this, true);
    // this is for centering the window
    mx.managers.PopUpManager.centerPopUp(MyPanel);

  • Resize Panels bug? Dragging panel depth is not smooth and continues after mouse up

    I've noticed in both CS6 and CC when I adjust the custom panel layout by changing the depth of a panel or docked panels, the panel movement lags and often continues after mouseup. It's annoying and I have never seen this in CS5 or before. Does anyone else notice this? Surely it is not a "feature".
    Mac OSX 10.7.5
    AI CC 17.1

    Hi rcraighead,
    Can you please attach some snapshots depicting your problem.
    Sanjay.

  • Dynamicaly adding components to panel/grid

    I am trying to add components dynamically in panelgrid but it is displaying nothing.in jsp tag is
    <h:panelGrid id = "ExpenseDetail" binding = "#{expenses.component}" />
    tand his is what i am doing in backing bean.
    public HtmlPanelGrid getComponent()
    FacesContext facesContext = FacesContext.getCurrentInstance();
    Application application = facesContext.getApplication();
    component = new HtmlPanelGrid();
    component.getChildren().clear();
    component.setBorder(1);
    component.setColumns(1);
    component.setStyleClass("browsetabletype2");
    component.setWidth("90%");
    UIOutput outText = (UIOutput)application.createComponent("javax.faces.HtmlOutputText");
              outText.setValue("Name");
              outText.setId("Name");
              component.getChildren().add(outText);
    return component;
    }

    What about setter of your binded component ?
    Try this
            private HtmlPanelGrid dynamicPanel = null;
         public HtmlPanelGrid getDynamicPanel {
              if (this.dynamicPanel == null) {
                   // this will happen the first time the HtmlPanelGrid is retrieved
                   this.dynamicPanel = new HtmlPanelGrid();
              try {
                   generatePanel(this.dynamicPanel);
              } catch (Exception e) {
                   e.printStackTrace();
              return dynamicPanel;
         public void setDynamicPanel(HtmlPanelGrid dynamicPanel) {
              try {
                   generatePanel(dynamicPanel);
              } catch (Exception e) {
                   e.printStackTrace();
              this.dynamicPanel = dynamicPanel;
           private void generatePanel(HtmlPanelGrid dynamicPanel){
                    dynamicPanel.getChildren().clear();
              dynamicPanel.setId("dynamicPanel_1");
                    //adding other attributes and children ...
            } I always use this method, and it works. Maybe there is more sophisticated way, but I didn't managed to find it. Hope it helps.
    Martin

  • Manual Drag&Drop on Panel components

    Ok people I have been following this example
    http://blogs.adobe.com/flexdoc/drag_and_drop/
    What the goal of my application will be to have a canvas on
    top of my application and one at the bottom. I will start off with
    a set of dynamically generated panels in the top or bottom canvas,
    doesn't really matter which. I want to be able to count how many
    panels are in each canvas and get the related id and name for each
    panel in each canvas.
    I have set up a canvas at the top where I pretty much just
    have the code from that example I linked to at the top except that
    my panels are generated on the fly and their count is variable. I
    am STRUGGLING to create a "two way drag and drop" between the two
    canvases (moving child panel from the top canvas to the bottom
    canvas and vice versa).
    I have found PLENTY of two way drop and drag examples but
    they all were about lists, datagrid, or tree components -
    components that already come built in with "drag and drop" and "two
    way drag and drop" but in my case the drag and drop is manually
    created.
    I am totally clueless as to the process. Can anyone point me
    in the right direction? I posted in the yahoo usergroups but so far
    my post has NOT been approved and it was posted like three hours
    ago.
    Any help is GREATLY appreciated.
    Here is part of my mxml:
    <mx:Canvas id="memberFilters"
    width="680" height="275"
    borderStyle="solid"
    backgroundColor="#B6FABB"
    x="10" y="10"
    dragEnter="doDragEnter(event);"
    dragDrop="doDragDrop(event);">
    </mx:Canvas>
    <mx:Canvas id="nonMemberFilters"
    width="680" height="275"
    borderStyle="solid"
    backgroundColor="#FBB7B7"
    x="10" y="325"
    dragEnter="doDragEnter(event);"
    dragDrop="doDragDrop(event);">
    </mx:Canvas>
    here is part of of my .as file:
    // Drag initiator event handler for
    // the title bar's mouseMove event.
    private function tbMouseMoveHandler(event:MouseEvent):void
    var dragInitiator:Panel=Panel(event.currentTarget);
    var ds:DragSource = new DragSource();
    ds.addData(event.currentTarget, 'panel');
    // Update the xOff and yOff variables to show the
    // current mouse location in the Panel.
    xOff = event.currentTarget.mouseX;
    yOff = event.currentTarget.mouseY;
    // Initiate d&d.
    DragManager.doDrag(dragInitiator, ds, event);
    // Function called by the canvas dragEnter event; enables
    dropping
    private function doDragEnter(event:DragEvent):void
    DragManager.acceptDragDrop(Canvas(event.target));
    // Function called by the Canvas dragDrop event;
    // Sets the panel's position,
    // "dropping" it in its new location.
    private function doDragDrop(event:DragEvent):void
    // Compensate for the mouse pointer's location in the title
    bar.
    var tempX:int = event.currentTarget.mouseX - xOff;
    event.dragInitiator.x = tempX;
    var tempY:int = event.currentTarget.mouseY - yOff;
    event.dragInitiator.y = tempY;
    // Put the dragged panel on top of all other components.
    memberFilters.setChildIndex(Panel(event.dragInitiator),
    memberFilters.numChildren-1);
    // Function called by the Canvas dragDrop event;
    // Sets the panel's position,
    // "dropping" it in its new location.
    private function doDragDrop(event:DragEvent):void
    // Compensate for the mouse pointer's location in the title
    bar.
    var tempX:int = event.currentTarget.mouseX - xOff;
    event.dragInitiator.x = tempX;
    var tempY:int = event.currentTarget.mouseY - yOff;
    event.dragInitiator.y = tempY;
    // Put the dragged panel on top of all other components.
    nonMemberFilters.setChildIndex(Panel(event.dragInitiator),
    nonMemberFilters.numChildren-1);
    public function onAvailableFiltersResult(result:Array):void
    phpData = new ArrayCollection(result);
    for(x=0; x<phpData.length; x++) {
    // create each new panel and add it to the parent canvas
    var filterData:Panel = new Panel();
    filterData.id = "id__" + phpData[x].data;
    filterData.title = phpData[x].label;
    filterData.addEventListener(MouseEvent.MOUSE_DOWN,
    tbMouseMoveHandler);
    memberFilters.addChild(filterData);
    the code in the .as is my code along with the code from the
    link above

    Here is the updated code ...
    I replaced the onAvailableFiltersResult with createPanels to
    create some 5 panels. You can replace it with
    onAvailableFiltersResult.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical"
    creationComplete="createPanels()">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.managers.DragManager;
    import mx.containers.Panel;
    import mx.core.DragSource;
    import mx.events.DragEvent;
    // Variables used to hold the mouse pointer's location in
    the title bar.
    // Since the mouse pointer can be anywhere in the title bar,
    you have to
    // compensate for it when you drop the panel.
    public var xOff:Number;
    public var yOff:Number;
    // Drag initiator event handler for
    // the title bar's mouseMove event.
    private function tbMouseMoveHandler(event:MouseEvent):void
    var dragInitiator:Panel=Panel(event.currentTarget);
    var ds:DragSource = new DragSource();
    ds.addData(event.currentTarget, 'panel');
    // Update the xOff and yOff variables to show the
    // current mouse location in the Panel.
    xOff = event.currentTarget.mouseX;
    yOff = event.currentTarget.mouseY;
    // Initiate d&d.
    DragManager.doDrag(dragInitiator, ds, event);
    // Function called by the canvas dragEnter event; enables
    dropping
    private function doDragEnter(event:DragEvent):void
    DragManager.acceptDragDrop(Canvas(event.target));
    // Function called by the Canvas dragDrop event;
    // Sets the panel's position,
    // "dropping" it in its new location.
    private function doDragDrop1(event:DragEvent):void
    // Compensate for the mouse pointer's location in the title
    bar.
    var tempX:int = event.currentTarget.mouseX - xOff;
    event.dragInitiator.x = tempX;
    var tempY:int = event.currentTarget.mouseY - yOff;
    event.dragInitiator.y = tempY;
    memberFilters.addChild(Panel(event.dragInitiator));
    // Put the dragged panel on top of all other components.
    memberFilters.setChildIndex(Panel(event.dragInitiator),
    memberFilters.numChildren-1);
    // Function called by the Canvas dragDrop event;
    // Sets the panel's position,
    // "dropping" it in its new location.
    private function doDragDrop2(event:DragEvent):void
    // Compensate for the mouse pointer's location in the title
    bar.
    var tempX:int = event.currentTarget.mouseX - xOff;
    event.dragInitiator.x = tempX;
    var tempY:int = event.currentTarget.mouseY - yOff;
    event.dragInitiator.y = tempY;
    nonMemberFilters.addChild(Panel(event.dragInitiator));
    // Put the dragged panel on top of all other components.
    nonMemberFilters.setChildIndex(Panel(event.dragInitiator),
    nonMemberFilters.numChildren-1);
    public function createPanels():void
    for(x=0; x<5; x++) {
    // create each new panel and add it to the parent canvas
    var filterData:Panel = new Panel();
    filterData.id = "id__" + x;
    filterData.title = "Panel-" + x;
    filterData.addEventListener(MouseEvent.MOUSE_DOWN,
    tbMouseMoveHandler);
    memberFilters.addChild(filterData);
    ]]>
    </mx:Script>
    <mx:Canvas id="memberFilters"
    width="680" height="275"
    borderStyle="solid"
    backgroundColor="#B6FABB"
    x="10" y="10"
    dragEnter="doDragEnter(event);"
    dragDrop="doDragDrop1(event);">
    </mx:Canvas>
    <mx:Canvas id="nonMemberFilters"
    width="680" height="275"
    borderStyle="solid"
    backgroundColor="#FBB7B7"
    x="10" y="325"
    dragEnter="doDragEnter(event);"
    dragDrop="doDragDrop2(event);">
    </mx:Canvas>
    </mx:Application>

  • Panel - Maximum number of components

    Taking a Panel or any Layout (eg.GridLayout), how can I calculate the maximum number of components a panel or layout can hold?

    int counter = 0
    while(true){
      myComponent.add(new JPanel());
      System.out.println(counter++);
    }each layout has a set number of components it can hold. If you cant find documentation on it, run this and look at the last output before it crashes.
    fyi, boxLayout = 512 iirc... a problem I had about a week ago.

  • Jdev 11g - ADF Faces - Restrict dragging panelSpiltter to certain point

    Hi all,
    I have 2 issues,
    1) How can i have vertical separator between components like ( Vertical line b/w praveen and Logged In As)
    Label praveen *|* Logged In As praveeng *|* Log out.
    2) Can i restrict dragging panel Splitter to a certain point, i.e i should not able to drag beyond that point.
    Is their any property like max Height in case of Vertical Splitter.
    Regards
    Praveen

    Hi
    Sometimes you have to explain to the powers that be that
    a) The requirement cannot be done with the tool
    b) It can be done but will be expensive time wise
    c) That the requirement is a "nice to have" and not a "must have"
    IMHO Sometimes we need to explain that a particular requirement doesn't make sense.
    In this case if the user drags the splitter too far they can simply drag it back again.
    Good Luck
    Paul

  • Change order of components in FlowPane

    I'm interested how I can change with mouse drag and drop the order of components in FlowPane. I have a example which can work with TabPane and drag tabs between two TabPanes:
    public class DragPanel {
        private static final String TAB_DRAG_KEY = "panel";
        private static ObjectProperty<Tab> draggingTab = new SimpleObjectProperty<>();
        // Drag Panel
        public static Tab makePanelDrag(final Tab tabA, final Label tabALabel)
            tabALabel.setOnDragDetected(new EventHandler<MouseEvent>()
                @Override
                public void handle(MouseEvent event)
                    Dragboard dragboard = tabALabel.startDragAndDrop(TransferMode.MOVE);
                    ClipboardContent clipboardContent = new ClipboardContent();
                    clipboardContent.putString(TAB_DRAG_KEY);
                    dragboard.setContent(clipboardContent);
                    draggingTab.set(tabA);
                    DragBuffer.setDraggingTab(draggingTab);
                    // For Java 8
                    // Make screenshot of the dragged component
                    //Image img = tabALabel.snapshot(null, null);
                    //dragboard.setDragView(img, 7, 7);
                    //tabA.getTabPane().getTabs().remove(tabA);
                    event.consume();
            return tabA;
        // Drop Tab
        public static TabPane makeTabDrop(final TabPane tabPane)
            tabPane.setOnDragEntered(new EventHandler<DragEvent>()
                @Override
                public void handle(DragEvent event)
                    /* the drag-and-drop gesture entered the target */
                    /* show to the user that it is an actual gesture target */
                    if (event.getGestureSource() != tabPane && event.getDragboard().hasString())
                        tabPane.setCursor(Cursor.MOVE);
                        // Add Glow effect when the mouse holds object over the TabPane
                        tabPane.setEffect(new Glow(0.5));
                    event.consume();
            tabPane.setOnDragExited(new EventHandler<DragEvent>()
                @Override
                public void handle(DragEvent event)
                    /* mouse moved away, remove the graphical cues */
                    tabPane.setCursor(Cursor.DEFAULT);
                    // Remove the Glow effect when the mouse is not over the tabPane with Object
                    tabPane.setEffect(new Glow(0.0));
                    event.consume();
            tabPane.setOnDragOver(new EventHandler<DragEvent>()
                @Override
                public void handle(DragEvent event)
                    final Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()
                            && TAB_DRAG_KEY.equals(dragboard.getString())
                            && DragBuffer.getDraggingTab().get() != null
                            && DragBuffer.getDraggingTab().get().getTabPane() != tabPane)
                        event.acceptTransferModes(TransferMode.MOVE);
                        event.consume();
            tabPane.setOnDragDropped(new EventHandler<DragEvent>()
                @Override
                public void handle(DragEvent event)
                    final Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()
                            && TAB_DRAG_KEY.equals(dragboard.getString())
                            && DragBuffer.getDraggingTab().get() != null
                            && DragBuffer.getDraggingTab().get().getTabPane() != tabPane)
                        final Tab tab = DragBuffer.getDraggingTab().get();
                        tab.getTabPane().getTabs().remove(tab);
                        tabPane.getTabs().add(tab);
                        // Tempolary fix
                        new Timeline(new KeyFrame(Duration.millis(100), new EventHandler<ActionEvent>()
                            @Override
                            public void handle(ActionEvent event)
                                tabPane.getSelectionModel().select(tab);
                        })).play();
                        event.setDropCompleted(true);
                        DragBuffer.getDraggingTab().set(null);
                        event.consume();
            return tabPane;
    The question is how I can get the position of the component insight the FlowPane and change the order when I drop the component?
    P.S
    I have a FlowPane with many small panels which are BorderPanes. I want to change the order of the BorderPanes with mouse drag and drop. But I'm sure that this functionality for now is not possible. So I think that I can solve this issue in other way.
     I can insert additional component which will be inserted into the FlowPane and will hold the BorderPane: 
    FlowPane -> component -> BorderPane 
    I can add setOnDragDetected() and setOnDragDropped to the component in order to implement the drag and drop.
    The question is which component will be suitable for this task? I need to make it transparent and it must be auto resizable because the BorderPanes can expand and shrink. Can you give me some advice? 
    Regards

    Great! Your example is not working properly on JVM 7_25 but it's working on JVM 8 b100. I get this error message:
    Executing com.javafx.main.Main from /home/rcbandit/Desktop/test/DX-57DC/dist/run652386450/DX-57DC.jar using platform /opt/jdk1.7.0_25/bin/java
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragEnter(Scene.java:2523)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$1.run(GlassSceneDnDEventHandler.java:63)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$1.run(GlassSceneDnDEventHandler.java:54)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragEnter(GlassSceneDnDEventHandler.java:54)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragEnter(GlassViewEventHandler.java:395)
        at com.sun.glass.ui.View.handleDragEnter(View.java:692)
        at com.sun.glass.ui.View.notifyDragEnter(View.java:1005)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)
    Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: null
        at java.lang.Integer.parseInt(Integer.java:454)
        at java.lang.Integer.parseInt(Integer.java:527)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:58)
        at com.dx57dc.main.DX57DC$2.handle(DX57DC.java:52)
        at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
        at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
        at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
        at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
        at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
        at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
        at javafx.event.Event.fireEvent(Event.java:171)
        at javafx.scene.Scene$DnDGesture.fireEvent(Scene.java:2631)
        at javafx.scene.Scene$DnDGesture.processTargetEnterOver(Scene.java:2780)
        at javafx.scene.Scene$DnDGesture.access$6100(Scene.java:2607)
        at javafx.scene.Scene$DropTargetListener.dragOver(Scene.java:2534)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:126)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler$4.run(GlassSceneDnDEventHandler.java:117)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragOver(GlassSceneDnDEventHandler.java:117)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragOver(GlassViewEventHandler.java:422)
        at com.sun.glass.ui.View.handleDragOver(View.java:701)
        at com.sun.glass.ui.View.notifyDragOver(View.java:1010)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystemImpl(Native Method)
        at com.sun.glass.ui.gtk.GtkDnDClipboard.pushToSystem(GtkDnDClipboard.java:24)
        at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
        at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
        at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:197)
        at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1195)
        at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2652)
        at javafx.scene.Scene$DnDGesture.process(Scene.java:2713)
        at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2607)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3344)
        at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
        at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
        at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
        at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
        at java.security.AccessController.doPrivileged(Native Method)
        at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
        at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
        at com.sun.glass.ui.View.notifyMouse(View.java:922)
        at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
        at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
        at java.lang.Thread.run(Thread.java:724)

  • Style Message in design view with Apache Trinidad HTML components

    Hi !!!
    I'm using Apache Trinidad HTML components. In that components after using Table Layout I'm trying to use Row layout after dragging the row layout to the design view the following message is appearing in the design view, the same is happening in the browser window also.
    style="position:absolute;width:auto;height:auto;top:0px;left:0px;bottom:0px;right:0px"
    Thanks in Advance
    Anil Kumar Golla

    Ric,
    First I created an application by selecting New Application from the Application Navigator. In that application window I submitted relevant names for creating the new application, after that it displayed the project window in that I given the project name then in Jdeveloper's Application window the project name is displayed from there I selected new by right clicking, in that New gallery window, I selected Web Tier > Page Template > Ok. In the Create Jsf Page template window I created a File Name and Facet Definitions namely North, West, East, South and Center. After that Jdeveloper created the new JSPX page. In that page first I dragged panel stretch layout from Adf Faces to the Jdeveloper's design view and given facet references (North, West, East, South and Center). In the North Portion I dragged the Apache Trinidad HTML's Table Layout component, after that Row layout, then in the design window I'm getting the "style="position:absolute;width:auto;height:auto;top:0px;left:0px;bottom:0px;right:0px". The same is displaying in the browser window also.
    Thanks in Advance
    Anil Golla

  • Control Panel text tool options switched places

    Hello there!
    Prologue: I've been searching for a solution for this problem and couldn't find any. Perhaps I don't know how to search properly. The problem itself isn't catastrophic yet it is really annoying to me, as I like to work quickly and everything has to be on its place (OCD?).
    Problem: Once I opened again my InDesign (CS6 v 8.0.2) and when using Text tool, I noticed its options has changed places and I don't manage to change it back. It is hard to describe the problem in words but I uploaded the image. Hopefully this helps to solve it:
    Thank you for your time!

    It solved my problem! I kept trying to drag panels into their places, also checking preferences, workplace options and everything else.
    I can now finally work in peace, without being confused all the time, thank you very much, Eugene.

  • Putting a panel using null layout in in a JScrollPane

    Hi,
    I'm trying to create a form for the screen which looks exactly like its equivalent on paper. The form has a grid of cells that can be typed into.
    My approach so far has been to use a JTextPane for each cell and use absolute positioning to put these onto a JPanel with a null layout.
    This has worked well so far, but the JPanel is taller than the screen so I want to put it inside a JScrollPane.
    However the scrollbars don't show up.
    Can someone point out what I need to implement to be able to scroll my null layout JPanel in a JScrollPane.
    Thanks.

    That was nice and simple. The Duke's are yours.
    One problem leads to another unfortunately.
    I want the form to be centered so I put it in another JPanel with BorderLayout then put that in the JScrollPane. Unfortunately it is not centred.
    JPanel nullLayoutPanel = new JPanel();
    nullLayoutPanel.setLayout(null);
    // layout components on panel
    JPanel panelToKeepFormCentered= new JPanel(new BorderLayout());
    panelToKeepFormCentered.add(nullLayoutPanel, BorderLayout.CENTER);
    JFrame frame = new JFrame();
    frame.getContentPane().add(new JScrollPane(panelToKeepFormCentered));Hope it is clear what I'm trying to achieve.
    When the JFrame is smaller than the form (the nullLayoutPanel), scrollbars should show (they do now thanks to Noah).
    When the JFrame is bigger than the form, the form's JPanel should be centred in the JFrame with blank space around.
    Thanks.

  • Improper allignment with ADF UI components

    Hi Every One
    When I am trying to build ADF UI Components using jspx page, I could not able to arrange varios ADF UI components like af:selectInputText,af:horizentalPannel properly. They are not alligned properly. Is there any way to allign UI components in order ?
    Thanks in Advance
    ivaR

    I am using af:pannelPage, Which consists of different ADF Faces Core components like :
    af:inputText
    af:selectInputText
    af:panelHorizontal
    af:outputLabel
    af:selectOneChoice.
    .. Like this i have 30 ui components need to be displayed in my jspx page.
    So when Iam trying to place all these UI components on panel page, all these components placed in irregular order. I want to place all components in tabular form with clear allignment.
    Can you please suggest me best practices or Tips to acheive this.
    Thanks in Advance
    ivaR
    Message was edited by:
    user616296

Maybe you are looking for

  • Ipod nano 6th generation isn't recognized by computer or iTunes

    computer doesn't recognize ipod nano 6th generation

  • How to convert date format?

    HI, I want to convert one kind of data format like default to another kind of format like "DD/MM/YY". I remember I should use SimpleDateFormat class , but I fogot how to use it . Thanks gary

  • Can someone monitor your bbm messages

    Good day I would like to find out if it is possible for someone to monitor a persons bbm chats  and if it is possible how can I prevent it  thank you

  • Trouble when hibernating through HAL

    Hello there, I've set up suspending to disk today on my laptop following the wiki article referred to that and using uswsusp and hibernate-script. All goes fine when I run 'hibernate' from the command line as root: RAM image saved to swap and recover

  • Code for "not like"

    Hi, What is the code for "Not Like" in Oracle? For Example, I want to find out records that does not contain the charactor "RT". Thanks. Jun