Examples of CssMenuLinkFactory


Examples of org.apache.isis.viewer.wicket.ui.components.widgets.cssmenu.CssMenuLinkFactory

                final MemberOrderFacet m1 = o1.getFacet(MemberOrderFacet.class);
                final MemberOrderFacet m2 = o2.getFacet(MemberOrderFacet.class);
                return memberOrderFacetComparator.compare(m1, m2);
            }});
       
        final CssMenuLinkFactory linkFactory = new EntityActionLinkFactory(entityModel);
   
        return Lists.transform(userActions, new Function<ObjectAction, LinkAndLabel>(){
   
            @Override
            public LinkAndLabel apply(ObjectAction objectAction) {
                return linkFactory.newLink(adapterMemento, objectAction, LinksSelectorPanelAbstract.ID_ADDITIONAL_LINK);
            }});
    }
View Full Code Here

Examples of org.apache.isis.viewer.wicket.ui.components.widgets.cssmenu.CssMenuLinkFactory

            permanentlyHide(ID_ENTITY_ACTIONS);
            return;
        }
       
        if(!bulkActions.isEmpty()) {
            final CssMenuLinkFactory linkFactory = new BulkActionsLinkFactory(model, dataTable);

            final CssMenuBuilder cssMenuBuilder = new CssMenuBuilder(null, getServiceAdapters(), bulkActions, linkFactory);
            // TODO: i18n
            final CssMenuPanel cssMenuPanel = cssMenuBuilder.buildPanel(ID_ENTITY_ACTIONS, "Actions");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.