DevExtreme v24.1 is now available.

Explore our newest features/capabilities and share your thoughts with us.

Your search did not match any results.

JavaScript/jQuery Form - Grouped Fields

You can organize JavaScript Form items in groups and tabs. To do this, declare Group and Tabbed items in the items[] array. Each group and tab can have their own layout and contain other item types.

Backend API
$(() => { function groupCaptionTemplate($icon){ return (data) => { return $(`<i class='dx-icon dx-icon-${$icon}'></i><span>${data.caption}</span>`); } } $('#form').dxForm({ formData: employees, colCount: 2, items: [{ itemType: 'group', captionTemplate: groupCaptionTemplate('info'), caption: 'System Information', items: ['ID', { itemType: 'group', captionTemplate: groupCaptionTemplate('user'), caption: 'Main Information', items: ['FirstName', 'LastName', 'HireDate', 'Position', 'OfficeNo'], }], }, { itemType: 'group', captionTemplate: groupCaptionTemplate('card'), caption: 'Personal Data', items: ['BirthDate', { itemType: 'group', captionTemplate: groupCaptionTemplate('home'), caption: 'Home Address', items: ['Address', 'City', 'State', 'Zipcode'], }], }, { itemType: 'group', captionTemplate: groupCaptionTemplate('tel'), caption: 'Contact Information', items: [{ itemType: 'tabbed', tabPanelOptions: { deferRendering: false, }, tabs: [{ title: 'Phone', items: ['Phone'], }, { title: 'Skype', items: ['Skype'], }, { title: 'Email', items: ['Email'], }], }], }], }); });
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title>DevExtreme Demo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script> <link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/24.1.6/css/dx.light.css" /> <script src="js/dx.all.js"></script> <script src="data.js"></script> <link rel="stylesheet" type="text/css" href="styles.css" /> <script src="index.js"></script> </head> <body class="dx-viewport"> <div class="demo-container"> <div class="long-title"><h3>Personal details</h3></div> <div id="form-container"> <div id="form"></div> </div> </div> </body> </html>
#form-container { margin: 10px; } .long-title h3 { font-size: 24px; text-align: center; line-height: 2em; } .dx-form-group-custom-caption .dx-icon { color: var(--dx-color-spin-icon); } .dx-form-group-custom-caption span { line-height: 1; }
const employees = { ID: 1, FirstName: 'John', LastName: 'Heart', CompanyName: 'Super Mart of the West', Position: 'CEO', OfficeNo: '901', BirthDate: new Date(1964, 2, 16), HireDate: new Date(1995, 0, 15), Address: '351 S Hill St.', City: 'Los Angeles', State: 'CA', Zipcode: '90013', Phone: '+1(213) 555-9392', Email: 'jheart@dx-email.com', Skype: 'jheart_DX_skype', };

To create a group item, assign "group" to the itemType property. To specify a group's title, use the caption property. To replace a group's title with custom content, implement a caption template. This demo shows three groups. The Personal Data group is nested in the System Information group.

To create a tabbed item, assign "tabbed" to the itemType property. This demo shows a tabbed item nested in the Contact Information group. The JavaScript Form uses the TabPanel component to display tabs. You can specify the TabPanel's properties in the tabPanelOptions object. This demo disables the deferRendering property to render TabPanel's content immediately.