uifw
v3.0.0
Published
uifw scripts for EKM
Readme
uifw
This is the user interface framework bundle for ekmSystems. The package brings in uifw.js and uifw-thirdparty.js.
Example
// Require jquery and include the uifw scripts
var $ = require('jquery');
require('uifw');
// Standard jQuery select works as normal
var myDiv = $('#mainDiv');
// Internal ui checkbox creation
$('#checkbox').uifwFrmCheckbox();
// Third party auto complete creation
$('#select').selectToAutocomplete();