Example #1
0
 public static PageToolbar AddComponent <TComponent>(
     this PageToolbar toolbar,
     object argument           = null,
     int order                 = 0,
     string requiredPolicyName = null)
 {
     return(toolbar.AddComponent(
                typeof(TComponent),
                argument,
                order,
                requiredPolicyName
                ));
 }
Example #2
0
        public static PageToolbar AddComponent(
            this PageToolbar toolbar,
            Type componentType,
            object argument           = null,
            int order                 = 0,
            string requiredPolicyName = null)
        {
            toolbar.Contributors.Add(
                new SimplePageToolbarContributor(
                    componentType,
                    argument,
                    order,
                    requiredPolicyName
                    )
                );

            return(toolbar);
        }
Example #3
0
        public static PageToolbar AddButton(
            this PageToolbar toolbar,
            ILocalizableString text,
            string icon = null,
            string name = null,
            string id   = null,
            ILocalizableString busyText = null,
            FontIconType iconType       = FontIconType.FontAwesome,
            AbpButtonType type          = AbpButtonType.Primary,
            AbpButtonSize size          = AbpButtonSize.Small,
            bool disabled             = false,
            int order                 = 0,
            string requiredPolicyName = null)
        {
            if (busyText == null)
            {
                busyText = new LocalizableString(typeof(AbpUiResource), "ProcessingWithThreeDot");
            }

            toolbar.AddComponent <AbpPageToolbarButtonViewComponent>(
                new
            {
                text,
                icon,
                name,
                id,
                busyText,
                iconType,
                type,
                size,
                disabled
            },
                order,
                requiredPolicyName
                );

            return(toolbar);
        }