AaronDavidNewman / Smoosic

A music notation editor written in javascript
Other
100 stars 14 forks source link

Need Save Button like File button #25

Closed vgulshan1985 closed 4 years ago

vgulshan1985 commented 4 years ago

Hi @AaronDavidNewman,

I want to add Save Button Left left side Like File.

Functionality will remain same as we have under File menu.

You can see in attached screen shot:

Thanks, Gulshan image_2020_08_06T12_34_29_887Z

vgulshan1985 commented 4 years ago

Hi @AaronDavidNewman,

I want to add Save Button Left left side Like File.

Functionality will remain same as we have under File menu.

You can see in attached screen shot:

Thanks, Gulshan image_2020_08_06T12_34_29_887Z

@AaronDavidNewman Can you please help in that? Help will be appreciated.

Thanks, Gulshan

AaronDavidNewman commented 4 years ago

In defaultRibbon.js, you can add a button to the leftButtons like:

             {
                leftText: 'Save Answer',
                rightText: '',
                icon: '',
                classes: 'icon ',
                action: 'modal',
                ctor: 'SuiSaveFileDialog',
                group: 'scoreEdit',
                id: 'saveAnswerModal'
            }

And also add the saveAnswerModal id to the left button array.

vgulshan1985 commented 4 years ago

Thanks a lot @AaronDavidNewman It really helped.