Skip to content

ChangYinShung/ionic-input-clearable

 
 

Repository files navigation

ionic-input-clearable

An Ionic AngularJS directive for adding a clear button to an input element.

#Table of contents

Demo

See it in action in the following image:

demo

Introduction

For one of my private projects, I needed a clearable input field component in Ionic (like jquery mobile one). I searched a lot and found some plain Angular clearable input field, but these had too much other dependencies and mostly didn't look that good within Ionic. Then . So I spent some time to create my one.

Features

The ionic-input-clearable component has the following features:

  • add clear button on the right side of the input field

Ionic compatibility

Tested on Ionic version 1.3.1

Installation

  1. Import the ionic-input-clearable javascript and css file into your HTML file:
<script src="sw2.ionic.input-clearable.js"></script>
<link href="sw2.ionic.input-clearable.css" rel="stylesheet">
  1. Add sw2.ionic.input-clearable as a dependency on your Ionic app:
angular.module('myApp', [
  'ionic',
  'sw2.ionic.input-clearable'
]);

Usage

To use the ionic-input-clearable directive you need set add ionic-input-clearable attribute to input field:

<input ng-model="searchkey" type="text" ionic-input-clearable />

REMARK: In order to let the clear button is clickable, please use "div" instead of "label" to wrap your input field.

Options

Add attribute:

"data-hideClearBtnOnBlur": hide the clear button when INPUT is blur

"data-input-clear-btn-class": change clear button class (default: ion-close)

<input ng-model="searchkey" type="text" ionic-input-clearable data-hideClearBtnOnBlur data-input-clear-btn-class="ion-close-circled" />

Version

v1.0.3 (2016-08-30)

  1. Add option to control the class for input clear button

v1.0.2 (2016-08-26)

  1. Minification and IE issue fix (by: monavari-lebrecht) [REMOVED, TO FIX]

  2. Add bower.json

v1.0.1 (2016-07-24)

  1. Add option for hide clear button on blur (same as ios style). (by: mopi1402)

  2. Bug fix for determine if element value is element. (by: mopi1402)

  3. Add CSS fade in/out effect to cancel button.

v1.0.0 (2016-07-19)

  1. Initial release

To do

  1. Set focus to input when user click on clear button.

  2. Add option to have a call back function after clicked on clear button.

... any other idea is welcome.

License

This Ionic clearable directive is available under the MIT license.

(c) sw2sonic | sw2hk.com

About

An Ionic AngularJS directive for adding a clear button to an input element.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.3%
  • CSS 14.5%
  • HTML 0.2%