...
Include Page Event valueChange Event valueChange
DatabindingData binding:
- Data container (model)
XdevBeanItemContainer - Standard data container. The allocation is set using the setContainerDataSource method.
Code Block language java theme Confluence // Generates a new XdevBeanItemContainer 'productList' XdevBeanItemContainer<Product> productList = new XdevBeanItemContainer<Product>(Product.class); // Sets the XdevBeanItemContainer twinColSelect.setContainerDataSource(productList);
- XdevLazyEntityContainer - RapidClipse exclusively uses this when the property Entity > Auto query data is selected.
...