Gets or sets an object that contains all localizable strings in the Wijmo library.
The culture selector is a two-letter string that represents an ISO 639 culture.
Adds a class to an element.
Element that will have the class added.
Class (or space-separated list of classes) to add to the element.
Calls a function on a timer with a parameter varying between zero and one.
Use this function to create animations by modifying document properties or styles on a timer.
For example, the code below changes the opacity of an element from zero to one in one second:
var element = document.getElementById('someElement'); animate(function(pct) { element.style.opacity = pct; }, 1000);
The function returns an interval ID that you can use to stop the animation. This is typically done when you are starting a new animation and wish to suspend other on-going animations on the same element. For example, the code below keeps track of the interval ID and clears if before starting a new animation:
var element = document.getElementById('someElement'); if (this._animInterval) { clearInterval(this._animInterval); } var self = this; self._animInterval = animate(function(pct) { element.style.opacity = pct; if (pct == 1) { self._animInterval = null; } }, 1000);
Callback function that modifies the document. The function takes a single parameter that represents a percentage.
The duration of the animation, in milliseconds.
The interval between animation frames, in milliseconds.
An interval id that you can use to suspend the animation.
Asserts that a value is an array.
Value supposed to be an array.
Whether null values are acceptable.
The array passed in.
Asserts that a value is a Boolean.
Value supposed to be Boolean.
Whether null values are acceptable.
The Boolean passed in.
Asserts that a value is an ICollectionView or an Array.
Array or ICollectionView.
Whether null values are acceptable.
The ICollectionView that was passed in or a CollectionView created from the array that was passed in.
Asserts that a value is a Date.
Value supposed to be a Date.
Whether null values are acceptable.
The Date passed in.
Asserts that a value is a valid setting for an enumeration.
Value supposed to be a member of the enumeration.
Enumeration to test for.
Whether null values are acceptable.
The value passed in.
Asserts that a value is a function.
Value supposed to be a function.
Whether null values are acceptable.
The function passed in.
Asserts that a value is an integer.
Value supposed to be an integer.
Whether null values are acceptable.
Whether to accept only positive integers.
The number passed in.
Asserts that a value is a number.
Value supposed to be numeric.
Whether null values are acceptable.
Whether to accept only positive numeric values.
The number passed in.
Asserts that a value is a string.
Value supposed to be a string.
Whether null values are acceptable.
The string passed in.
Asserts that a value is an instance of a given type.
Value to be checked.
Type of value expected.
Whether null values are acceptable.
The value passed in.
Throws an exception if a condition is false.
Condition expected to be true.
Message of the exception if the condition is not true.
Changes the type of a value.
If the conversion fails, the original value is returned. To check if a conversion succeeded, you should check the type of the returned value.
Value to convert.
DataType to convert the value to.
Format to use when converting to or from strings.
The converted value, or the original value if a conversion was not possible.
Clamps a value between a minimum and a maximum.
Original value.
Minimum allowed value.
Maximum allowed value.
Finds the closest ancestor (including the original element) that satisfies a selector.
Element where the search should start.
A string containing a selector expression to match elements against.
The closest ancestor that satisfies the selector, or null if not found.
Finds the closest ancestor (including the original element) that satisfies a class selector.
Element where the search should start.
A string containing the class name to match elements against.
The closest ancestor that has the specified class name, or null if not found.
Checks whether an HTML element contains another.
Parent element.
Child element.
Whether to take Wijmo popups into account.
True if the parent element contains the child element.
Copies properties from an object to another.
This method is typically used to initialize controls and other Wijmo objects by setting their properties and assigning event handlers.
The destination object must define all the properties defined in the source, or an error will be thrown.
The destination object.
The source object.
Creates an element from an HTML string.
HTML fragment to convert into an HTMLElement.
Optional HTMLElement to append the new element to.
The new element.
Disables the autocomplete, autocorrect, autocapitalize, and spellcheck properties of an input element.
The input element.
Enables or disables an element.
Element to enable or disable.
Whether to enable or disable the element.
Escapes a string by replacing HTML characters with text entities.
Strings entered by users should always be escaped before they are displayed in HTML pages. This helps ensure page integrity and prevent HTML/javascript injection attacks.
Text to escape.
An HTML-escaped version of the original string.
Replaces each format item in a specified string with the text equivalent of an object's value.
The function works by replacing parts of the formatString with the pattern '{name:format}' with properties of the data parameter. For example:
var data = { name: 'Joe', amount: 123456 }; var msg = wijmo.format('Hello {name}, you won {amount:n2}!', data);
The format function supports pluralization. If the format string is a JSON-encoded object with 'count' and 'when' properties, the method uses the 'count' parameter of the data object to select the appropriate format from the 'when' property. For example:
var fmt = { count: 'count', when: { 0: 'No items selected.', 1: 'One item is selected.', 2: 'A pair is selected.', 'other': '{count:n0} items are selected.' } } fmt = JSON.stringify(fmt); console.log(wijmo.format(fmt, { count: 0 })); // No items selected. console.log(wijmo.format(fmt, { count: 1 })); // One item is selected. console.log(wijmo.format(fmt, { count: 2 })); // A pair is selected. console.log(wijmo.format(fmt, { count: 12 })); 12 items are selected.
The optional formatFunction allows you to customize the content by providing context-sensitive formatting. If provided, the format function gets called for each format element and gets passed the data object, the parameter name, the format, and the value; it should return an output string. For example:
var data = { name: 'Joe', amount: 123456 }; var msg = wijmo.format('Hello {name}, you won {amount:n2}!', data, function (data, name, fmt, val) { if (wijmo.isString(data[name])) { val = wijmo.escapeHtml(data[name]); } return val; } );
A composite format string.
The data object used to build the string.
An optional function used to format items in context.
The formatted string.
Gets a reference to the element that contains the focus, accounting for shadow document fragments.
Calculates an aggregate value from the values in an array.
Type of aggregate to calculate.
Array with the items to aggregate.
Name of the property to aggregate on (in case the items are not simple values).
Gets an element from a query selector.
An element, a query selector string, or a jQuery object.
Gets the bounding rectangle of an element in page coordinates.
This is similar to the getBoundingClientRect function, except that uses viewport coordinates, which change when the document scrolls.
Gets an array containing the names and types of items in an array.
Array containing data items.
An array containing objects with the binding and type of each primitive property in the items found in the input array.
Creates a new unique id for an element by adding sequential numbers to a given base id.
String to use as a basis for generating the unique id.
Gets the version of the Wijmo library that is currently loaded.
Checks whether an element has a class.
Element to check.
Class to check for.
Checks whether an ICollectionView is defined and not empty.
ICollectionView to check.
Hides a popup element previously displayed with the showPopup method.
Popup element to hide.
Whether to remove the popup from the DOM or just to hide it. This parameter may be a boolean or a callback function that gets invoked after the popup has been removed from the DOM.
Whether to use a fade-out animation to make the popup disappear gradually.
An interval id that you can use to suspend the fade-out animation.
Performs HTTP requests.
The settings parameter may contain the following:
method | The HTTP method to use for the request (e.g. "POST", "GET", "PUT"). The default is "GET". |
data | Data to be sent to the server. It is appended to the url for GET requests, and converted to a JSON string for other requests. |
async | By default, all requests are sent asynchronously (i.e. this is set to true by default). If you need synchronous requests, set this option to false. |
success | A function to be called if the request succeeds. The function gets passed a single parameter of type XMLHttpRequest. |
error | A function to be called if the request fails. The function gets passed a single parameter of type XMLHttpRequest. |
complete | A function to be called when the request finishes (after success and error callbacks are executed). The function gets passed a single parameter of type XMLHttpRequest. |
beforeSend | A function to be called immediately before the request us sent. The function gets passed a single parameter of type XMLHttpRequest. |
requestHeaders | A JavaScript object containing key/value pairs to be added to the request headers. |
user | A username to be used with XMLHttpRequest in response to an HTTP access authentication request. |
password | A password to be used with XMLHttpRequest in response to an HTTP access authentication request. |
Use the success to obtain the result of the request which is provided in the callback's XMLHttpRequest parameter. For example, the code below uses the httpRequest method to retrieve a list of customers from an OData service:
import { httpRequest } from '@grapecity/wijmo';
httpRequest('http://services.odata.org/Northwind/Northwind.svc/Customers?$format=json', {
success: function (xhr) {
var response = JSON.parse(xhr.responseText),
customers = response.value;
// do something with the customers...
}
});
String containing the URL to which the request is sent.
An optional object used to configure the request.
The XMLHttpRequest object used to perform the request.
Determines whether an object is an Array.
Value to test.
Determines whether an object is a Boolean.
Value to test.
Determines whether an object is a Date.
Value to test.
Determines whether an object is empty (contains no enumerable properties).
Object to test.
Determines whether an object is a function.
Value to test.
Determines whether an object is an integer.
Value to test.
Determines whether a string is null, empty, or whitespace only.
Value to test.
Determines whether an object is a number.
Value to test.
Determines whether a value is an object (as opposed to a value type, an array, or a Date).
Value to test.
Determines whether an object is a primitive type (string, number, Boolean, or Date).
Value to test.
Determines whether an object is a string.
Value to test.
Determines whether an object is undefined.
Value to test.
Moves the focus to the next/previous/first focusable child within a given parent element.
Parent element.
Offset to use when moving the focus (use zero to focus on the first focusable child).
True if the focus was set, false if a focusable element was not found.
Safely removes an element from the DOM tree.
Element to remove from the DOM tree.
Removes a class from an element.
Element that will have the class removed.
Class (or space-separated list of classes) to remove from the element.
Sets or clears an element's aria-label attribute.
Element that will be updated.
Value of the aria label, or null to remove the label from the element.
Sets or clears an attribute on an element.
Element that will be updated.
Name of the attribute to add or remove.
Value of the attribute, or null to remove the attribute from the element.
Whether to keep original attribute if present.
Modifies the style of an element by applying the properties specified in an object.
Element or array of elements whose style will be modified.
Object containing the style properties to apply to the element.
Sets the license key that identifies licensed Wijmo applications.
If you do not set the license key, Wijmo will run in evaluation mode, adding a watermark element to the page.
Licensed users may obtain keys at the My Account section of the Wijmo site.
Note that Wijmo does not send keys or any licensing information to any servers. It only checks the internal consistency of the key provided.
String containing the license key to use in this application.
Sets the start and end positions of a selection in a text field.
This method is similar to the native setSelectionRange method in HTMLInputElement objects, except it checks for conditions that may cause exceptions (element not in the DOM, disabled, or hidden).
HTMLInputElement or HTMLTextAreaElement to select.
Offset into the text field for the start of the selection.
Offset into the text field for the end of the selection.
Sets the text content of an element.
Element that will have its content updated.
Plain text to be assigned to the element.
Shows an element as a popup.
The popup element becomes a child of the body element, and is positioned above or below a reference rectangle, depending on how much room is available.
The reference rectangle may be specified as one of the following:
Call the hidePopup method to hide the popup.
Element to show as a popup.
Reference element or rectangle used to position the popup.
Position popup above the reference rectangle if possible.
Use a fade-in animation to make the popup appear gradually.
Whether to copy font and color styles from the reference element, or an element to use as the style source.
An interval id that you can use to suspend the fade-in animation.
Rounds or truncates a number to a specified precision.
Value to round or truncate.
Number of decimal digits for the result.
Whether to truncate or round the original value.
Converts a camel-cased string into a header-type string by capitalizing the first letter and adding spaces before uppercase characters preceded by lower-case characters.
For example, 'somePropertyName' becomes 'Some Property Name'.
String to convert to header case.
Converts an HTML string into plain text.
HTML string to convert to plain text.
A plain-text version of the string.
Adds or removes a class to or from an element.
Element that will have the class added.
Class to add or remove.
Whether to add or remove the class. If not provided, toggle the class.
Casts a value to a type if possible.
Value to cast.
Type or interface name to cast to.
The value passed in if the cast was successful, null otherwise.
Contains utilities used by all controls and modules, as well as the Control and Event classes.