FAQ
-
-
Vybrali jste záložku Controls.
Další odstavec...
Nyní vyberte komponentu:
-
/** * A simple autocomplete input */ class Autocomplete extends SimplexControl { /** * Initializes the instance * @param {Element} element The div element which is about to become the control */ constructor(element) { super(element); this.apiUrl = this.element.getData('url'); this.items = []; this.minQueryLength = 1; this.searchAtTheBeginningOfWordsOnly = true; this.cache = true; this.cacheStorage = {}; this.delay = 250; this.timer = new Timer(this.delay, () => { this._makeAjaxCall() }, false); ...
-
asdf
-
/** * Represents a carousel control */ class Carousel extends TabControl {/** * Initializes the instance * @param {Element} element The div element which is about to become the control */ constructor(element) { super(element, false); ...
-
class Dialog extends SimplexControl {set width(value) { this.element.width = value + "px"; } set height(value) { this.element.height = value + "px"; } ...
-
/** * Represents a EU cookie message control */ class EuCookie extends SimplexControl { /** * Initializes the instance * @param {Element} element The div element which is about to become the control */ constructor(element) { super(element);const T = { ...
-
/** * Represents a simple tabbed control */ class TabControl extends SimplexControl {/**
* Gets the index of the actual tab
* @returns {number} The index of the actual tab
*/
get tabIndex() { return this.tabs.indexOf(this.currentTab); }/**
* Gets the currently active tab
* @returns {SimplexSelection} Active tab
*/
get activeTab() { return this.currentTab; }...
-
-
Vybrali jste záložku Framework.
Nyní vyberte knihovnu frameworku:
-
Vyberte třídu pro správu cookies:
-
/** * A simple wrapper class representing a single cookie entry */ class Cookie { ...
-
/** * A manager to manipulate document cookies */ class CookieManager { ...
-
-
Vyberte utility třídu:
-
class Colors { ...
-
class Strings { ...
-
-
/** * Represents a simple XMLHttpRequest wrapper to make AJAX requests shorter */ class Ajax { ...
-
/** * The base class for all Simplex controls */ class SimplexControl { ...
-
/** * Represents a result from a query */ class SimplexSelection { ...
-
/*** * Represents a service for managing Simplex controls */ class Sjs { ...
-
/** * Represents a simple timer object */ class Timer { ...
-
-
-
-
.autocomplete-items-wrapper { position: relative; } ...
-
ul.sjs-bar-chart { box-sizing: border-box; width: 100%; } ...
-
/* Carousel / div.sjs-carousel { position: relative; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none; user-select: none; border: 0; } ...
-
.sjs-dialog { border: 1px solid #b3b3b3; min-width: 320px; position: absolute; display: flex; flex-direction: column; resize: both; overflow: auto; background: #fdfdfd; } ...
-
div.sjs-eu-cookie { position: relative; z-index: 1; background: #f2f4f7; padding: 10px; text-align: center; } ...
-
/ Tab control */ div.sjs-tab-control { border: 1px solid #e8e8e8; overflow: hidden; } ...
-
-
-
-