brutusin-json-forms

WebJar for brutusin-json-forms

Лицензия

Лицензия

Категории

Категории

Github Инструменты разработки Контроль версий JSON Данные ORM
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

github-com-brutusin-json-forms
Последняя версия

Последняя версия

0.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

brutusin-json-forms
WebJar for brutusin-json-forms
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/brutusin/json-forms

Скачать github-com-brutusin-json-forms

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/github-com-brutusin-json-forms/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>github-com-brutusin-json-forms</artifactId>
    <version>0.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-brutusin-json-forms/
implementation 'org.webjars.npm:github-com-brutusin-json-forms:0.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-brutusin-json-forms/
implementation ("org.webjars.npm:github-com-brutusin-json-forms:0.0.0")
'org.webjars.npm:github-com-brutusin-json-forms:jar:0.0.0'
<dependency org="org.webjars.npm" name="github-com-brutusin-json-forms" rev="0.0.0">
  <artifact name="github-com-brutusin-json-forms" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='github-com-brutusin-json-forms', version='0.0.0')
)
libraryDependencies += "org.webjars.npm" % "github-com-brutusin-json-forms" % "0.0.0"
[org.webjars.npm/github-com-brutusin-json-forms "0.0.0"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

json-forms

bower version Build Status

org.brutusin:json-forms is a javascript library that generates HTML forms from JSON Schemas.

Status

I am currently not having time to maintain this project, so first of all my apologies if some issues have been unresponded. Branch v2 contains a completely new rearchitecture of the project, that I started several months ago but left unfinished. If someone is interested in continuing my work I will be happy to guide them


Table of Contents:

Features

  • Dynamic schemas support
  • Extensible and customizable
  • No external libraries needed
  • Validation
  • Multiple forms per document supported

Usage

Include the main library dependencies:

<link rel="stylesheet" href='dist/css/brutusin-json-forms.min.css'/>
<script src="dist/js/brutusin-json-forms.min.js"></script>

Optionally, include the bootstrap extension (requires bootstrap):

<script src="dist/js/brutusin-json-forms-bootstrap.min.js"></script>

Create the javascript BrutusinForms instance, schema being a javascript object representing the schema structure:

var schema = {"type": "boolean"}
var BrutusinForms = brutusin["json-forms"];
var bf = BrutusinForms.create(schema);

And finally render the form inside a container with optional preloaded JSON initial data, data:

var container = document.getElementById('container');
bf.render(container, data);

Demo

demo http://brutusin.org/json-forms/

Dynamic schemas

This library supports dynamic schemas, that is, subschemas that can change depending on the value of other parts of the data.

This lets creating dynamic forms that vary their shape depending on the values entered by the user. This is extremely useful for big autogenerated schemas, that aggregates lots of subschemas and have functional bindings, given that it allows to show the user a simpler, non-error-prone form, also avoiding asking for unneeded data.

Dynamic schemas are built upon two main blocks:

dependsOn schema extension

Dynamic schema resolution

API

Static members:

Member Description
BrutusinForms.create(schema) BrutusinForms factory method
BrutusinForms.addDecorator(f(htmlElement, schema)) Register a callback function to be notified after an HTML element has been rendered (passed as parameter). See brutusin-json-forms-bootstrap.js for an example of bootstrap decorator.
BrutusinForms.postRender(instance) Callback function to be notified after a BrutusinForms instance has been rendered (passed as parameter)
BrutusinForms.instances Array containing all the BrutusinForms instances created in the document by the factory method.

Instance members:

Member Description
bf.render(container, data) Renders the form inside the the container, with the specified data preloaded
bf.validate() Returns true if the input data entered by the user passes validation
bf.getData() Returns the javascript object with the data entered by the user
bf.schemaResolver(schemaIdArray, data) Schema resolver for dynamic schemas

CDN

http://www.jsdelivr.com/projects/brutusin.json-forms

Support bugs and requests

https://github.com/brutusin/json-forms/issues

Authors

Contributions are always welcome and greatly appreciated!

License

Apache License, Version 2.0

org.webjars.npm

brutusin.org

Best friendly software libraries. In loving memory of Brutus

Версии библиотеки

Версия
0.0.0