ids-enterprise
v4.110.13
Published
Infor Design System (IDS) Enterprise Components for the web
Readme
Infor Design System's Enterprise Components
Infor Design System's Enterprise component library (also known as Soho Components) is a framework-independent UI library consisting of CSS and JS that provides Infor product development teams and partners tools to create user experiences that are approachable, focused, relevant and perceptive.
For guidelines on when and where to use the components see the design.infor.com.
Key Features
- Multiple themes, including a WCAG 2.0 AAA compatible high-contrast theme
- Responsive components, patterns and layouts
- Touch-friendly interactions
- SVG-based iconography compatible with high DPI screens
- Built-in, extendible localization system
- Built-in mitigation of XSS and security vulnerabilities
- 140+ Components
Datagrid Export Options
The exportToXlsx method now supports an options object for better extensibility:
// Export with default options (filtered data, keep formatting)
gridApi.exportToXlsx('filename');
// Export with custom options
gridApi.exportToXlsx('filename', null, null, {
keepGridFormatting: true,
useCurrentFilter: true
});
// Export all data ignoring filters
gridApi.exportToXlsx('filename', null, null, {
useCurrentFilter: false
});Popupmenu Keep Open
The popupmenu component now supports a keepOpen setting that prevents the menu from closing when clicking outside:
// Menu stays open until toggle button is clicked again
$('#menu-button').popupmenu({
menu: 'my-menu',
keepOpen: true
});When keepOpen is enabled:
- The menu remains visible when clicking outside
- The menu only closes when the toggle button is clicked again
Browser Support
We support the latest release and the release previous to the latest (R-1) for browsers and OS versions:
| IE Edge | Firefox | Chrome | Safari | iOS Safari | | --------- | --------- | --------- | --------- | --------- | | R-1 | R-1 | R-1| R-1| R-1
Installation
npm install --save ids-enterprise@latestFor additional usage methods, see Installing IDS
Documentation
- Latest Release Component Web Documentation
- Change Log (Includes latest release changes)
