I'm new at Ionic2 and angular2.
I use ion-select plugin. This plugin display popup with options-list by radio-buttons, and to "submit" buttons - OK and Cancel.
I want to let user see third option - "Clear Selection". Is this plugin support this feature? If not - what is the best way to do it?
There is no way to add additional button to select popup: https://ionicframework.com/docs/v2/api/components/select/Select/ - you can just set text for buttons.
You should use AlertController for that - it allows you to create buttons. Here is a good example: https://github.com/driftyco/ionic-preview-app/blob/master/src/pages/alerts/radio/pages.ts
Unfortunately 3rd button will damage alert UI, so you need to create some css to fix it.