I've created a Menu with a couple of items. Each item has a submenu that contains exactly one item, an embeddedComponent. That embedded component is a DynamicForm instance which only contains check boxes. After I click one of the check boxes, the menu closes. Is it possible to prevent this?
I'm using SmartClient 12.1 LGPL (June 4th, 2020). The code is like this:
I'm using SmartClient 12.1 LGPL (June 4th, 2020). The code is like this:
Code:
menu = isc.Menu.create({
data: [{
submenu: [{
embeddedComponent: isc.DynamicForm.create({
fields: [... several check boxes ...]
}),
showRollOver: false
}],
title: 'Item 1'
}, ... more menu items ...]
});
Comment