Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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
      languagejava
      themeConfluence
      // 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.

...