Package org.apache.isis.viewer.dnd.viewer.basic

Examples of org.apache.isis.viewer.dnd.viewer.basic.TableFocusManager


                final ScrollBorder scrollingView = new ScrollBorder(view);
                // note - the next call needs to be after the creation of the
                // window border
                // so that it exists when the header is set up
                scrollingView.setTopHeader(new TableHeader(view.getContent(), axes.getAxis(TableAxis.class)));
                scrollingView.setFocusManager(new TableFocusManager(scrollingView));
                return scrollingView;

            }
        });
View Full Code Here


                final View viewWithWindowBorder = scrollingView;
                // note - the next call needs to be after the creation of the
                // window border so
                // that it exists when the header is set up
                scrollingView.setTopHeader(new TableHeader(view.getContent(), axes.getAxis(TableAxis.class)));
                viewWithWindowBorder.setFocusManager(new TableFocusManager(viewWithWindowBorder));
                return viewWithWindowBorder;
            }
        });

    }
View Full Code Here

                final ScrollBorder scrollingView = new ScrollBorder(view);
                final View viewWithWindowBorder = scrollingView;
                // note - the next call needs to be after the creation of the window border so
                // that it exists when the header is set up
                scrollingView.setTopHeader(new TableHeader(view.getContent(), axes.getAxis(TableAxis.class)));
                viewWithWindowBorder.setFocusManager(new TableFocusManager(viewWithWindowBorder));
                return viewWithWindowBorder;
            }
        });

    }
View Full Code Here

            public View decorate(final View view, final Axes axes) {
                final ScrollBorder scrollingView = new ScrollBorder(view);
                // note - the next call needs to be after the creation of the window border
                // so that it exists when the header is set up
                scrollingView.setTopHeader(new TableHeader(view.getContent(), axes.getAxis(TableAxis.class)));
                scrollingView.setFocusManager(new TableFocusManager(scrollingView));
                return scrollingView;

            }
        });
View Full Code Here

TOP

Related Classes of org.apache.isis.viewer.dnd.viewer.basic.TableFocusManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.