{{ 'OPTIONS_DIALOG' | translate }}

{{ 'OPEN_OPTIONS' | translate }}

{{:: 'CODE' | translate}}

             pipOptionsDialog.show(
                    {
                        event: event,
                        title: 'Choose Option',
                        options: [
                            { icon: 'star', name: 'option_1', title: 'Option 1', active: true },
                            { icon: 'star', name: 'option_2', title: 'Option 2' },
                            { icon: 'star', name: 'option_3', title: 'Option 3' },
                            { name: 'option_4', title: 'Option 4' },
                            { name: 'option_5', title: 'Option 5' }
                        ]
                    },
                    function(option) {
                        var optionName = option ? option.name : null;
                        console.log('Selected option: ' + optionName);
                    }
                );
        
{{ 'OPEN_OPTIONS_BIG' | translate }}

{{:: 'CODE' | translate}}

             pipOptionsBigDialog.show(
                    {
                        event: event,
                        noActions: true,
                        options: [
                            {
                                name: 'option_1',
                                title: 'Option 1',
                                subtitle: 'Assertively engineer stand-alone information vis-a-vis ethical partnerships. ' +
                                'Dynamically extend accurate data after strategic infrastructures. ' +
                                'Globally matrix intuitive potentialities without',
                                active: true
                            },
                            {
                                name: 'option_2',
                                title: 'Option 2',
                                subtitle: 'A goal, that is not important by itself and only needed as a step toward a bigger goal'
                            },
                            {name: 'option_3', title: 'Option 3', subtitle: 'Small subtitle'},
                            {
                                name: 'option_4',
                                title: 'Big title: Energistically transition multimedia based ideas without ' +
                                'mission-critical schemas. 4',
                                subtitle: 'Small subtitle'
                            }

                        ]
                    },
                    function (option) {
                        var optionName = option ? option.option.name : null;
                        console.log('Selected option: ' + optionName);
                    }
                );
        
{{ 'OPEN_OPTIONS_BIG_CONTRIBS' | translate }}

{{:: 'CODE' | translate}}

             pipOptionsBigDialog.show(
                    {
                        event: event,
                        options: [
                            {
                                name: 'option_1',
                                text: '<b>Plan</b> tasks and do all to perform it',
                                active: true
                            },
                            {
                                name: 'option_2',
                                text: 'Assertively engineer stand-alone information vis-a-vis ethical partnerships. ' +
                                'Dynamically extend accurate data after strategic infrastructures. ' +
                                'Globally matrix intuitive potentialities without',
                                active: true
                            },

                        ]
                    },
                    function (option) {
                        var optionName = option ? option.name : null;
                        console.log('Selected option: ' + optionName);
                    }
                );
        
{{ 'OPEN_ROLE_DIALOG' | translate }}

{{:: 'CODE' | translate}}

             pipOptionsBigDialog.show(
                    {
                        event: event,
                        noActions: true,
                        noTitle: true,
                        hint: 'Professionally streamline flexible solutions with adaptive mindshare. ' +
                        'Efficiently leverage other\'s.',
                        options: [
                            {
                                name: 'option_1',
                                title: 'Option 1',
                                subtitle: 'Assertively engineer stand-alone information vis-a-vis ethical partnerships. ' +
                                'Dynamically extend accurate data after strategic infrastructures. ' +
                                'Globally matrix intuitive potentialities without',
                                active: true
                            },
                            {
                                name: 'option_2',
                                title: 'Option 2',
                                subtitle: 'A goal, that is not important by itself and only needed as a step toward a bigger goal'
                            },
                            {name: 'option_3', title: 'Option 3', subtitle: 'Small subtitle'},
                            {
                                name: 'option_4',
                                title: 'Big title: Energistically transition multimedia based ideas without ' +
                                'mission-critical schemas. 4',
                                subtitle: 'Small subtitle'
                            }

                        ]
                    },
                    function (option) {
                        var optionName = option ? option.option.name : null;
                        console.log('Selected option: ' + optionName);
                    }
                );