Class: Radio maps.nyc.gov

nyc.Radio

new Radio(options)

Collapsible radio buttons
Parameters:
Name Type Description
options nyc.Collapsible.Options Constructor options
Source:

Extends

Members

(static) uniqueId

Used to generate DOM ids
Source:

currentVal :JQuery

A JQuery element used to display a readable representation of the current value
Type:
  • JQuery
Inherited From:
Source:

Methods

disabled(choiceValue, enabled)

Enable/disable a radio button
Parameters:
Name Type Description
choiceValue string The value of the radio button to disable/enable
enabled boolean The value of enabled
Source:

off(eventName, evtHdlr, hdlrScopeopt)

Remove a previously connected event handler
Parameters:
Name Type Attributes Description
eventName string The name of the event to which the handler will be connected
evtHdlr function The event handler function
hdlrScope Object <optional>
The scope in which to invoke the event handler
Inherited From:
Source:

on(eventName, evtHdlr, hdlrScopeopt)

Connect a function to an event
Parameters:
Name Type Attributes Description
eventName string The name of the event to which the handler will be connected
evtHdlr function The event handler function
hdlrScope Object <optional>
The scope in which to invoke the event handler
Inherited From:
Source:

one(eventName, evtHdlr, hdlrScopeopt)

Connect a function to an event for a single invocation
Parameters:
Name Type Attributes Description
eventName string The name of the event to which the handler will be connected
evtHdlr function The event handler function
hdlrScope Object <optional>
The scope in which to invoke the event handler
Inherited From:
Source:

trigger(eventName, dataopt)

Trigger a named event with event data
Parameters:
Name Type Attributes Description
eventName string The name of the event to trigger
data Object <optional>
The event data
Inherited From:
Source:

val() → {string}

Returns the value of the radio button collection
Source:
Returns:
The value of the radio button collection
Type
string