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

gemini-radiobox

v1.0.0

Published

A full-featured radiobox jquery plugin

Downloads

2

Readme

gemini-radiobox

A full-featured radiobox jquery plugin

Date Image Gemini Checkbox

Features

  • Supports more configurable options.
  • Supports more methods
  • Supports more events
  • Supports fast internationalization
  • Cross-browser support

Example image

Type: radiobox

RadioBox

Type: radiobutton

RadioButton

Getting started

Quick start

  • Clone the repository: git clone https://github.com/gregzhang616/gemini-radiobox.git.
  • Install with Npm: npm install gemini-radiobox.
  • Install with Bower: bower install gemini-radiobox.

Installation

Include files:

Css file

<link rel="stylesheet" href="/css/gemini.radiobox.min.css">

Javascript file

<script src="/assets/js/jquery.min.js"></script>
<script src="/js/gemini.radiobox.min.js"></script>

Attributes

You may set checkbox options with $().radiobox(options), the options type is Object.

| Name | Type | Default value | Optional value | Description | | :--- | :--- | :--- | :--- | :--- | | type | String | 'radiobox' | radiobox/radiobutton | the type of radio | | name | String | '' | -- | native attribute for radio | | radiolist | String/Array | '' | -- | rendered data for radio, type is String or Array, such as 'Agree' or ['JD', 'Alibaba'] or [{label: 'JD', value: 1}, {label: 'Alibaba', value: 2}] | | disabled | Boolean/Array | null | -- | disabled data for radio, such as true/false or ['JD'] or [1] | | defaultValue | Boolean/Array | null | -- | default value for radiobox or radiobutton. | | size | String | 'small' | small/medium/large | The size for radiobox or radiobutton. |

Methods

Common usage

$().radiobox(methodName, argument1, argument2, ..., argumentN);
setValue(value)

Set the current value with a new value, parameter value type is Boolean or Array .

$().radiobox('setValue', true);
$().radiobox('setValue', ['JD', 'Alibaba']);
$().radiobox('setValue', [1, 2]);
getValue()

Get the current checked value.

$().radiobox('getValue');
reset()

reset the radiobox checked status.

$().radiobox('reset');
disable(value)

disable or enable the radiobox or radiobutton.

// disable the single radiobox
$().radiobox('disable', true);
// enable the single radiobox
$().radiobox('disable', false);

// disable the radiobox/radiobutton group item
$().radiobox('disable', ['JD', ...]); or $().checkbox('disable', [1, ...]);
// disable the all the radiobox/radiobutton item
$().radiobox('disable'); 
// enable the all the radiobox/radiobutton item
$().radiobox('disable', []);
destroy()

Destroy the radiobox and remove the instance from target element.

$().radiobox('destroy');

Events

Common usage

$().on(eventName, function (e, arguments) {
  // todo
});
change.radiobox

This event fires when checked value is changed.

  • event ( Type: Object )
    • newValue ( Type: Boolean/Array )
$().on('change.radiobox', function (event) {
  console.log('newValue: ' + event.newValue);
});
click.radiobox

This event fires when radiobox/radiobutton item is clicked.

$().on('click.radiobox', function (event) {
  // todo
});

Callbacks

Common usage

$().datepicker({
    CallbackName: function () {
      // todo
    }
});
onChange

A shortcut of the "change.radiobox" event, this callback called when checked value is changed.

$().radiobox({
    onChange: function (event) {
      console.log('newValue: ' + event.newValue);
    }
});
onClick

A shortcut of the "click.radiobox" event, this callback called when radiobox/radiobutton item is clicked.

$().radiobox({
    onClick: function (event) {
      console.log('newValue: ' + event.newValue);
    }
});

Run example

Please download the project, and then enter into this directory.(download gulp-sass plugin need to connect vpn)

  • npm install
  • gulp
  • Access "http://localhost:8888/examples/index.html" in browser

Browser support

  • Chrome Most versions
  • Firefox Most versions
  • Safari Most versions
  • Opera Most versions
  • Edge Most versions
  • Internet Explorer 8+

Author

Greg Zhang from Asiainfo ([email protected]).