ionic-modal-select
ionic-modal-select copied to clipboard
Modal select for Ionic Framework
`$scope.testfunc = function (blah) { return "test"; }` ` {{testfunc(option)}} `
dual of "on-close"
Is there a way to show the modal programmatically instead of via a click from the user?
First, thank you for this module, it is simple and useful. I made some personal adjustments that I would love to share and make it available in the main repo....
I want to use the scroll delegate before the search input, how to do it with current interface?
HTML ` Select it {{option.AccountName}} ` Controller $scope.AccountList = []; $scope.FillAccountList = function () { var query = "SELECT AccountID, AccountName FROM AccountMaster order by AccountName"; $cordovaSQLite.execute(db, query, []).then(function (res)...
In case of many instances of the directive in a single page, many modals are instantiated. If the ionic-modal components share the same options, they could probably share a single...
sometimes we want display some option items with other class, e.g. disabled, and which is unselectable, but current implement does not allow us to do that.