Web Component: j-InfoWindows
j-InfoWindows
- jComponent
v19|v20
- Supports mobile devices
- Supports touches
- Movable
- Resizable
Configuration:
reoffsetresize
{Boolean}
all windows will be re-offset according tomain
window dimension (default:true
)
The InfoWindows
component expects Array
of objects.
// Component declaration
var win = {
// Component ID
id: 'WINDOW_ID',
// NEW: cachekey for similar windows
// Optional, default: window ID
cachekey: 'WINDOW_ID',
// Positioning
// You can define specific display size and if the display size is not specified then the window tries to find a size for larger display
html: 'THE CONTENT OF WINDOW', // or can be raw HTMLElement
offset: { x: 200, y: 100, width: 600, height: 400, minwidth: 200, minheight: 200, maxwidth: 1000, maxheight: 1000 }, // minwidth, maxwidth, maxheight, minheight are optional
// Default settings
actions: { move: true, close: true, hide: true, resize: true, minimize: true, maximize: true, autosave: false },
// GOOD TO KNOW:
// "undefined" close or "close:false" and "hide:true" doesn't destroy the instance of window (it will be hidden only)
// A window title
title: 'Title for the window',
// Handlers (optional):
destroy: function() {
// @el {jQuery} a content of the window
// @this {Instance}
// is executed when the window is destroyed
},
make: function(el) {
// @el {jQuery} a content of the window
// @this {Instance}
// this.meta {Object} a reference to window object
// this.element {jQuery} a content element of the window
// this.container {jQuery} a main content element of the window
// this.main {Object} a reference to "Windows" component
// this.width {Number} a width of window
// this.height {Number} a height of the content of the window
// this.x {Number} offset X
// this.y {Number} offset Y
// Methods:
// this.setsize(width, height);
// this.setcommand(cmd); Allowed commands: "close", "maximize", "resetmaximize", "togglemaximize", "minimize", "resetminimize", "toggleminimize", "resize", "move", "focus"
// this.setoffset(x, y);
// is executed when the window is making
},
data: function(type, data, el) {
// @type {String}
// @data {Object}
// @el {jQuery} a content element of the window
// @this {Instance}
// is executed when data are sent via SETTER('windows', 'send', 'TYPE', 'DATA')
},
resize: function(width, height, el, x, y) {
// @width {Number}
// @height {Number}
// @el {jQuery} a content of the window
// @this {Instance}
// is executed when the window is resized
},
move: function(x, y, el) {
// @x {Number}
// @y {Number}
// @el {jQuery} a content of the window
// @this {Instance}
// is executed when the window is moved
},
service: function(counter, el) {
// @counter {Number} count of calls
// @el {jQuery} a content of the window
// @this {Instance}
// the component will execute this handler each 5 seconds
}
};
PUSH('infowindows', win);
Methods:
component.finditem(window_id)
finds the specific window according toID
component.show(window_id)
shows a windowcomponent.hide(window_id)
hides a windowcomponent.toggle(window_id)
toggles a windowcomponent.focus(window_id)
focuses a windowcomponent.close(window_id)
closes a window
Author
- Peter Širka petersirka@gmail.com
- License
Created
15. october 2020
Updated
30. july 2024
jComponent library
19 | 20
Version
v1
License
https://www.totaljs.com/license/
Dark mode
Yes
Responsive
Yes
Author
Peter Širka
Email
petersirka@gmail.com