Skip to content

DEPRECATED: Please do not use this anymore. There will be only small fixes in the future until we removed it completely from mapbender

License

Notifications You must be signed in to change notification settings

mapbender/vis-ui.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vis-ui.js

This package provides JavaScript UI generator based on Bootstrap and jQuery UI.

Features

  • Generate form and input elements
  • Check and fill form
  • Tab navigation

Examples

Elements

Description how to use element generator.


Input

$("<div/>").generateElements({
    type: "input",
    name: "name",
    title: "Input",
    placeholder: "Enter the name",
    mandatory: true,
    cssClass: "input-css", 
    css: {width: "80%"}
})

Options

  • name: Field name
  • title: Title string
  • placeholder: Place holder in the input field
  • mandatory: Mandatory field: true, false or ReExpr ("/^\d+$/g" - only decimals)
  • cssClass: CSS class name
  • css: Custom CSS styles object. Example: {width: "80%"}
  • value: Default value

Text area

$("<div/>").generateElements({
    type: "textArea",
    name: "description" ,
    title: "Description",
    placeholder: "Enter the description",
})

Options

  • name: Field name
  • title: Title string
  • placeholder: Place holder in the input field
  • mandatory: Mandatory field: true, false or ReExpr ("/^\d+$/g" - only decimals)
  • cssClass: CSS class name
  • css: Custom CSS styles object. Example: {width: "80%"}
  • value: Default value

Check box

$("<div/>").generateElements({
    type: "checkbox",
    name: "check1",
    title: "Checkbox",
    mandatory: true,
    cssClass: "input-css", 
    css: {width: "80%"}
})

Options

  • name: Field name
  • title: Title string
  • placeholder: Place holder in the input field
  • mandatory: Mandatory field: true, false or ReExpr ("/^\d+$/g" - only decimals)
  • cssClass: CSS class name
  • css: Custom CSS styles object. Example: {width: "80%"}
  • value: Default value

Radio button

$("<div/>").generateElements({children:[{
        type: "radio",
        name: "yesNo",
        title: "Yes",
        css: {width: 50%}
    },{
        type: "radio",
        name: "yesNo",
        title: "no",
        css: {width: 50%}
}]})

Options

  • name: Field name
  • title: Title string
  • placeholder: Place holder in the input field
  • mandatory: Mandatory field: true, false or ReExpr ("/^\d+$/g" - only decimals)
  • cssClass: CSS class name
  • css: Custom CSS styles object. Example: {width: "80%"}
  • value: Default value

Select

$("<div/>").generateElements({type: "select", value: "de", options: {en:"English", de: "German"} })

Options

  • name: Field name
  • title: Title string
  • mandatory: Mandatory field: true, false or ReExpr ("/^\d+$/g" - only decimals)
  • cssClass: CSS class name
  • css: Custom CSS styles object. Example: {width: "80%"}
  • value: Default value
  • options: key/values object or array
  • multiply: Multiply selection. Default false

Basic usage example:

var $div = $("<div/>");
$div.generateElements({children:[{
    type:  'input',
    title: "Input",
    placeholder: "placeholder value",
    mandatory: true
},{
    type:  'input',
    name: "input2",
    title: "Input #2",
    placeholder: "placeholder value #2"
}]});

$div.popupDialog({
    title:       "Demo",
    maximizable: true,
    buttons:     [{
        text:  "OK",
        click: function(e) {
            var div = $(e.currentTarget).closest(".ui-dialog").find(".popup-dialog");
            div.popupDialog('close');
        }
    }]
});

Integration

Extend composer dependencies with eslider/vis-ui.js and update composer.

composer update

Load JS library to HTML.

<script src="web/assets/vis-ui.js/vis-ui.js-built.js"></script>

Add CSS styles.

<link media="all" type="text/css" rel="stylesheet" href="web/assets/require.css">

Package Managers

About

DEPRECATED: Please do not use this anymore. There will be only small fixes in the future until we removed it completely from mapbender

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 87.2%
  • HTML 5.7%
  • SCSS 4.3%
  • CSS 2.8%