npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ionic-select-control

v1.10.1

Published

Skinnable select control for Ionic framework

Downloads

23

Readme

ionic-Select-Control

Description

This is a customizable select box for ionic 1 framework. While the package name is "ionic-select-control", the module name is "$selectBox".

Dependencies

This component uses ionic-modal and ionic-list from ionic framework components. Clicking outside the modal won't close it.

How to use

  1. Install with bower/npm:

bower install ionic-select-control --save npm install ionic-select-control --save

  1. Include as a dependency of your angular module:
angular.module('myApp', ['ionic', '$selectBox'])
  1. Include necessary files in your index.html header, for example linking directly to files where bower component was installed:
   <link rel="stylesheet" href="lib/ionic-select-control/dist/SelectBox.min.css" >

   <script type="text/javascript" src="lib/ionic-select-control/dist/SelectBox.min.js"></script>
  1. Use the select-box directive:
  <select-box ng-Selected-Value="selectedValue"
          		ng-Item-Name="label"
          		ng-Item-Id="id"
          		ng-title="Select something!"
          		ng-data="mySelectedValue"
          		ng-placeholder="nothing selected!"
          		ng-select-changed="doSomethingWithSelectedValue(selectedValue)"
          		ng-placeholder-class="myPlaceholderStyle"
				ngHtmlName="optionalHiddenFieldName"
				ngIsRequired="true"
				ngPopup=true
				ngPopupClass="myIonicPopupClass"
          		>

</select-box>

Directive parameters

| Name | Description |Remark | | :------------- | :------------- | :------------- | |ng-Selected-Value|Scope variable that will get populated with selected option value|Required. Updated using two-way binding. It is the internal ng-model of the component's hidden field.| |ng-data|Scope object passed to SelectBox, format: list of object with two properties, one for label, one for value|Required.| |ng-Item-Name|Name of property for label, in scope object passed to SelectBox|Required.| |ng-Item-Id|Name of property for value, in scope object passed to SelectBox|Required.| |ng-placeholder|Placeholder string when no value is selected|Required.| |ng-title|Title of SelectBox|Required.| |ng-select-changed|JS function to execute after item selection.|Optional. This function argument name should be 'selectedValue', both in your controller function declaration and in SelectBox ng-select-changed attribute value (function call).| |ng-placeholder-class|CSS class to apply to placeholder|Optional.| |ng-select-box-class|CSS class to apply to whole select box control|Optional.| |ngHtmlName|String.Allows you to bind an name attribute on the hidden input (useful for form validation)|Optional.| |ngIsRequired|Boolean, truthy.Allows you to make the hidden input required (useful for form validation)|Optional.| |ngPopup|Boolean, truthy.Allows using ionicPopup service instead of ionicModal (it is more elegant for some cases)|Optional.| |ngPopupClass|String.Allows you to bind CSS classes to the ionicPopup configuration|Optional.|

Example of object for ng-data:

var obj = [
 {label: "Value1", id:"1"},
 {label: "Value2", id:"2"},
 {label: "Value3", id:"3"},
 {label: "Value4", id:"4"}
]

Tests

In "test" root folder, there are some html test pages with different configurations, stylings. They don't require a web server to be opened, thus are kept basic. Used libraries (ionic bundle, angular translate) are stored in "lib" root folder.

History

Version 1.10.1

  • Fix missing function (https://github.com/OSAMES/ionic-Select-Control/issues/19).

Version 1.10.0

  • Merged pull request "Fix stuck placeholder in Safari 11 /iOS 11. Support popup-class for modal mode too." Thanks again amplexdenmark.

Versions 1.9.0, 1.9.1

  • Merged pull request "HTML field name, required attr, popup alternative, popup class". Thanks aless673. Updated Readme.md.

Version 1.8.1

  • Merged pull request "Make sure it works from a popup, popover, modal". Thanks amplexdenmark.

Version 1.8.0

  • Added whole component styling option.

Version 1.7.0

  • Added placeholder styling option.

Version 1.6.1

  • Fixed "main" section in bower.json.

Version 1.6.0

  • Added support for external change value Thanks ivomans.
  • Improved Readme.

Version 1.5.3

  • Added a "main" section in bower.json (support for main-bower-files gulp plugin).

Version 1.5.2

  • Added ability to clear selection when setting null value to scope object associated to "ng-Selected-Value" selectBox attribute.
  • Regression in version 1.5.0 fixed in 1.5.2, please don't use 1.5.0.

Version 1.4.0

  • Added Gulp tasks to minify and uglify source and stylesheet.

Version 1.3.0

  • Disallow modal closing when clicking outside the modal.

Version 1.2.0

  • Fixed javascript error when destroying scope without opening modal ($scope.modal undefined).

Version 1.1.0

  • Component properly refreshes when scope changes.
  • Test pages reworked.
  • Readme fix and improvement.

Versions 1.0.1 and 1.0.2

  • MIT license added + Readme fix.

Version 1.0.0

  • Addition of ng-select-changed attribute to hook a function to handle selected value. (postb99 new fork, from dslack fork).
  • Added Header class support to better integrate with apps (dslack fork).

Contributors