This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Migrate from 0.1.0 to 0.2.x
The 0.2.0 release introduced some changes in the inputEx API. Follow this guide to upgrade your application :
Javascript/JSON definitions:
- The label property moved to the inputParams object.
- The description property moved to the inputParams object.
- The optional property has been removed. To get the same behaviour, create a sub-group with “collapsable” set to true.
- The tooltipIcon property has been removed. Use showMsg instead.
Example:
{
type: 'string',
label: 'A label',
description: 'Here a long description',
inputParams: {
name: 'title',
tooltipIcon: true
}
}
should become :
{
type: 'string',
inputParams: {
name: 'title',
label: 'A label',
description: 'Here a long description',
showMsg: true
}
}
CSS:
The inputEx 0.2.0 release will probably break most of your inputEx 0.1.0 css customization.
We switched from TABLE elements to DIVs only. It is a bit trickier to align elements, but the fields become much more flexible.
Take a look at the current inputEx markup structure.







