├── .github └── issue_template.md ├── .gitignore ├── .project ├── LICENSE.md ├── Makefile ├── README.md ├── build.gradle ├── buildSrc ├── build.gradle └── src │ ├── main │ ├── groovy │ │ ├── Asciidoc2Html.groovy │ │ ├── Asciidoc2Pdf.groovy │ │ ├── BuildAsciidoctorTheme.groovy │ │ ├── CreateMultiPageDoc.groovy │ │ ├── CreateWar.groovy │ │ ├── DocPlugin.groovy │ │ ├── SetupTomcat.groovy │ │ ├── SplitDoc.groovy │ │ ├── chopper │ │ │ ├── Chopper.groovy │ │ │ ├── Context.groovy │ │ │ └── Section.groovy │ │ └── docsplitter │ │ │ └── DocSplitter.groovy │ ├── java │ │ └── chopper │ │ │ └── server │ │ │ ├── Search.java │ │ │ └── SearchResult.java │ └── resources │ │ └── META-INF │ │ └── gradle-plugins │ │ └── doc.properties │ └── test │ └── groovy │ └── chopper │ └── server │ └── SearchTest.groovy ├── content ├── bi │ ├── adoc │ │ ├── en │ │ │ ├── adding_bi.adoc │ │ │ ├── bi.adoc │ │ │ ├── overview.adoc │ │ │ ├── preface.adoc │ │ │ ├── quick_start.adoc │ │ │ ├── quick_start │ │ │ │ ├── bi_widget.adoc │ │ │ │ ├── qs_analysis_report.adoc │ │ │ │ ├── qs_analysis_report │ │ │ │ │ ├── qs_create_report.adoc │ │ │ │ │ └── qs_demo_report.adoc │ │ │ │ ├── qs_load_data.adoc │ │ │ │ ├── qs_load_data │ │ │ │ │ ├── qs_db_connection.adoc │ │ │ │ │ ├── qs_dimensions.adoc │ │ │ │ │ ├── qs_facts.adoc │ │ │ │ │ ├── qs_load_data_for_impatient.adoc │ │ │ │ │ └── qs_star_schema.adoc │ │ │ │ └── qs_setup_sample.adoc │ │ │ └── setup_pentaho.adoc │ │ └── ru │ │ │ ├── adding_bi.adoc │ │ │ ├── bi.adoc │ │ │ ├── overview.adoc │ │ │ ├── preface.adoc │ │ │ ├── quick_start.adoc │ │ │ ├── quick_start │ │ │ ├── bi_widget.adoc │ │ │ ├── qs_analysis_report.adoc │ │ │ ├── qs_analysis_report │ │ │ │ ├── qs_create_report.adoc │ │ │ │ └── qs_demo_report.adoc │ │ │ ├── qs_load_data.adoc │ │ │ ├── qs_load_data │ │ │ │ ├── qs_db_connection.adoc │ │ │ │ ├── qs_dimensions.adoc │ │ │ │ ├── qs_facts.adoc │ │ │ │ ├── qs_load_data_for_impatient.adoc │ │ │ │ └── qs_star_schema.adoc │ │ │ └── qs_setup_sample.adoc │ │ │ └── setup_pentaho.adoc │ ├── img │ │ ├── addon_continue.png │ │ ├── addon_install.png │ │ ├── addons.png │ │ ├── bi_addon.png │ │ ├── bi_component.png │ │ ├── bi_create.png │ │ ├── bi_pentaho.png │ │ ├── bi_pentaho_2.png │ │ ├── bi_pentaho_3.png │ │ ├── bi_pentaho_4.png │ │ ├── bi_pentaho_5.png │ │ ├── bi_star_schema.png │ │ ├── pentaho.gif │ │ ├── pentaho_console.png │ │ ├── pentaho_console_2.png │ │ ├── pentaho_console_3.png │ │ ├── pentaho_console_4.png │ │ ├── pentaho_console_5.png │ │ ├── saiku.gif │ │ ├── star-schema.png │ │ ├── star-schema_10.png │ │ ├── star-schema_11.png │ │ ├── star-schema_12.png │ │ ├── star-schema_13.png │ │ ├── star-schema_14.png │ │ ├── star-schema_2.png │ │ ├── star-schema_3.png │ │ ├── star-schema_4.png │ │ ├── star-schema_5.png │ │ ├── star-schema_6.png │ │ ├── star-schema_7.png │ │ ├── star-schema_8.png │ │ └── star-schema_9.png │ └── source │ │ ├── bi_beans.xml │ │ ├── bi_component.xml │ │ ├── bi_port.xml │ │ ├── bi_shutdown_port.xml │ │ ├── cuba-pentaho-community-authentication.xml │ │ └── pentaho_gif.js ├── bpm │ ├── adoc │ │ ├── en │ │ │ ├── app_properties.adoc │ │ │ ├── bpm.adoc │ │ │ ├── datamodel.adoc │ │ │ ├── examples.adoc │ │ │ ├── examples │ │ │ │ └── task_execution_sample.adoc │ │ │ ├── functionality.adoc │ │ │ ├── functionality │ │ │ │ ├── bpm_activiti_listener.adoc │ │ │ │ ├── custom_stencils.adoc │ │ │ │ ├── localization.adoc │ │ │ │ ├── process_roles.adoc │ │ │ │ ├── script_execution.adoc │ │ │ │ ├── service_invocation.adoc │ │ │ │ ├── start_process_form.adoc │ │ │ │ ├── submodels.adoc │ │ │ │ ├── task_outcomes.adoc │ │ │ │ ├── timer.adoc │ │ │ │ ├── transitions.adoc │ │ │ │ ├── transitions │ │ │ │ │ └── flow_order.adoc │ │ │ │ └── user_task.adoc │ │ │ ├── installation.adoc │ │ │ ├── preface.adoc │ │ │ ├── preface │ │ │ │ ├── additional_info.adoc │ │ │ │ ├── audience.adoc │ │ │ │ └── feedback.adoc │ │ │ ├── quick_start.adoc │ │ │ ├── quick_start │ │ │ │ ├── qs_approvalHelper.adoc │ │ │ │ ├── qs_data_model_creation.adoc │ │ │ │ ├── qs_process_creation.adoc │ │ │ │ ├── qs_process_creation │ │ │ │ │ ├── qs_process_model_creation.adoc │ │ │ │ │ └── qs_process_model_deployment.adoc │ │ │ │ ├── qs_project_creation.adoc │ │ │ │ ├── qs_run_app.adoc │ │ │ │ ├── qs_screens_adaptation.adoc │ │ │ │ ├── qs_screens_adaptation │ │ │ │ │ ├── qs_contract_edit_controller.adoc │ │ │ │ │ └── qs_contract_edit_descriptor.adoc │ │ │ │ ├── qs_standard_screen_creation.adoc │ │ │ │ ├── qs_work_with_app.adoc │ │ │ │ └── qs_work_with_app │ │ │ │ │ ├── qs_approval.adoc │ │ │ │ │ ├── qs_start_process.adoc │ │ │ │ │ ├── qs_users_creation.adoc │ │ │ │ │ └── qs_validation.adoc │ │ │ ├── services.adoc │ │ │ ├── services │ │ │ │ ├── model_service.adoc │ │ │ │ ├── process_form_service.adoc │ │ │ │ ├── process_messages_service.adoc │ │ │ │ ├── process_repository_service.adoc │ │ │ │ └── process_runtime_service.adoc │ │ │ ├── ui_components.adoc │ │ │ └── ui_components │ │ │ │ ├── proc_actions_fragment.adoc │ │ │ │ └── process_forms.adoc │ │ └── ru │ │ │ ├── app_properties.adoc │ │ │ ├── bpm.adoc │ │ │ ├── datamodel.adoc │ │ │ ├── examples.adoc │ │ │ ├── examples │ │ │ └── task_execution_sample.adoc │ │ │ ├── functionality.adoc │ │ │ ├── functionality │ │ │ ├── bpm_activiti_listener.adoc │ │ │ ├── custom_stencils.adoc │ │ │ ├── localization.adoc │ │ │ ├── process_roles.adoc │ │ │ ├── script_execution.adoc │ │ │ ├── service_invocation.adoc │ │ │ ├── start_process_form.adoc │ │ │ ├── submodels.adoc │ │ │ ├── task_outcomes.adoc │ │ │ ├── timer.adoc │ │ │ ├── transitions.adoc │ │ │ ├── transitions │ │ │ │ └── flow_order.adoc │ │ │ └── user_task.adoc │ │ │ ├── installation.adoc │ │ │ ├── preface.adoc │ │ │ ├── preface │ │ │ ├── additional_info.adoc │ │ │ ├── audience.adoc │ │ │ └── feedback.adoc │ │ │ ├── quick_start.adoc │ │ │ ├── quick_start │ │ │ ├── qs_approvalHelper.adoc │ │ │ ├── qs_data_model_creation.adoc │ │ │ ├── qs_process_creation.adoc │ │ │ ├── qs_process_creation │ │ │ │ ├── qs_process_model_creation.adoc │ │ │ │ └── qs_process_model_deployment.adoc │ │ │ ├── qs_project_creation.adoc │ │ │ ├── qs_run_app.adoc │ │ │ ├── qs_screens_adaptation.adoc │ │ │ ├── qs_screens_adaptation │ │ │ │ ├── qs_contract_edit_controller.adoc │ │ │ │ └── qs_contract_edit_descriptor.adoc │ │ │ ├── qs_standard_screen_creation.adoc │ │ │ ├── qs_work_with_app.adoc │ │ │ └── qs_work_with_app │ │ │ │ ├── qs_approval.adoc │ │ │ │ ├── qs_start_process.adoc │ │ │ │ ├── qs_users_creation.adoc │ │ │ │ └── qs_validation.adoc │ │ │ ├── services.adoc │ │ │ ├── services │ │ │ ├── model_service.adoc │ │ │ ├── process_form_service.adoc │ │ │ ├── process_messages_service.adoc │ │ │ ├── process_repository_service.adoc │ │ │ └── process_runtime_service.adoc │ │ │ ├── ui_components.adoc │ │ │ └── ui_components │ │ │ ├── proc_actions_fragment.adoc │ │ │ └── process_forms.adoc │ ├── img │ │ ├── ApprovalFlowOrder.png │ │ ├── ApprovalMutlInstanceType.png │ │ ├── CompleteApprovalForm.png │ │ ├── ContractEditNotApproved.png │ │ ├── ContractEditValidation.png │ │ ├── DataModel.png │ │ ├── DeployModelScreen.png │ │ ├── ModelValidationExclGateway.png │ │ ├── ModelValidationNode.png │ │ ├── ModelWithApproval.png │ │ ├── NotValidFlowOutcome.png │ │ ├── OutcomesForValidation.png │ │ ├── ProcDefinitionEdit.png │ │ ├── ProcInstanceEdit.png │ │ ├── ProcInstanceEditApproval.png │ │ ├── ProcTaskBrowse.png │ │ ├── ProcessFull.png │ │ ├── ProcessRolesEditor.png │ │ ├── ProcessRolesProperty.png │ │ ├── SelectProcRoleForValidation.png │ │ ├── StartForm.png │ │ ├── StartProcessForm.png │ │ ├── StencilSetAddGroup.png │ │ ├── StencilSetAddStencil.png │ │ ├── StencilSetModel.png │ │ ├── TaskListApproval.png │ │ ├── TaskOutcomesExample.png │ │ ├── TimerEdit.png │ │ ├── ValidationCompleteForm.png │ │ ├── ValidationFlowOrder.png │ │ ├── addon_continue.png │ │ ├── addon_install.png │ │ ├── addons.png │ │ ├── bpm_addon.png │ │ ├── examples │ │ │ ├── TaskExecution1Model.png │ │ │ └── TaskExecution1UpdateProcessStateListener.png │ │ ├── refresh_button.png │ │ ├── run_button.png │ │ ├── stop_button.png │ │ └── yEd │ │ │ └── DataModel.graphml │ └── source │ │ ├── .gitignore │ │ ├── examples │ │ ├── ContractApproval1GetFormResult.java │ │ ├── ContractApproval1ScreenParametersSupplier.java │ │ ├── TaskEdit.java │ │ ├── TaskExecution1StartProgrammatically.java │ │ └── UpdateProcessStateListener.java │ │ ├── quickstart │ │ ├── ApprovalHelper.java │ │ ├── ContractEdit.java │ │ ├── ProcActionsFragmentInitialization.java │ │ ├── ProcActionsFragmentStandardInitialization.java │ │ └── contract-edit.xml │ │ └── start_process.java ├── charts │ ├── adoc │ │ ├── en │ │ │ ├── chart.adoc │ │ │ ├── chart │ │ │ │ ├── chart_configuration.adoc │ │ │ │ ├── chart_data_binding.adoc │ │ │ │ ├── chart_example.adoc │ │ │ │ ├── chart_example │ │ │ │ │ ├── chart_data_from_entity.adoc │ │ │ │ │ ├── chart_data_from_entity │ │ │ │ │ │ ├── cdb_create_model.adoc │ │ │ │ │ │ ├── cdb_result.adoc │ │ │ │ │ │ ├── cdb_screen_controller.adoc │ │ │ │ │ │ └── cdb_xml_descriptor.adoc │ │ │ │ │ ├── chart_data_simplified.adoc │ │ │ │ │ ├── chart_project_setup.adoc │ │ │ │ │ ├── chart_with_data_provider.adoc │ │ │ │ │ ├── chart_with_data_provider │ │ │ │ │ │ ├── cdp_result.adoc │ │ │ │ │ │ ├── cdp_screen_controller.adoc │ │ │ │ │ │ └── cdp_xml_descriptor.adoc │ │ │ │ │ ├── custom_json.adoc │ │ │ │ │ ├── section_incremental_data_update.adoc │ │ │ │ │ └── section_use_of_events.adoc │ │ │ │ ├── chart_export.adoc │ │ │ │ ├── chart_listeners.adoc │ │ │ │ ├── chart_replacement.adoc │ │ │ │ ├── chart_types.adoc │ │ │ │ └── chart_types │ │ │ │ │ ├── funnel_chart.adoc │ │ │ │ │ ├── gantt_chart.adoc │ │ │ │ │ ├── gauge_chart.adoc │ │ │ │ │ ├── pie_chart.adoc │ │ │ │ │ ├── radar_chart.adoc │ │ │ │ │ ├── serial_chart.adoc │ │ │ │ │ ├── stock_chart.adoc │ │ │ │ │ └── xy_chart.adoc │ │ │ ├── charts.adoc │ │ │ ├── installation.adoc │ │ │ ├── map.adoc │ │ │ ├── map │ │ │ │ ├── mapViewer.adoc │ │ │ │ ├── map_features.adoc │ │ │ │ └── map_project_setup.adoc │ │ │ ├── pivotTable.adoc │ │ │ ├── pivotTable │ │ │ │ ├── pivotTable_ShowPivotAction.adoc │ │ │ │ ├── pivotTable_examples.adoc │ │ │ │ ├── pivotTable_examples │ │ │ │ │ ├── pivotTable_examples_custom.adoc │ │ │ │ │ ├── pivotTable_examples_data │ │ │ │ │ │ ├── pt_create_model.adoc │ │ │ │ │ │ ├── pt_screen_controller.adoc │ │ │ │ │ │ └── pt_xml_descriptor.adoc │ │ │ │ │ ├── pivotTable_examples_data_from_entity.adoc │ │ │ │ │ └── pivotTable_examples_editable.adoc │ │ │ │ └── pivotTable_extension.adoc │ │ │ ├── preface.adoc │ │ │ └── preface │ │ │ │ ├── additional_info.adoc │ │ │ │ ├── audience.adoc │ │ │ │ └── feedback.adoc │ │ └── ru │ │ │ ├── chart.adoc │ │ │ ├── chart │ │ │ ├── chart_configuration.adoc │ │ │ ├── chart_data_binding.adoc │ │ │ ├── chart_example.adoc │ │ │ ├── chart_example │ │ │ │ ├── chart_data_from_entity.adoc │ │ │ │ ├── chart_data_from_entity │ │ │ │ │ ├── cdb_create_model.adoc │ │ │ │ │ ├── cdb_result.adoc │ │ │ │ │ ├── cdb_screen_controller.adoc │ │ │ │ │ └── cdb_xml_descriptor.adoc │ │ │ │ ├── chart_data_simplified.adoc │ │ │ │ ├── chart_project_setup.adoc │ │ │ │ ├── chart_with_data_provider.adoc │ │ │ │ ├── chart_with_data_provider │ │ │ │ │ ├── cdp_result.adoc │ │ │ │ │ ├── cdp_screen_controller.adoc │ │ │ │ │ └── cdp_xml_descriptor.adoc │ │ │ │ ├── custom_json.adoc │ │ │ │ ├── section_incremental_data_update.adoc │ │ │ │ └── section_use_of_events.adoc │ │ │ ├── chart_export.adoc │ │ │ ├── chart_listeners.adoc │ │ │ ├── chart_replacement.adoc │ │ │ ├── chart_types.adoc │ │ │ └── chart_types │ │ │ │ ├── funnel_chart.adoc │ │ │ │ ├── gantt_chart.adoc │ │ │ │ ├── gauge_chart.adoc │ │ │ │ ├── pie_chart.adoc │ │ │ │ ├── radar_chart.adoc │ │ │ │ ├── serial_chart.adoc │ │ │ │ ├── stock_chart.adoc │ │ │ │ └── xy_chart.adoc │ │ │ ├── charts.adoc │ │ │ ├── installation.adoc │ │ │ ├── map.adoc │ │ │ ├── map │ │ │ ├── mapViewer.adoc │ │ │ ├── map_features.adoc │ │ │ └── map_project_setup.adoc │ │ │ ├── pivotTable.adoc │ │ │ ├── pivotTable │ │ │ ├── pivotTable_ShowPivotAction.adoc │ │ │ ├── pivotTable_examples.adoc │ │ │ ├── pivotTable_examples │ │ │ │ ├── pivotTable_examples_custom.adoc │ │ │ │ ├── pivotTable_examples_data │ │ │ │ │ ├── pt_create_model.adoc │ │ │ │ │ ├── pt_screen_controller.adoc │ │ │ │ │ └── pt_xml_descriptor.adoc │ │ │ │ ├── pivotTable_examples_data_from_entity.adoc │ │ │ │ └── pivotTable_examples_editable.adoc │ │ │ └── pivotTable_extension.adoc │ │ │ ├── preface.adoc │ │ │ └── preface │ │ │ ├── additional_info.adoc │ │ │ ├── audience.adoc │ │ │ └── feedback.adoc │ ├── img │ │ ├── chart │ │ │ ├── PivotTable_1.png │ │ │ ├── PivotTable_2.png │ │ │ ├── PivotTable_3.png │ │ │ ├── chart-with-event.png │ │ │ ├── chart_custom_json.png │ │ │ ├── chart_custom_json_title.png │ │ │ ├── chart_incremental-update.png │ │ │ ├── chart_incremental-update_2.png │ │ │ ├── chart_incremental-update_3.gif │ │ │ ├── chart_simple.png │ │ │ ├── charts-hierarchy-dia.png │ │ │ ├── charts-hierarchy-dia.svg │ │ │ ├── charts_allLabels.png │ │ │ ├── charts_balloon.png │ │ │ ├── charts_balloon_additiional.png │ │ │ ├── charts_cursor.png │ │ │ ├── charts_export.png │ │ │ ├── charts_export_menu_1.png │ │ │ ├── charts_export_menu_2.png │ │ │ ├── charts_guides.png │ │ │ ├── charts_hierarchy_diagram.png │ │ │ ├── charts_legend.png │ │ │ ├── charts_scrollbars.png │ │ │ ├── charts_titles.png │ │ │ ├── charts_valueScrollBar.png │ │ │ ├── charts_zoom.png │ │ │ ├── column-chart.png │ │ │ ├── column-chart.svg │ │ │ ├── column3d-chart.png │ │ │ ├── column3d-chart.svg │ │ │ ├── funnel-chart.png │ │ │ ├── funnel-chart.svg │ │ │ ├── gantt-chart.png │ │ │ ├── gantt-chart.svg │ │ │ ├── gauge-chart.png │ │ │ ├── gauge-chart.svg │ │ │ ├── line-chart.png │ │ │ ├── line-chart.svg │ │ │ ├── pie-chart.png │ │ │ ├── pie-chart.svg │ │ │ ├── radar-chart.png │ │ │ ├── radar-chart.svg │ │ │ ├── stackedarea-chart.png │ │ │ ├── stackedarea-chart.svg │ │ │ ├── stock-chart-with-datasets.png │ │ │ ├── stock-chart-with-datasets.svg │ │ │ ├── stock-chart-with-panels.png │ │ │ ├── stock-chart-with-panels.svg │ │ │ ├── stock-chart-with-stockevents.png │ │ │ ├── stock-chart-with-stockevents.svg │ │ │ ├── xy-chart.png │ │ │ └── xy-chart.svg │ │ ├── installation │ │ │ ├── addon_continue.png │ │ │ ├── addon_install.png │ │ │ ├── addons.png │ │ │ └── charts_addon.png │ │ ├── map │ │ │ ├── Circle.png │ │ │ ├── HeatMap.png │ │ │ ├── InfoWindow.png │ │ │ ├── MapLabel.png │ │ │ ├── MarkerImage.png │ │ │ ├── Polygon.png │ │ │ ├── Polyline.png │ │ │ ├── map_demo_click.png │ │ │ ├── map_demo_heatmap.png │ │ │ ├── map_demo_marker.png │ │ │ ├── map_demo_polygon_display.png │ │ │ └── map_demo_polygon_draw.png │ │ ├── pivot │ │ │ ├── PivotTable_1.png │ │ │ ├── PivotTable_2.png │ │ │ └── PivotTable_3.png │ │ └── yEd │ │ │ └── charts_hierarchy_diagram.graphml │ └── source │ │ ├── chart │ │ ├── Column3dChart.java │ │ ├── ContainerDataProvider_example.java │ │ ├── CountryGrowth.java │ │ ├── DateValue.java │ │ ├── EntityDataItem_example.java │ │ ├── GraphItemClickListener.java │ │ ├── MapDataItem_example.java │ │ ├── SimpleDataItem_example.java │ │ ├── StackedAreaChart.java │ │ ├── chart_additionalFields.java │ │ ├── chart_additionalFields.xml │ │ ├── chart_allLabels.xml │ │ ├── chart_axes.xml │ │ ├── chart_axes_band.xml │ │ ├── chart_balloon.xml │ │ ├── chart_chartScrollbar.xml │ │ ├── chart_chartScrollbar2.xml │ │ ├── chart_configure.java │ │ ├── chart_cursor.xml │ │ ├── chart_data.xml │ │ ├── chart_data_simplified.java │ │ ├── chart_data_simplified.xml │ │ ├── chart_export_menu.xml │ │ ├── chart_guides.xml │ │ ├── chart_incremental-update.java │ │ ├── chart_incremental-update.xml │ │ ├── chart_incremental-update_2.java │ │ ├── chart_legend.xml │ │ ├── chart_renderingDelay.xml │ │ ├── chart_titles.xml │ │ ├── charts_valueScrollBar.xml │ │ ├── column3d-chart.js │ │ ├── column3d-chart.xml │ │ ├── containerDataProvider_example.xml │ │ ├── custom_json_1.xml │ │ ├── custom_json_2.java │ │ ├── custom_json_3.java │ │ ├── custom_json_4.xml │ │ ├── funnelChart.xml │ │ ├── funnel_chart.xml │ │ ├── gantt_chart.xml │ │ ├── injectChart.java │ │ ├── pie_chart.xml │ │ ├── radar_chart.xml │ │ ├── responsive.xml │ │ ├── serial_chart.xml │ │ ├── stackedarea-chart.xml │ │ └── xy_chart.xml │ │ ├── map │ │ ├── Circle.java │ │ ├── DrawingOptions.java │ │ ├── HeatMapLayer.java │ │ ├── InfoWindow.java │ │ ├── InfoWindow2.java │ │ ├── MapGeoPoint.java │ │ ├── MapLabel.java │ │ ├── MapMarker.java │ │ ├── MapViewer.java │ │ ├── MarkerImage.java │ │ ├── PolygonOverlay.java │ │ ├── Polyline.java │ │ └── mapViewer.xml │ │ └── pivot │ │ ├── CellClickListener.java │ │ ├── PivotSampleScreen.java │ │ ├── RefreshListener.java │ │ ├── ShowPivotAction.java │ │ ├── ShowPivotAction_2.java │ │ ├── ShowPivotAction_3.java │ │ ├── ShowPivotAction_4.java │ │ ├── ShowPivotAction_5.java │ │ ├── ShowPivotAction_6.java │ │ ├── aggregation.xml │ │ ├── aggregationProperties.xml │ │ ├── aggregations.xml │ │ ├── pivotTableExtension.java │ │ ├── pivot_sample_screen.xml │ │ ├── pivot_table_1.xml │ │ ├── pivot_table_2.java │ │ ├── pivot_table_2.xml │ │ └── pivot_table_3.xml ├── fts │ ├── adoc │ │ ├── en │ │ │ ├── fts.adoc │ │ │ ├── fts_config.adoc │ │ │ ├── fts_properties.adoc │ │ │ ├── general_info.adoc │ │ │ ├── general_info │ │ │ │ ├── index_search_example.adoc │ │ │ │ ├── indexing.adoc │ │ │ │ └── search.adoc │ │ │ ├── installation.adoc │ │ │ ├── preface.adoc │ │ │ ├── preface │ │ │ │ ├── additional_info.adoc │ │ │ │ ├── audience.adoc │ │ │ │ └── feedback.adoc │ │ │ ├── quick_start.adoc │ │ │ └── quick_start │ │ │ │ ├── qs_conf.adoc │ │ │ │ ├── qs_indexing.adoc │ │ │ │ ├── qs_project_setup.adoc │ │ │ │ ├── qs_search_files.adoc │ │ │ │ └── reindex.adoc │ │ └── ru │ │ │ ├── fts.adoc │ │ │ ├── fts_config.adoc │ │ │ ├── fts_properties.adoc │ │ │ ├── general_info.adoc │ │ │ ├── general_info │ │ │ ├── index_search_example.adoc │ │ │ ├── indexing.adoc │ │ │ └── search.adoc │ │ │ ├── installation.adoc │ │ │ ├── preface.adoc │ │ │ ├── preface │ │ │ ├── additional_info.adoc │ │ │ ├── audience.adoc │ │ │ └── feedback.adoc │ │ │ ├── quick_start.adoc │ │ │ └── quick_start │ │ │ ├── qs_conf.adoc │ │ │ ├── qs_indexing.adoc │ │ │ ├── qs_project_setup.adoc │ │ │ ├── qs_search_files.adoc │ │ │ └── reindex.adoc │ ├── img │ │ ├── 2.1_project_setup.png │ │ ├── Example1Classes.png │ │ ├── addon_continue.png │ │ ├── addon_install.png │ │ ├── addons.png │ │ ├── book_publication_file_is_not.png │ │ ├── book_publication_files_uploaded.png │ │ ├── book_publication_fts_result.png │ │ ├── book_publication_new_attribute.png │ │ ├── book_publication_new_browser.png │ │ ├── fts_addon.png │ │ ├── fts_enabled_true.png │ │ ├── jmx_fts_setup.png │ │ ├── refresh_button.png │ │ ├── run_button.png │ │ └── yEd │ │ │ └── Example1Classes.graphml │ └── source │ │ ├── .gitignore │ │ ├── fts_config_1.xml │ │ ├── fts_config_2.xml │ │ └── fts_config_3.xml ├── manual │ ├── adoc │ │ ├── en │ │ │ ├── app_properties_reference.adoc │ │ │ ├── config_files.adoc │ │ │ ├── config_files │ │ │ │ ├── app-component.xml.adoc │ │ │ │ ├── context.xml.adoc │ │ │ │ ├── default-permission-values.xml.adoc │ │ │ │ ├── dispatcher-spring.xml.adoc │ │ │ │ ├── menu.xml.adoc │ │ │ │ ├── metadata.xml.adoc │ │ │ │ ├── permissions.xml.adoc │ │ │ │ ├── persistence.xml.adoc │ │ │ │ ├── remoting-spring.xml.adoc │ │ │ │ ├── spring.xml.adoc │ │ │ │ ├── views.xml.adoc │ │ │ │ └── web.xml.adoc │ │ │ ├── deployment.adoc │ │ │ ├── deployment │ │ │ │ ├── app_dirs.adoc │ │ │ │ ├── app_dirs │ │ │ │ │ ├── conf_dir.adoc │ │ │ │ │ ├── db_dir.adoc │ │ │ │ │ ├── log_dir.adoc │ │ │ │ │ ├── temp_dir.adoc │ │ │ │ │ └── work_dir.adoc │ │ │ │ ├── app_home.adoc │ │ │ │ ├── db_update_in_prod.adoc │ │ │ │ ├── db_update_in_prod │ │ │ │ │ ├── db_update_in_prod_by_server.adoc │ │ │ │ │ └── db_update_in_prod_cmdline.adoc │ │ │ │ ├── deployment_variants.adoc │ │ │ │ ├── deployment_variants │ │ │ │ │ ├── bluemix_deployment.adoc │ │ │ │ │ ├── docker_deployment.adoc │ │ │ │ │ ├── fast_deployment.adoc │ │ │ │ │ ├── fast_deployment │ │ │ │ │ │ └── tomcat_in_prod.adoc │ │ │ │ │ ├── heroku_deployment.adoc │ │ │ │ │ ├── heroku_deployment │ │ │ │ │ │ ├── heroku_container.adoc │ │ │ │ │ │ ├── heroku_github_deployment.adoc │ │ │ │ │ │ └── heroku_war_deployment.adoc │ │ │ │ │ ├── jelastic_deployment.adoc │ │ │ │ │ ├── tomcat_war_deployment.adoc │ │ │ │ │ ├── tomcat_war_deployment_linux.adoc │ │ │ │ │ ├── uberjar_deployment.adoc │ │ │ │ │ ├── uberjar_deployment │ │ │ │ │ │ └── uberjar_https.adoc │ │ │ │ │ ├── war_deployment.adoc │ │ │ │ │ └── wildfly_war_deployment.adoc │ │ │ │ ├── health_check_url.adoc │ │ │ │ ├── jmx_tools.adoc │ │ │ │ ├── jmx_tools │ │ │ │ │ ├── jmx_console.adoc │ │ │ │ │ ├── jmx_remote_access.adoc │ │ │ │ │ └── jmx_remote_access │ │ │ │ │ │ ├── jmx_remote_access_tomcat_linux.adoc │ │ │ │ │ │ └── jmx_remote_access_tomcat_windows.adoc │ │ │ │ ├── proxy_configuration_tomcat.adoc │ │ │ │ ├── proxy_configuration_uberjar.adoc │ │ │ │ ├── scaling.adoc │ │ │ │ ├── scaling │ │ │ │ │ ├── cluster_mw.adoc │ │ │ │ │ ├── cluster_mw │ │ │ │ │ │ ├── cluster_mw_client.adoc │ │ │ │ │ │ ├── cluster_mw_server.adoc │ │ │ │ │ │ └── cluster_mw_zk.adoc │ │ │ │ │ ├── cluster_webclient.adoc │ │ │ │ │ ├── cluster_webclient │ │ │ │ │ │ ├── cluster_webclient_lb.adoc │ │ │ │ │ │ └── cluster_webclient_tomcat.adoc │ │ │ │ │ └── serverId.adoc │ │ │ │ └── server_push_settings.adoc │ │ │ ├── development.adoc │ │ │ ├── development │ │ │ │ ├── app_components_recipes.adoc │ │ │ │ ├── app_components_recipes │ │ │ │ │ ├── app_components_additional_ds.adoc │ │ │ │ │ ├── app_components_dev.adoc │ │ │ │ │ ├── app_components_sample.adoc │ │ │ │ │ ├── app_components_usage.adoc │ │ │ │ │ └── servlet_registration_sample.adoc │ │ │ │ ├── build_scripts.adoc │ │ │ │ ├── build_scripts │ │ │ │ │ ├── access_to_repo.adoc │ │ │ │ │ ├── build.gradle.adoc │ │ │ │ │ ├── build.gradle_tasks.adoc │ │ │ │ │ ├── build.gradle_tasks │ │ │ │ │ │ ├── build.gradle_buildInfo.adoc │ │ │ │ │ │ ├── build.gradle_buildUberJar.adoc │ │ │ │ │ │ ├── build.gradle_buildWar.adoc │ │ │ │ │ │ ├── build.gradle_buildWidgetSet.adoc │ │ │ │ │ │ ├── build.gradle_createDb.adoc │ │ │ │ │ │ ├── build.gradle_debugWidgetSet.adoc │ │ │ │ │ │ ├── build.gradle_deploy.adoc │ │ │ │ │ │ ├── build.gradle_deployThemes.adoc │ │ │ │ │ │ ├── build.gradle_deployWar.adoc │ │ │ │ │ │ ├── build.gradle_restart.adoc │ │ │ │ │ │ ├── build.gradle_setupTomcat.adoc │ │ │ │ │ │ ├── build.gradle_start.adoc │ │ │ │ │ │ ├── build.gradle_startDb.adoc │ │ │ │ │ │ ├── build.gradle_stop.adoc │ │ │ │ │ │ ├── build.gradle_stopDb.adoc │ │ │ │ │ │ ├── build.gradle_tomcat.adoc │ │ │ │ │ │ ├── build.gradle_updateDb.adoc │ │ │ │ │ │ └── build.gradle_zipProject.adoc │ │ │ │ │ ├── build_task_start.adoc │ │ │ │ │ ├── private_repo.adoc │ │ │ │ │ ├── private_repo │ │ │ │ │ │ ├── private_repo_configure.adoc │ │ │ │ │ │ ├── private_repo_in_isolated_network.adoc │ │ │ │ │ │ ├── private_repo_install.adoc │ │ │ │ │ │ └── private_repo_usage.adoc │ │ │ │ │ └── support_for_kotlin.adoc │ │ │ │ ├── debugging.adoc │ │ │ │ ├── debugging │ │ │ │ │ ├── debug_setup.adoc │ │ │ │ │ ├── debug_version.adoc │ │ │ │ │ └── debug_widgets.adoc │ │ │ │ ├── hot_deploy.adoc │ │ │ │ ├── logging.adoc │ │ │ │ ├── logging │ │ │ │ │ ├── logging_conf_int.adoc │ │ │ │ │ └── logging_useful_loggers.adoc │ │ │ │ ├── project_creation.adoc │ │ │ │ ├── project_file_structure.adoc │ │ │ │ ├── recommended_code_style.adoc │ │ │ │ ├── spring_profiles.adoc │ │ │ │ ├── testing.adoc │ │ │ │ ├── testing │ │ │ │ │ ├── integration_tests_client.adoc │ │ │ │ │ └── integration_tests_mw.adoc │ │ │ │ ├── troubleshooting.adoc │ │ │ │ └── troubleshooting │ │ │ │ │ └── widgetset_win_path_too_long.adoc │ │ │ ├── framework.adoc │ │ │ ├── framework │ │ │ │ ├── architecture.adoc │ │ │ │ ├── architecture │ │ │ │ │ ├── app_components.adoc │ │ │ │ │ ├── app_modules.adoc │ │ │ │ │ ├── app_structure.adoc │ │ │ │ │ └── app_tiers.adoc │ │ │ │ ├── common_components.adoc │ │ │ │ ├── common_components │ │ │ │ │ ├── appContext.adoc │ │ │ │ │ ├── app_lifecycle_events.adoc │ │ │ │ │ ├── app_properties.adoc │ │ │ │ │ ├── app_properties │ │ │ │ │ │ ├── app_properties_db.adoc │ │ │ │ │ │ ├── app_properties_files.adoc │ │ │ │ │ │ ├── config_interfaces.adoc │ │ │ │ │ │ └── config_interfaces │ │ │ │ │ │ │ ├── config_interface_default_values.adoc │ │ │ │ │ │ │ ├── config_interface_property_types.adoc │ │ │ │ │ │ │ └── config_interface_usage.adoc │ │ │ │ │ ├── authentication.adoc │ │ │ │ │ ├── authentication │ │ │ │ │ │ ├── login.adoc │ │ │ │ │ │ ├── securityContext.adoc │ │ │ │ │ │ └── userSession.adoc │ │ │ │ │ ├── bean_validation.adoc │ │ │ │ │ ├── bean_validation │ │ │ │ │ │ ├── bean_validation_constraints.adoc │ │ │ │ │ │ └── bean_validation_running.adoc │ │ │ │ │ ├── data_model.adoc │ │ │ │ │ ├── data_model │ │ │ │ │ │ ├── base_entity_classes.adoc │ │ │ │ │ │ ├── entity_annotations.adoc │ │ │ │ │ │ ├── entity_annotations │ │ │ │ │ │ │ ├── entity_attr_annotations.adoc │ │ │ │ │ │ │ └── entity_class_annotations.adoc │ │ │ │ │ │ ├── enum_attributes.adoc │ │ │ │ │ │ ├── soft_deletion.adoc │ │ │ │ │ │ └── soft_deletion │ │ │ │ │ │ │ ├── delete_policy.adoc │ │ │ │ │ │ │ ├── soft_deletion_unique_constr.adoc │ │ │ │ │ │ │ └── soft_deletion_usage.adoc │ │ │ │ │ ├── entity_attribute_access.adoc │ │ │ │ │ ├── exception_handling.adoc │ │ │ │ │ ├── exception_handling │ │ │ │ │ │ ├── exceptionHandlers.adoc │ │ │ │ │ │ ├── exceptionHandlers │ │ │ │ │ │ │ └── unique_constraint_violation_exceptions.adoc │ │ │ │ │ │ ├── exception_classes.adoc │ │ │ │ │ │ └── remoteException.adoc │ │ │ │ │ ├── infrastructure_interfaces.adoc │ │ │ │ │ ├── infrastructure_interfaces │ │ │ │ │ │ ├── configuration.adoc │ │ │ │ │ │ ├── dataManager.adoc │ │ │ │ │ │ ├── dataManager │ │ │ │ │ │ │ ├── dm_security.adoc │ │ │ │ │ │ │ ├── dm_vs_em.adoc │ │ │ │ │ │ │ ├── query_from_selected.adoc │ │ │ │ │ │ │ ├── query_with_distinct.adoc │ │ │ │ │ │ │ └── transactionalDataManager.adoc │ │ │ │ │ │ ├── entityStates.adoc │ │ │ │ │ │ ├── entityStates │ │ │ │ │ │ │ └── persistenceHelper.adoc │ │ │ │ │ │ ├── events.adoc │ │ │ │ │ │ ├── messages.adoc │ │ │ │ │ │ ├── messages │ │ │ │ │ │ │ └── messageTools.adoc │ │ │ │ │ │ ├── metadata.adoc │ │ │ │ │ │ ├── metadata │ │ │ │ │ │ │ └── metadataTools.adoc │ │ │ │ │ │ ├── resources.adoc │ │ │ │ │ │ ├── scripting.adoc │ │ │ │ │ │ ├── security.adoc │ │ │ │ │ │ ├── timeSource.adoc │ │ │ │ │ │ ├── userSessionSource.adoc │ │ │ │ │ │ └── uuidSource.adoc │ │ │ │ │ ├── jmx_beans.adoc │ │ │ │ │ ├── jmx_beans │ │ │ │ │ │ ├── jmx_beans_creation.adoc │ │ │ │ │ │ ├── jmx_beans_platform.adoc │ │ │ │ │ │ └── jmx_beans_platform │ │ │ │ │ │ │ ├── cachingFacadeMBean.adoc │ │ │ │ │ │ │ ├── configStorageMBean.adoc │ │ │ │ │ │ │ ├── emailerMBean.adoc │ │ │ │ │ │ │ ├── persistenceManagerMBean.adoc │ │ │ │ │ │ │ ├── scriptingManagerMBean.adoc │ │ │ │ │ │ │ └── serverInfoMBean.adoc │ │ │ │ │ ├── localization.adoc │ │ │ │ │ ├── localization │ │ │ │ │ │ ├── entity_localization.adoc │ │ │ │ │ │ ├── enum_localization.adoc │ │ │ │ │ │ ├── main_message_pack.adoc │ │ │ │ │ │ └── message_packs.adoc │ │ │ │ │ ├── managed_beans.adoc │ │ │ │ │ ├── managed_beans │ │ │ │ │ │ ├── managed_beans_creation.adoc │ │ │ │ │ │ └── managed_beans_usage.adoc │ │ │ │ │ ├── metadata_framework.adoc │ │ │ │ │ ├── metadata_framework │ │ │ │ │ │ ├── datatype.adoc │ │ │ │ │ │ ├── datatype │ │ │ │ │ │ │ ├── datatype_custom_example.adoc │ │ │ │ │ │ │ ├── datatype_date_number_format.adoc │ │ │ │ │ │ │ ├── datatype_format_strings.adoc │ │ │ │ │ │ │ └── datatype_ui_format.adoc │ │ │ │ │ │ ├── meta_annotations.adoc │ │ │ │ │ │ ├── metadata_building.adoc │ │ │ │ │ │ └── metadata_interfaces.adoc │ │ │ │ │ ├── views.adoc │ │ │ │ │ └── views │ │ │ │ │ │ └── views_creation.adoc │ │ │ │ ├── dbms.adoc │ │ │ │ ├── dbms │ │ │ │ │ ├── db_connection.adoc │ │ │ │ │ ├── db_connection │ │ │ │ │ │ └── db_schema_connection.adoc │ │ │ │ │ ├── db_scripts.adoc │ │ │ │ │ ├── db_scripts │ │ │ │ │ │ ├── db_scripts_groovy.adoc │ │ │ │ │ │ ├── db_scripts_sql.adoc │ │ │ │ │ │ ├── db_update_gradle.adoc │ │ │ │ │ │ └── db_update_server.adoc │ │ │ │ │ ├── dbms_types.adoc │ │ │ │ │ └── dbms_types │ │ │ │ │ │ ├── arbitrary_dbms.adoc │ │ │ │ │ │ ├── db_mssql_features.adoc │ │ │ │ │ │ ├── db_mysql_features.adoc │ │ │ │ │ │ └── dbms_version.adoc │ │ │ │ ├── extension.adoc │ │ │ │ ├── extension │ │ │ │ │ ├── bean_extension.adoc │ │ │ │ │ ├── entity_extension.adoc │ │ │ │ │ ├── main_servlets_registration.adoc │ │ │ │ │ ├── screen_extension.adoc │ │ │ │ │ └── servlet_registration.adoc │ │ │ │ ├── features.adoc │ │ │ │ ├── features │ │ │ │ │ ├── credits.adoc │ │ │ │ │ ├── dynamic_attributes.adoc │ │ │ │ │ ├── dynamic_attributes │ │ │ │ │ │ ├── categorized_entity.adoc │ │ │ │ │ │ └── dynamic_attributes_mgmt.adoc │ │ │ │ │ ├── email_sending.adoc │ │ │ │ │ ├── email_sending │ │ │ │ │ │ ├── email_attachments.adoc │ │ │ │ │ │ ├── email_sending_methods.adoc │ │ │ │ │ │ ├── email_sending_properties.adoc │ │ │ │ │ │ └── sending_emails_recipe.adoc │ │ │ │ │ ├── entityImportExport.adoc │ │ │ │ │ ├── entity_inspector.adoc │ │ │ │ │ ├── entity_log.adoc │ │ │ │ │ ├── entity_log │ │ │ │ │ │ ├── entity_log_setup.adoc │ │ │ │ │ │ └── entity_log_view.adoc │ │ │ │ │ ├── entity_snapshots.adoc │ │ │ │ │ ├── entity_snapshots │ │ │ │ │ │ ├── entity_snapshots_save.adoc │ │ │ │ │ │ └── entity_snapshots_view.adoc │ │ │ │ │ ├── entity_statistics.adoc │ │ │ │ │ ├── file_storage.adoc │ │ │ │ │ ├── file_storage │ │ │ │ │ │ ├── aws_file_storage_impl.adoc │ │ │ │ │ │ ├── fileLoader.adoc │ │ │ │ │ │ ├── file_download.adoc │ │ │ │ │ │ ├── file_storage_impl.adoc │ │ │ │ │ │ └── file_upload.adoc │ │ │ │ │ ├── folders_pane.adoc │ │ │ │ │ ├── folders_pane │ │ │ │ │ │ ├── application_folder.adoc │ │ │ │ │ │ ├── record_set.adoc │ │ │ │ │ │ └── search_folder.adoc │ │ │ │ │ ├── link_to_screen.adoc │ │ │ │ │ ├── myBatis.adoc │ │ │ │ │ ├── pessimistic_locking.adoc │ │ │ │ │ ├── queryRunner.adoc │ │ │ │ │ ├── scheduled_tasks.adoc │ │ │ │ │ ├── scheduled_tasks │ │ │ │ │ │ ├── scheduled_tasks_cuba.adoc │ │ │ │ │ │ ├── scheduled_tasks_cuba │ │ │ │ │ │ │ ├── scheduled_tasks_cuba_control.adoc │ │ │ │ │ │ │ ├── scheduled_tasks_cuba_impl.adoc │ │ │ │ │ │ │ └── scheduled_tasks_cuba_reg.adoc │ │ │ │ │ │ └── scheduled_tasks_spring.adoc │ │ │ │ │ ├── uniqueNumbers.adoc │ │ │ │ │ └── userSession_log.adoc │ │ │ │ ├── front_ui.adoc │ │ │ │ ├── front_ui │ │ │ │ │ ├── front_in_studio.adoc │ │ │ │ │ ├── polymer_ui.adoc │ │ │ │ │ └── react_ui.adoc │ │ │ │ ├── gui_framework.adoc │ │ │ │ ├── gui_framework │ │ │ │ │ ├── background_tasks.adoc │ │ │ │ │ ├── background_tasks │ │ │ │ │ │ └── background_task_examples.adoc │ │ │ │ │ ├── composite_components.adoc │ │ │ │ │ ├── gui_Action.adoc │ │ │ │ │ ├── gui_Action │ │ │ │ │ │ ├── baseAction.adoc │ │ │ │ │ │ ├── custom_action_types.adoc │ │ │ │ │ │ ├── declarative_actions.adoc │ │ │ │ │ │ ├── standard_actions.adoc │ │ │ │ │ │ └── standard_actions │ │ │ │ │ │ │ ├── AddAction.adoc │ │ │ │ │ │ │ ├── BulkEditAction.adoc │ │ │ │ │ │ │ ├── ClearAction.adoc │ │ │ │ │ │ │ ├── CreateAction.adoc │ │ │ │ │ │ │ ├── EditAction.adoc │ │ │ │ │ │ │ ├── ExcelAction.adoc │ │ │ │ │ │ │ ├── ExcludeAction.adoc │ │ │ │ │ │ │ ├── LookupAction.adoc │ │ │ │ │ │ │ ├── OpenAction.adoc │ │ │ │ │ │ │ ├── OpenCompositionAction.adoc │ │ │ │ │ │ │ ├── RefreshAction.adoc │ │ │ │ │ │ │ ├── RemoveAction.adoc │ │ │ │ │ │ │ └── ViewAction.adoc │ │ │ │ │ ├── gui_anonymous_access.adoc │ │ │ │ │ ├── gui_data.adoc │ │ │ │ │ ├── gui_data │ │ │ │ │ │ ├── gui_DataContext.adoc │ │ │ │ │ │ ├── gui_data_containers.adoc │ │ │ │ │ │ ├── gui_data_containers │ │ │ │ │ │ │ ├── gui_collection_container.adoc │ │ │ │ │ │ │ ├── gui_instance_container.adoc │ │ │ │ │ │ │ ├── gui_keyvalue_containers.adoc │ │ │ │ │ │ │ └── gui_property_containers.adoc │ │ │ │ │ │ ├── gui_data_loaders.adoc │ │ │ │ │ │ ├── gui_using_data_comp.adoc │ │ │ │ │ │ └── gui_using_data_comp │ │ │ │ │ │ │ ├── gui_data_comp_decl.adoc │ │ │ │ │ │ │ ├── gui_data_comp_dep.adoc │ │ │ │ │ │ │ ├── gui_data_comp_param.adoc │ │ │ │ │ │ │ ├── gui_data_comp_prog.adoc │ │ │ │ │ │ │ └── gui_data_comp_sort.adoc │ │ │ │ │ ├── gui_dialogs.adoc │ │ │ │ │ ├── gui_facets.adoc │ │ │ │ │ ├── gui_facets │ │ │ │ │ │ ├── gui_ClipboardTrigger.adoc │ │ │ │ │ │ ├── gui_DataLoadCoordinator.adoc │ │ │ │ │ │ ├── gui_EditorScreenFacet.adoc │ │ │ │ │ │ ├── gui_InputDialogFacet.adoc │ │ │ │ │ │ ├── gui_LookupScreenFacet.adoc │ │ │ │ │ │ ├── gui_MessageDialogFacet.adoc │ │ │ │ │ │ ├── gui_NotificationFacet.adoc │ │ │ │ │ │ ├── gui_OptionDialogFacet.adoc │ │ │ │ │ │ ├── gui_ScreenFacet.adoc │ │ │ │ │ │ └── gui_Timer.adoc │ │ │ │ │ ├── gui_icons.adoc │ │ │ │ │ ├── gui_icons │ │ │ │ │ │ ├── icon_provider.adoc │ │ │ │ │ │ └── icon_set.adoc │ │ │ │ │ ├── gui_notifications.adoc │ │ │ │ │ ├── gui_screens.adoc │ │ │ │ │ ├── gui_screens │ │ │ │ │ │ ├── gui_root_screens.adoc │ │ │ │ │ │ ├── opening_screens.adoc │ │ │ │ │ │ ├── screen_controllers.adoc │ │ │ │ │ │ ├── screen_controllers │ │ │ │ │ │ │ ├── screen_controller_annotations.adoc │ │ │ │ │ │ │ ├── screen_controller_events.adoc │ │ │ │ │ │ │ ├── screen_controller_methods.adoc │ │ │ │ │ │ │ └── screen_fragment_events.adoc │ │ │ │ │ │ ├── screen_descriptors.adoc │ │ │ │ │ │ ├── screen_mixins.adoc │ │ │ │ │ │ ├── screen_validation.adoc │ │ │ │ │ │ └── using_screen_fragments.adoc │ │ │ │ │ ├── gui_themes.adoc │ │ │ │ │ ├── gui_themes │ │ │ │ │ │ ├── web_theme_creation.adoc │ │ │ │ │ │ ├── web_theme_creation │ │ │ │ │ │ │ ├── custom_theme_facebook.adoc │ │ │ │ │ │ │ └── custom_theme_hover_dark.adoc │ │ │ │ │ │ ├── web_theme_extension.adoc │ │ │ │ │ │ ├── web_theme_inheritance.adoc │ │ │ │ │ │ ├── web_theme_reusable.adoc │ │ │ │ │ │ └── web_theme_usage.adoc │ │ │ │ │ ├── gui_vcl.adoc │ │ │ │ │ ├── gui_vcl │ │ │ │ │ │ ├── gui_api.adoc │ │ │ │ │ │ ├── gui_attributes.adoc │ │ │ │ │ │ ├── gui_components.adoc │ │ │ │ │ │ ├── gui_components │ │ │ │ │ │ │ ├── gui_AppMenu.adoc │ │ │ │ │ │ │ ├── gui_BrowserFrame.adoc │ │ │ │ │ │ │ ├── gui_BulkEditor.adoc │ │ │ │ │ │ │ ├── gui_Button.adoc │ │ │ │ │ │ │ ├── gui_Calendar.adoc │ │ │ │ │ │ │ ├── gui_CapsLockIndicator.adoc │ │ │ │ │ │ │ ├── gui_CheckBox.adoc │ │ │ │ │ │ │ ├── gui_CheckBoxGroup.adoc │ │ │ │ │ │ │ ├── gui_ColorPicker.adoc │ │ │ │ │ │ │ ├── gui_CurrencyField.adoc │ │ │ │ │ │ │ ├── gui_DataGrid.adoc │ │ │ │ │ │ │ ├── gui_DateField.adoc │ │ │ │ │ │ │ ├── gui_DatePicker.adoc │ │ │ │ │ │ │ ├── gui_Embedded.adoc │ │ │ │ │ │ │ ├── gui_FieldGroup.adoc │ │ │ │ │ │ │ ├── gui_FileMultiUploadField.adoc │ │ │ │ │ │ │ ├── gui_FileUploadField.adoc │ │ │ │ │ │ │ ├── gui_Filter.adoc │ │ │ │ │ │ │ ├── gui_Form.adoc │ │ │ │ │ │ │ ├── gui_GroupTable.adoc │ │ │ │ │ │ │ ├── gui_Image.adoc │ │ │ │ │ │ │ ├── gui_Label.adoc │ │ │ │ │ │ │ ├── gui_Link.adoc │ │ │ │ │ │ │ ├── gui_LinkButton.adoc │ │ │ │ │ │ │ ├── gui_LookupField.adoc │ │ │ │ │ │ │ ├── gui_LookupPickerField.adoc │ │ │ │ │ │ │ ├── gui_MaskedField.adoc │ │ │ │ │ │ │ ├── gui_OptionsGroup.adoc │ │ │ │ │ │ │ ├── gui_OptionsList.adoc │ │ │ │ │ │ │ ├── gui_PasswordField.adoc │ │ │ │ │ │ │ ├── gui_PickerField.adoc │ │ │ │ │ │ │ ├── gui_PopupButton.adoc │ │ │ │ │ │ │ ├── gui_PopupView.adoc │ │ │ │ │ │ │ ├── gui_ProgressBar.adoc │ │ │ │ │ │ │ ├── gui_RadioButtonGroup.adoc │ │ │ │ │ │ │ ├── gui_RelatedEntities.adoc │ │ │ │ │ │ │ ├── gui_ResizableTextArea.adoc │ │ │ │ │ │ │ ├── gui_RichTextArea.adoc │ │ │ │ │ │ │ ├── gui_SearchPickerField.adoc │ │ │ │ │ │ │ ├── gui_SideMenu.adoc │ │ │ │ │ │ │ ├── gui_Slider.adoc │ │ │ │ │ │ │ ├── gui_SourceCodeEditor.adoc │ │ │ │ │ │ │ ├── gui_SuggestionField.adoc │ │ │ │ │ │ │ ├── gui_SuggestionPickerField.adoc │ │ │ │ │ │ │ ├── gui_Table.adoc │ │ │ │ │ │ │ ├── gui_TextArea.adoc │ │ │ │ │ │ │ ├── gui_TextField.adoc │ │ │ │ │ │ │ ├── gui_TimeField.adoc │ │ │ │ │ │ │ ├── gui_TokenList.adoc │ │ │ │ │ │ │ ├── gui_Tree.adoc │ │ │ │ │ │ │ ├── gui_TreeDataGrid.adoc │ │ │ │ │ │ │ ├── gui_TreeTable.adoc │ │ │ │ │ │ │ └── gui_TwinColumn.adoc │ │ │ │ │ │ ├── gui_layouts.adoc │ │ │ │ │ │ ├── gui_layouts │ │ │ │ │ │ │ ├── gui_Accordion.adoc │ │ │ │ │ │ │ ├── gui_BoxLayout.adoc │ │ │ │ │ │ │ ├── gui_ButtonsPanel.adoc │ │ │ │ │ │ │ ├── gui_CssLayout.adoc │ │ │ │ │ │ │ ├── gui_Frame.adoc │ │ │ │ │ │ │ ├── gui_GridLayout.adoc │ │ │ │ │ │ │ ├── gui_GroupBoxLayout.adoc │ │ │ │ │ │ │ ├── gui_HtmlBoxLayout.adoc │ │ │ │ │ │ │ ├── gui_ScrollBoxLayout.adoc │ │ │ │ │ │ │ ├── gui_SplitPanel.adoc │ │ │ │ │ │ │ ├── gui_TabSheet.adoc │ │ │ │ │ │ │ └── gui_layout.adoc │ │ │ │ │ │ ├── gui_misc.adoc │ │ │ │ │ │ ├── gui_misc │ │ │ │ │ │ │ ├── gui_formatter.adoc │ │ │ │ │ │ │ ├── gui_presentations.adoc │ │ │ │ │ │ │ ├── gui_validator.adoc │ │ │ │ │ │ │ └── uiComponents.adoc │ │ │ │ │ │ ├── screen_layout_rules.adoc │ │ │ │ │ │ └── screen_layout_rules │ │ │ │ │ │ │ ├── screen_layout_mistakes.adoc │ │ │ │ │ │ │ ├── screen_layout_rules_alignment.adoc │ │ │ │ │ │ │ ├── screen_layout_rules_margins.adoc │ │ │ │ │ │ │ └── screen_layout_rules_positioning.adoc │ │ │ │ │ ├── gui_web.adoc │ │ │ │ │ ├── html_attributes.adoc │ │ │ │ │ ├── own_components.adoc │ │ │ │ │ ├── own_components │ │ │ │ │ │ ├── helperScreenDependencyUtils.adoc │ │ │ │ │ │ ├── jsComponent.adoc │ │ │ │ │ │ ├── own_component_samples.adoc │ │ │ │ │ │ ├── own_component_samples │ │ │ │ │ │ │ ├── gwt_component_sample.adoc │ │ │ │ │ │ │ ├── js_library_sample.adoc │ │ │ │ │ │ │ ├── own_component_in_studio.adoc │ │ │ │ │ │ │ ├── vaadin_addon_sample.adoc │ │ │ │ │ │ │ └── vaadin_addon_sample_gui.adoc │ │ │ │ │ │ └── using_webjars.adoc │ │ │ │ │ ├── pluggable_component_factories.adoc │ │ │ │ │ ├── shortcuts.adoc │ │ │ │ │ ├── static_resources.adoc │ │ │ │ │ ├── uiRefreshEvent.adoc │ │ │ │ │ ├── unsupported_browser_page.adoc │ │ │ │ │ ├── url_history_navigation.adoc │ │ │ │ │ ├── url_history_navigation │ │ │ │ │ │ ├── handling_url_changes.adoc │ │ │ │ │ │ ├── url_navigation_api_usage.adoc │ │ │ │ │ │ ├── url_routes_generator.adoc │ │ │ │ │ │ └── url_routing.adoc │ │ │ │ │ ├── webBrowserTools.adoc │ │ │ │ │ ├── webComponentsHelper.adoc │ │ │ │ │ └── web_login.adoc │ │ │ │ ├── gui_legacy.adoc │ │ │ │ ├── gui_legacy │ │ │ │ │ ├── datasources.adoc │ │ │ │ │ ├── datasources │ │ │ │ │ │ ├── dataSupplier.adoc │ │ │ │ │ │ ├── datasource_creation.adoc │ │ │ │ │ │ ├── datasource_creation │ │ │ │ │ │ │ ├── datasource_custom_class.adoc │ │ │ │ │ │ │ ├── datasource_decl_creation.adoc │ │ │ │ │ │ │ └── datasource_prog_creation.adoc │ │ │ │ │ │ ├── datasource_listeners.adoc │ │ │ │ │ │ ├── datasource_query.adoc │ │ │ │ │ │ ├── datasource_query │ │ │ │ │ │ │ ├── datasource_query_case_insensitive.adoc │ │ │ │ │ │ │ ├── datasource_query_filter.adoc │ │ │ │ │ │ │ ├── datasource_query_params.adoc │ │ │ │ │ │ │ └── datasource_query_results.adoc │ │ │ │ │ │ ├── dsContext.adoc │ │ │ │ │ │ └── value_datasources.adoc │ │ │ │ │ ├── dialogs_and_notifications.adoc │ │ │ │ │ ├── dialogs_and_notifications │ │ │ │ │ │ ├── dialogs.adoc │ │ │ │ │ │ └── notifications.adoc │ │ │ │ │ ├── list_actions.adoc │ │ │ │ │ ├── picker_actions.adoc │ │ │ │ │ ├── screens.adoc │ │ │ │ │ ├── screens.xml.adoc │ │ │ │ │ └── screens │ │ │ │ │ │ ├── screen_agent.adoc │ │ │ │ │ │ ├── screen_controller.adoc │ │ │ │ │ │ ├── screen_controller │ │ │ │ │ │ ├── abstractEditor.adoc │ │ │ │ │ │ ├── abstractFrame.adoc │ │ │ │ │ │ ├── abstractLookup.adoc │ │ │ │ │ │ ├── abstractWindow.adoc │ │ │ │ │ │ ├── companions.adoc │ │ │ │ │ │ ├── entityCombinedScreen.adoc │ │ │ │ │ │ └── screen_controller_injection.adoc │ │ │ │ │ │ ├── screen_types.adoc │ │ │ │ │ │ ├── screen_types │ │ │ │ │ │ ├── frame.adoc │ │ │ │ │ │ ├── screen_combined.adoc │ │ │ │ │ │ ├── screen_edit.adoc │ │ │ │ │ │ ├── screen_lookup.adoc │ │ │ │ │ │ └── screen_simple.adoc │ │ │ │ │ │ └── screen_xml.adoc │ │ │ │ ├── middleware.adoc │ │ │ │ ├── middleware │ │ │ │ │ ├── data_store.adoc │ │ │ │ │ ├── entityChangedEvent.adoc │ │ │ │ │ ├── entityPersistingEvent.adoc │ │ │ │ │ ├── entity_cache.adoc │ │ │ │ │ ├── orm.adoc │ │ │ │ │ ├── orm │ │ │ │ │ │ ├── entityManager.adoc │ │ │ │ │ │ ├── entity_listeners.adoc │ │ │ │ │ │ ├── entity_states.adoc │ │ │ │ │ │ ├── lazy_loading.adoc │ │ │ │ │ │ ├── nativeQuery.adoc │ │ │ │ │ │ ├── query.adoc │ │ │ │ │ │ └── query │ │ │ │ │ │ │ ├── jpql_functions.adoc │ │ │ │ │ │ │ ├── jpql_macro.adoc │ │ │ │ │ │ │ └── query_case_insensitive.adoc │ │ │ │ │ ├── persistence.adoc │ │ │ │ │ ├── persistence │ │ │ │ │ │ ├── dbTypeConverter.adoc │ │ │ │ │ │ └── persistenceTools.adoc │ │ │ │ │ ├── services.adoc │ │ │ │ │ ├── services │ │ │ │ │ │ ├── dataService.adoc │ │ │ │ │ │ ├── service_creation.adoc │ │ │ │ │ │ └── service_import.adoc │ │ │ │ │ ├── system_authentication.adoc │ │ │ │ │ ├── transactions.adoc │ │ │ │ │ └── transactions │ │ │ │ │ │ ├── transaction_listeners.adoc │ │ │ │ │ │ ├── transaction_params.adoc │ │ │ │ │ │ ├── transactions_decl.adoc │ │ │ │ │ │ ├── transactions_interaction.adoc │ │ │ │ │ │ └── transactions_prog.adoc │ │ │ │ └── portal.adoc │ │ │ ├── glossary.adoc │ │ │ ├── introduction.adoc │ │ │ ├── manual.adoc │ │ │ ├── preface.adoc │ │ │ ├── quick_start.adoc │ │ │ ├── removed_sections.adoc │ │ │ ├── removed_sections │ │ │ │ ├── app_start_recipe.adoc │ │ │ │ ├── association_mtm.adoc │ │ │ │ ├── association_mtm_recipe_1.adoc │ │ │ │ ├── association_mtm_recipe_2.adoc │ │ │ │ ├── business_logic_recipes.adoc │ │ │ │ ├── composition_deep3_recipe.adoc │ │ │ │ ├── composition_deep_recipe.adoc │ │ │ │ ├── composition_impl_recipe.adoc │ │ │ │ ├── composition_oto_recipe.adoc │ │ │ │ ├── composition_recipe.adoc │ │ │ │ ├── cookbook.adoc │ │ │ │ ├── databases.adoc │ │ │ │ ├── db_update_in_dev.adoc │ │ │ │ ├── entity_inheritance.adoc │ │ │ │ ├── getting_messages.adoc │ │ │ │ ├── images_in_table.adoc │ │ │ │ ├── images_recipe.adoc │ │ │ │ ├── init_values.adoc │ │ │ │ ├── init_values_in_CreateAction.adoc │ │ │ │ ├── init_values_in_class.adoc │ │ │ │ ├── init_values_in_initNewItem.adoc │ │ │ │ ├── inividual_fields_recipe.adoc │ │ │ │ ├── logging_setup_desktop.adoc │ │ │ │ ├── logging_setup_tomcat.adoc │ │ │ │ ├── logic_in_controllers_recipe.adoc │ │ │ │ ├── main_window_layout.adoc │ │ │ │ ├── modeling_domain_recipes.adoc │ │ │ │ ├── oto_single_editor.adoc │ │ │ │ ├── rest_api_v2.adoc │ │ │ │ ├── screen_params_recipe.adoc │ │ │ │ ├── screen_params_return.adoc │ │ │ │ ├── std_list_actions.adoc │ │ │ │ ├── std_picker_actions.adoc │ │ │ │ ├── ui_recipes.adoc │ │ │ │ ├── using_client_beans_recipe.adoc │ │ │ │ ├── using_entity_listeners_recipe.adoc │ │ │ │ ├── using_jmx_beans_recipe.adoc │ │ │ │ ├── using_services_recipe.adoc │ │ │ │ ├── web_theme.adoc │ │ │ │ └── web_theme_migration.adoc │ │ │ ├── security_subsystem.adoc │ │ │ ├── security_subsystem │ │ │ │ ├── data_access_checks.adoc │ │ │ │ ├── ldap.adoc │ │ │ │ ├── ldap │ │ │ │ │ ├── jespa.adoc │ │ │ │ │ ├── jespa │ │ │ │ │ │ ├── jespa_conf.adoc │ │ │ │ │ │ └── jespa_lib.adoc │ │ │ │ │ └── ldap_basic.adoc │ │ │ │ ├── security_components.adoc │ │ │ │ ├── security_components │ │ │ │ │ ├── export_import_roles_groups.adoc │ │ │ │ │ ├── groups.adoc │ │ │ │ │ ├── groups │ │ │ │ │ │ ├── constraints.adoc │ │ │ │ │ │ └── session_attr.adoc │ │ │ │ │ ├── legacy_roles.adoc │ │ │ │ │ ├── login_screen.adoc │ │ │ │ │ ├── permissions.adoc │ │ │ │ │ ├── roles.adoc │ │ │ │ │ ├── users.adoc │ │ │ │ │ └── users │ │ │ │ │ │ ├── timeZone.adoc │ │ │ │ │ │ └── user_substitution.adoc │ │ │ │ ├── security_examples.adoc │ │ │ │ ├── security_examples │ │ │ │ │ ├── local_admins_example.adoc │ │ │ │ │ └── roles_example.adoc │ │ │ │ ├── security_web.adoc │ │ │ │ ├── social_login.adoc │ │ │ │ └── sso.adoc │ │ │ ├── setup.adoc │ │ │ └── system_properties.adoc │ │ └── ru │ │ │ ├── app_properties_reference.adoc │ │ │ ├── config_files.adoc │ │ │ ├── config_files │ │ │ ├── app-component.xml.adoc │ │ │ ├── context.xml.adoc │ │ │ ├── default-permission-values.xml.adoc │ │ │ ├── dispatcher-spring.xml.adoc │ │ │ ├── menu.xml.adoc │ │ │ ├── metadata.xml.adoc │ │ │ ├── permissions.xml.adoc │ │ │ ├── persistence.xml.adoc │ │ │ ├── remoting-spring.xml.adoc │ │ │ ├── spring.xml.adoc │ │ │ ├── views.xml.adoc │ │ │ └── web.xml.adoc │ │ │ ├── deployment.adoc │ │ │ ├── deployment │ │ │ ├── app_dirs.adoc │ │ │ ├── app_dirs │ │ │ │ ├── conf_dir.adoc │ │ │ │ ├── db_dir.adoc │ │ │ │ ├── log_dir.adoc │ │ │ │ ├── temp_dir.adoc │ │ │ │ └── work_dir.adoc │ │ │ ├── app_home.adoc │ │ │ ├── db_update_in_prod.adoc │ │ │ ├── db_update_in_prod │ │ │ │ ├── db_update_in_prod_by_server.adoc │ │ │ │ └── db_update_in_prod_cmdline.adoc │ │ │ ├── deployment_variants.adoc │ │ │ ├── deployment_variants │ │ │ │ ├── bluemix_deployment.adoc │ │ │ │ ├── docker_deployment.adoc │ │ │ │ ├── fast_deployment.adoc │ │ │ │ ├── fast_deployment │ │ │ │ │ └── tomcat_in_prod.adoc │ │ │ │ ├── heroku_deployment.adoc │ │ │ │ ├── heroku_deployment │ │ │ │ │ ├── heroku_container.adoc │ │ │ │ │ ├── heroku_github_deployment.adoc │ │ │ │ │ └── heroku_war_deployment.adoc │ │ │ │ ├── jelastic_deployment.adoc │ │ │ │ ├── tomcat_war_deployment.adoc │ │ │ │ ├── tomcat_war_deployment_linux.adoc │ │ │ │ ├── uberjar_deployment.adoc │ │ │ │ ├── uberjar_deployment │ │ │ │ │ └── uberjar_https.adoc │ │ │ │ ├── war_deployment.adoc │ │ │ │ └── wildfly_war_deployment.adoc │ │ │ ├── health_check_url.adoc │ │ │ ├── jmx_tools.adoc │ │ │ ├── jmx_tools │ │ │ │ ├── jmx_console.adoc │ │ │ │ ├── jmx_remote_access.adoc │ │ │ │ └── jmx_remote_access │ │ │ │ │ ├── jmx_remote_access_tomcat_linux.adoc │ │ │ │ │ └── jmx_remote_access_tomcat_windows.adoc │ │ │ ├── proxy_configuration_tomcat.adoc │ │ │ ├── proxy_configuration_uberjar.adoc │ │ │ ├── scaling.adoc │ │ │ ├── scaling │ │ │ │ ├── cluster_mw.adoc │ │ │ │ ├── cluster_mw │ │ │ │ │ ├── cluster_mw_client.adoc │ │ │ │ │ ├── cluster_mw_server.adoc │ │ │ │ │ └── cluster_mw_zk.adoc │ │ │ │ ├── cluster_webclient.adoc │ │ │ │ ├── cluster_webclient │ │ │ │ │ ├── cluster_webclient_lb.adoc │ │ │ │ │ └── cluster_webclient_tomcat.adoc │ │ │ │ └── serverId.adoc │ │ │ └── server_push_settings.adoc │ │ │ ├── development.adoc │ │ │ ├── development │ │ │ ├── app_components_recipes.adoc │ │ │ ├── app_components_recipes │ │ │ │ ├── app_components_additional_ds.adoc │ │ │ │ ├── app_components_dev.adoc │ │ │ │ ├── app_components_sample.adoc │ │ │ │ ├── app_components_usage.adoc │ │ │ │ └── servlet_registration_sample.adoc │ │ │ ├── build_scripts.adoc │ │ │ ├── build_scripts │ │ │ │ ├── access_to_repo.adoc │ │ │ │ ├── build.gradle.adoc │ │ │ │ ├── build.gradle_tasks.adoc │ │ │ │ ├── build.gradle_tasks │ │ │ │ │ ├── build.gradle_buildInfo.adoc │ │ │ │ │ ├── build.gradle_buildUberJar.adoc │ │ │ │ │ ├── build.gradle_buildWar.adoc │ │ │ │ │ ├── build.gradle_buildWidgetSet.adoc │ │ │ │ │ ├── build.gradle_createDb.adoc │ │ │ │ │ ├── build.gradle_debugWidgetSet.adoc │ │ │ │ │ ├── build.gradle_deploy.adoc │ │ │ │ │ ├── build.gradle_deployThemes.adoc │ │ │ │ │ ├── build.gradle_deployWar.adoc │ │ │ │ │ ├── build.gradle_restart.adoc │ │ │ │ │ ├── build.gradle_setupTomcat.adoc │ │ │ │ │ ├── build.gradle_start.adoc │ │ │ │ │ ├── build.gradle_startDb.adoc │ │ │ │ │ ├── build.gradle_stop.adoc │ │ │ │ │ ├── build.gradle_stopDb.adoc │ │ │ │ │ ├── build.gradle_tomcat.adoc │ │ │ │ │ ├── build.gradle_updateDb.adoc │ │ │ │ │ └── build.gradle_zipProject.adoc │ │ │ │ ├── build_task_start.adoc │ │ │ │ ├── private_repo.adoc │ │ │ │ ├── private_repo │ │ │ │ │ ├── private_repo_configure.adoc │ │ │ │ │ ├── private_repo_in_isolated_network.adoc │ │ │ │ │ ├── private_repo_install.adoc │ │ │ │ │ └── private_repo_usage.adoc │ │ │ │ └── support_for_kotlin.adoc │ │ │ ├── debuging.adoc │ │ │ ├── debuging │ │ │ │ ├── debug_setup.adoc │ │ │ │ ├── debug_version.adoc │ │ │ │ └── debug_widgets.adoc │ │ │ ├── hot_deploy.adoc │ │ │ ├── logging.adoc │ │ │ ├── logging │ │ │ │ ├── logging_conf_int.adoc │ │ │ │ └── logging_useful_loggers.adoc │ │ │ ├── project_creation.adoc │ │ │ ├── project_file_structure.adoc │ │ │ ├── recommended_code_style.adoc │ │ │ ├── spring_profiles.adoc │ │ │ ├── testing.adoc │ │ │ ├── testing │ │ │ │ ├── integration_tests_client.adoc │ │ │ │ └── integration_tests_mw.adoc │ │ │ ├── troubleshooting.adoc │ │ │ └── troubleshooting │ │ │ │ └── widgetset_win_path_too_long.adoc │ │ │ ├── framework.adoc │ │ │ ├── framework │ │ │ ├── architecture.adoc │ │ │ ├── architecture │ │ │ │ ├── app_components.adoc │ │ │ │ ├── app_modules.adoc │ │ │ │ ├── app_structure.adoc │ │ │ │ └── app_tiers.adoc │ │ │ ├── common_components.adoc │ │ │ ├── common_components │ │ │ │ ├── appContext.adoc │ │ │ │ ├── app_lifecycle_events.adoc │ │ │ │ ├── app_properties.adoc │ │ │ │ ├── app_properties │ │ │ │ │ ├── app_properties_db.adoc │ │ │ │ │ ├── app_properties_files.adoc │ │ │ │ │ ├── config_interfaces.adoc │ │ │ │ │ └── config_interfaces │ │ │ │ │ │ ├── config_interface_default_values.adoc │ │ │ │ │ │ ├── config_interface_property_types.adoc │ │ │ │ │ │ └── config_interface_usage.adoc │ │ │ │ ├── authentication.adoc │ │ │ │ ├── authentication │ │ │ │ │ ├── login.adoc │ │ │ │ │ ├── securityContext.adoc │ │ │ │ │ └── userSession.adoc │ │ │ │ ├── bean_validation.adoc │ │ │ │ ├── bean_validation │ │ │ │ │ ├── bean_validation_constraints.adoc │ │ │ │ │ └── bean_validation_running.adoc │ │ │ │ ├── data_model.adoc │ │ │ │ ├── data_model │ │ │ │ │ ├── base_entity_classes.adoc │ │ │ │ │ ├── entity_annotations.adoc │ │ │ │ │ ├── entity_annotations │ │ │ │ │ │ ├── entity_attr_annotations.adoc │ │ │ │ │ │ └── entity_class_annotations.adoc │ │ │ │ │ ├── enum_attributes.adoc │ │ │ │ │ ├── soft_deletion.adoc │ │ │ │ │ └── soft_deletion │ │ │ │ │ │ ├── delete_policy.adoc │ │ │ │ │ │ ├── soft_deletion_unique_constr.adoc │ │ │ │ │ │ └── soft_deletion_usage.adoc │ │ │ │ ├── entity_attribute_access.adoc │ │ │ │ ├── exception_handling.adoc │ │ │ │ ├── exception_handling │ │ │ │ │ ├── exceptionHandlers.adoc │ │ │ │ │ ├── exceptionHandlers │ │ │ │ │ │ └── unique_constraint_violation_exceptions.adoc │ │ │ │ │ ├── exception_classes.adoc │ │ │ │ │ └── remoteException.adoc │ │ │ │ ├── infrastructure_interfaces.adoc │ │ │ │ ├── infrastructure_interfaces │ │ │ │ │ ├── configuration.adoc │ │ │ │ │ ├── dataManager.adoc │ │ │ │ │ ├── dataManager │ │ │ │ │ │ ├── dm_security.adoc │ │ │ │ │ │ ├── dm_vs_em.adoc │ │ │ │ │ │ ├── query_from_selected.adoc │ │ │ │ │ │ ├── query_with_distinct.adoc │ │ │ │ │ │ └── transactionalDataManager.adoc │ │ │ │ │ ├── entityStates.adoc │ │ │ │ │ ├── entityStates │ │ │ │ │ │ └── persistenceHelper.adoc │ │ │ │ │ ├── events.adoc │ │ │ │ │ ├── messages.adoc │ │ │ │ │ ├── messages │ │ │ │ │ │ └── messageTools.adoc │ │ │ │ │ ├── metadata.adoc │ │ │ │ │ ├── metadata │ │ │ │ │ │ └── metadataTools.adoc │ │ │ │ │ ├── resources.adoc │ │ │ │ │ ├── scripting.adoc │ │ │ │ │ ├── security.adoc │ │ │ │ │ ├── timeSource.adoc │ │ │ │ │ ├── userSessionSource.adoc │ │ │ │ │ └── uuidSource.adoc │ │ │ │ ├── jmx_beans.adoc │ │ │ │ ├── jmx_beans │ │ │ │ │ ├── jmx_beans_creation.adoc │ │ │ │ │ ├── jmx_beans_platform.adoc │ │ │ │ │ └── jmx_beans_platform │ │ │ │ │ │ ├── cachingFacadeMBean.adoc │ │ │ │ │ │ ├── configStorageMBean.adoc │ │ │ │ │ │ ├── emailerMBean.adoc │ │ │ │ │ │ ├── persistenceManagerMBean.adoc │ │ │ │ │ │ ├── scriptingManagerMBean.adoc │ │ │ │ │ │ └── serverInfoMBean.adoc │ │ │ │ ├── localization.adoc │ │ │ │ ├── localization │ │ │ │ │ ├── entity_localization.adoc │ │ │ │ │ ├── enum_localization.adoc │ │ │ │ │ ├── main_message_pack.adoc │ │ │ │ │ └── message_packs.adoc │ │ │ │ ├── managed_beans.adoc │ │ │ │ ├── managed_beans │ │ │ │ │ ├── managed_beans_creation.adoc │ │ │ │ │ └── managed_beans_usage.adoc │ │ │ │ ├── metadata_framework.adoc │ │ │ │ ├── metadata_framework │ │ │ │ │ ├── datatype.adoc │ │ │ │ │ ├── datatype │ │ │ │ │ │ ├── datatype_custom_example.adoc │ │ │ │ │ │ ├── datatype_date_number_format.adoc │ │ │ │ │ │ ├── datatype_format_strings.adoc │ │ │ │ │ │ └── datatype_ui_format.adoc │ │ │ │ │ ├── meta_annotations.adoc │ │ │ │ │ ├── metadata_building.adoc │ │ │ │ │ └── metadata_interfaces.adoc │ │ │ │ ├── views.adoc │ │ │ │ └── views │ │ │ │ │ └── views_creation.adoc │ │ │ ├── dbms.adoc │ │ │ ├── dbms │ │ │ │ ├── db_connection.adoc │ │ │ │ ├── db_connection │ │ │ │ │ └── db_schema_connection.adoc │ │ │ │ ├── db_scripts.adoc │ │ │ │ ├── db_scripts │ │ │ │ │ ├── db_scripts_groovy.adoc │ │ │ │ │ ├── db_scripts_sql.adoc │ │ │ │ │ ├── db_update_gradle.adoc │ │ │ │ │ └── db_update_server.adoc │ │ │ │ ├── dbms_types.adoc │ │ │ │ └── dbms_types │ │ │ │ │ ├── arbitrary_dbms.adoc │ │ │ │ │ ├── db_mssql_features.adoc │ │ │ │ │ ├── db_mysql_features.adoc │ │ │ │ │ └── dbms_version.adoc │ │ │ ├── extension.adoc │ │ │ ├── extension │ │ │ │ ├── bean_extension.adoc │ │ │ │ ├── entity_extension.adoc │ │ │ │ ├── main_servlets_registration.adoc │ │ │ │ ├── screen_extension.adoc │ │ │ │ └── servlet_registration.adoc │ │ │ ├── features.adoc │ │ │ ├── features │ │ │ │ ├── credits.adoc │ │ │ │ ├── dynamic_attributes.adoc │ │ │ │ ├── dynamic_attributes │ │ │ │ │ ├── categorized_entity.adoc │ │ │ │ │ └── dynamic_attributes_mgmt.adoc │ │ │ │ ├── email_sending.adoc │ │ │ │ ├── email_sending │ │ │ │ │ ├── email_attachments.adoc │ │ │ │ │ ├── email_sending_methods.adoc │ │ │ │ │ ├── email_sending_properties.adoc │ │ │ │ │ └── sending_emails_recipe.adoc │ │ │ │ ├── entityImportExport.adoc │ │ │ │ ├── entity_inspector.adoc │ │ │ │ ├── entity_log.adoc │ │ │ │ ├── entity_log │ │ │ │ │ ├── entity_log_setup.adoc │ │ │ │ │ └── entity_log_view.adoc │ │ │ │ ├── entity_snapshots.adoc │ │ │ │ ├── entity_snapshots │ │ │ │ │ ├── entity_snapshots_save.adoc │ │ │ │ │ └── entity_snapshots_view.adoc │ │ │ │ ├── entity_statistics.adoc │ │ │ │ ├── file_storage.adoc │ │ │ │ ├── file_storage │ │ │ │ │ ├── aws_file_storage_impl.adoc │ │ │ │ │ ├── fileLoader.adoc │ │ │ │ │ ├── file_download.adoc │ │ │ │ │ ├── file_storage_impl.adoc │ │ │ │ │ └── file_upload.adoc │ │ │ │ ├── folders_pane.adoc │ │ │ │ ├── folders_pane │ │ │ │ │ ├── application_folder.adoc │ │ │ │ │ ├── record_set.adoc │ │ │ │ │ └── search_folder.adoc │ │ │ │ ├── link_to_screen.adoc │ │ │ │ ├── myBatis.adoc │ │ │ │ ├── pessimistic_locking.adoc │ │ │ │ ├── queryRunner.adoc │ │ │ │ ├── scheduled_tasks.adoc │ │ │ │ ├── scheduled_tasks │ │ │ │ │ ├── scheduled_tasks_cuba.adoc │ │ │ │ │ ├── scheduled_tasks_cuba │ │ │ │ │ │ ├── scheduled_tasks_cuba_control.adoc │ │ │ │ │ │ ├── scheduled_tasks_cuba_impl.adoc │ │ │ │ │ │ └── scheduled_tasks_cuba_reg.adoc │ │ │ │ │ └── scheduled_tasks_spring.adoc │ │ │ │ ├── uniqueNumbers.adoc │ │ │ │ └── userSession_log.adoc │ │ │ ├── front_ui.adoc │ │ │ ├── front_ui │ │ │ │ ├── front_in_studio.adoc │ │ │ │ ├── polymer_ui.adoc │ │ │ │ └── react_ui.adoc │ │ │ ├── gui_framework.adoc │ │ │ ├── gui_framework │ │ │ │ ├── background_tasks.adoc │ │ │ │ ├── background_tasks │ │ │ │ │ └── background_task_examples.adoc │ │ │ │ ├── composite_components.adoc │ │ │ │ ├── gui_Action.adoc │ │ │ │ ├── gui_Action │ │ │ │ │ ├── baseAction.adoc │ │ │ │ │ ├── custom_action_types.adoc │ │ │ │ │ ├── declarative_actions.adoc │ │ │ │ │ ├── standard_actions.adoc │ │ │ │ │ └── standard_actions │ │ │ │ │ │ ├── AddAction.adoc │ │ │ │ │ │ ├── BulkEditAction.adoc │ │ │ │ │ │ ├── ClearAction.adoc │ │ │ │ │ │ ├── CreateAction.adoc │ │ │ │ │ │ ├── EditAction.adoc │ │ │ │ │ │ ├── ExcelAction.adoc │ │ │ │ │ │ ├── ExcludeAction.adoc │ │ │ │ │ │ ├── LookupAction.adoc │ │ │ │ │ │ ├── OpenAction.adoc │ │ │ │ │ │ ├── OpenCompositionAction.adoc │ │ │ │ │ │ ├── RefreshAction.adoc │ │ │ │ │ │ ├── RemoveAction.adoc │ │ │ │ │ │ └── ViewAction.adoc │ │ │ │ ├── gui_anonymous_access.adoc │ │ │ │ ├── gui_data.adoc │ │ │ │ ├── gui_data │ │ │ │ │ ├── gui_DataContext.adoc │ │ │ │ │ ├── gui_data_containers.adoc │ │ │ │ │ ├── gui_data_containers │ │ │ │ │ │ ├── gui_collection_container.adoc │ │ │ │ │ │ ├── gui_instance_container.adoc │ │ │ │ │ │ ├── gui_keyvalue_containers.adoc │ │ │ │ │ │ └── gui_property_containers.adoc │ │ │ │ │ ├── gui_data_loaders.adoc │ │ │ │ │ ├── gui_using_data_comp.adoc │ │ │ │ │ └── gui_using_data_comp │ │ │ │ │ │ ├── gui_data_comp_decl.adoc │ │ │ │ │ │ ├── gui_data_comp_dep.adoc │ │ │ │ │ │ ├── gui_data_comp_param.adoc │ │ │ │ │ │ ├── gui_data_comp_prog.adoc │ │ │ │ │ │ └── gui_data_comp_sort.adoc │ │ │ │ ├── gui_dialogs.adoc │ │ │ │ ├── gui_facets.adoc │ │ │ │ ├── gui_facets │ │ │ │ │ ├── gui_ClipboardTrigger.adoc │ │ │ │ │ ├── gui_DataLoadCoordinator.adoc │ │ │ │ │ ├── gui_EditorScreenFacet.adoc │ │ │ │ │ ├── gui_InputDialogFacet.adoc │ │ │ │ │ ├── gui_LookupScreenFacet.adoc │ │ │ │ │ ├── gui_MessageDialogFacet.adoc │ │ │ │ │ ├── gui_NotificationFacet.adoc │ │ │ │ │ ├── gui_OptionDialogFacet.adoc │ │ │ │ │ ├── gui_ScreenFacet.adoc │ │ │ │ │ └── gui_Timer.adoc │ │ │ │ ├── gui_icons.adoc │ │ │ │ ├── gui_icons │ │ │ │ │ ├── icon_provider.adoc │ │ │ │ │ └── icon_set.adoc │ │ │ │ ├── gui_notifications.adoc │ │ │ │ ├── gui_screens.adoc │ │ │ │ ├── gui_screens │ │ │ │ │ ├── gui_root_screens.adoc │ │ │ │ │ ├── opening_screens.adoc │ │ │ │ │ ├── screen_controllers.adoc │ │ │ │ │ ├── screen_controllers │ │ │ │ │ │ ├── screen_controller_annotations.adoc │ │ │ │ │ │ ├── screen_controller_events.adoc │ │ │ │ │ │ ├── screen_controller_methods.adoc │ │ │ │ │ │ └── screen_fragment_events.adoc │ │ │ │ │ ├── screen_descriptors.adoc │ │ │ │ │ ├── screen_mixins.adoc │ │ │ │ │ ├── screen_validation.adoc │ │ │ │ │ └── using_screen_fragments.adoc │ │ │ │ ├── gui_themes.adoc │ │ │ │ ├── gui_themes │ │ │ │ │ ├── web_theme_creation.adoc │ │ │ │ │ ├── web_theme_creation │ │ │ │ │ │ ├── custom_theme_facebook.adoc │ │ │ │ │ │ └── custom_theme_hover_dark.adoc │ │ │ │ │ ├── web_theme_extension.adoc │ │ │ │ │ ├── web_theme_inheritance.adoc │ │ │ │ │ ├── web_theme_reusable.adoc │ │ │ │ │ └── web_theme_usage.adoc │ │ │ │ ├── gui_vcl.adoc │ │ │ │ ├── gui_vcl │ │ │ │ │ ├── gui_api.adoc │ │ │ │ │ ├── gui_attributes.adoc │ │ │ │ │ ├── gui_components.adoc │ │ │ │ │ ├── gui_components │ │ │ │ │ │ ├── gui_AppMenu.adoc │ │ │ │ │ │ ├── gui_BrowserFrame.adoc │ │ │ │ │ │ ├── gui_BulkEditor.adoc │ │ │ │ │ │ ├── gui_Button.adoc │ │ │ │ │ │ ├── gui_Calendar.adoc │ │ │ │ │ │ ├── gui_CapsLockIndicator.adoc │ │ │ │ │ │ ├── gui_CheckBox.adoc │ │ │ │ │ │ ├── gui_CheckBoxGroup.adoc │ │ │ │ │ │ ├── gui_ColorPicker.adoc │ │ │ │ │ │ ├── gui_CurrencyField.adoc │ │ │ │ │ │ ├── gui_DataGrid.adoc │ │ │ │ │ │ ├── gui_DateField.adoc │ │ │ │ │ │ ├── gui_DatePicker.adoc │ │ │ │ │ │ ├── gui_Embedded.adoc │ │ │ │ │ │ ├── gui_FieldGroup.adoc │ │ │ │ │ │ ├── gui_FileMultiUploadField.adoc │ │ │ │ │ │ ├── gui_FileUploadField.adoc │ │ │ │ │ │ ├── gui_Filter.adoc │ │ │ │ │ │ ├── gui_Form.adoc │ │ │ │ │ │ ├── gui_GroupTable.adoc │ │ │ │ │ │ ├── gui_Image.adoc │ │ │ │ │ │ ├── gui_Label.adoc │ │ │ │ │ │ ├── gui_Link.adoc │ │ │ │ │ │ ├── gui_LinkButton.adoc │ │ │ │ │ │ ├── gui_LookupField.adoc │ │ │ │ │ │ ├── gui_LookupPickerField.adoc │ │ │ │ │ │ ├── gui_MaskedField.adoc │ │ │ │ │ │ ├── gui_OptionsGroup.adoc │ │ │ │ │ │ ├── gui_OptionsList.adoc │ │ │ │ │ │ ├── gui_PasswordField.adoc │ │ │ │ │ │ ├── gui_PickerField.adoc │ │ │ │ │ │ ├── gui_PopupButton.adoc │ │ │ │ │ │ ├── gui_PopupView.adoc │ │ │ │ │ │ ├── gui_ProgressBar.adoc │ │ │ │ │ │ ├── gui_RadioButtonGroup.adoc │ │ │ │ │ │ ├── gui_RelatedEntities.adoc │ │ │ │ │ │ ├── gui_ResizableTextArea.adoc │ │ │ │ │ │ ├── gui_RichTextArea.adoc │ │ │ │ │ │ ├── gui_SearchPickerField.adoc │ │ │ │ │ │ ├── gui_SideMenu.adoc │ │ │ │ │ │ ├── gui_Slider.adoc │ │ │ │ │ │ ├── gui_SourceCodeEditor.adoc │ │ │ │ │ │ ├── gui_SuggestionField.adoc │ │ │ │ │ │ ├── gui_SuggestionPickerField.adoc │ │ │ │ │ │ ├── gui_Table.adoc │ │ │ │ │ │ ├── gui_TextArea.adoc │ │ │ │ │ │ ├── gui_TextField.adoc │ │ │ │ │ │ ├── gui_TimeField.adoc │ │ │ │ │ │ ├── gui_TokenList.adoc │ │ │ │ │ │ ├── gui_Tree.adoc │ │ │ │ │ │ ├── gui_TreeDataGrid.adoc │ │ │ │ │ │ ├── gui_TreeTable.adoc │ │ │ │ │ │ └── gui_TwinColumn.adoc │ │ │ │ │ ├── gui_layouts.adoc │ │ │ │ │ ├── gui_layouts │ │ │ │ │ │ ├── gui_Accordion.adoc │ │ │ │ │ │ ├── gui_BoxLayout.adoc │ │ │ │ │ │ ├── gui_ButtonsPanel.adoc │ │ │ │ │ │ ├── gui_CssLayout.adoc │ │ │ │ │ │ ├── gui_Frame.adoc │ │ │ │ │ │ ├── gui_GridLayout.adoc │ │ │ │ │ │ ├── gui_GroupBoxLayout.adoc │ │ │ │ │ │ ├── gui_HtmlBoxLayout.adoc │ │ │ │ │ │ ├── gui_ScrollBoxLayout.adoc │ │ │ │ │ │ ├── gui_SplitPanel.adoc │ │ │ │ │ │ ├── gui_TabSheet.adoc │ │ │ │ │ │ └── gui_layout.adoc │ │ │ │ │ ├── gui_misc.adoc │ │ │ │ │ ├── gui_misc │ │ │ │ │ │ ├── gui_formatter.adoc │ │ │ │ │ │ ├── gui_presentations.adoc │ │ │ │ │ │ ├── gui_validator.adoc │ │ │ │ │ │ └── uiComponents.adoc │ │ │ │ │ ├── screen_layout_rules.adoc │ │ │ │ │ └── screen_layout_rules │ │ │ │ │ │ ├── screen_layout_mistakes.adoc │ │ │ │ │ │ ├── screen_layout_rules_alignment.adoc │ │ │ │ │ │ ├── screen_layout_rules_margins.adoc │ │ │ │ │ │ └── screen_layout_rules_positioning.adoc │ │ │ │ ├── gui_web.adoc │ │ │ │ ├── html_attributes.adoc │ │ │ │ ├── own_components.adoc │ │ │ │ ├── own_components │ │ │ │ │ ├── helperScreenDependencyUtils.adoc │ │ │ │ │ ├── jsComponent.adoc │ │ │ │ │ ├── own_component_samples.adoc │ │ │ │ │ ├── own_component_samples │ │ │ │ │ │ ├── gwt_component_sample.adoc │ │ │ │ │ │ ├── js_library_sample.adoc │ │ │ │ │ │ ├── own_component_in_studio.adoc │ │ │ │ │ │ ├── vaadin_addon_sample.adoc │ │ │ │ │ │ └── vaadin_addon_sample_gui.adoc │ │ │ │ │ └── using_webjars.adoc │ │ │ │ ├── pluggable_component_factories.adoc │ │ │ │ ├── shortcuts.adoc │ │ │ │ ├── static_resources.adoc │ │ │ │ ├── uiRefreshEvent.adoc │ │ │ │ ├── unsupported_browser_page.adoc │ │ │ │ ├── url_history_navigation.adoc │ │ │ │ ├── url_history_navigation │ │ │ │ │ ├── handling_url_changes.adoc │ │ │ │ │ ├── url_navigation_api_usage.adoc │ │ │ │ │ ├── url_routes_generator.adoc │ │ │ │ │ └── url_routing.adoc │ │ │ │ ├── webBrowserTools.adoc │ │ │ │ ├── webComponentsHelper.adoc │ │ │ │ └── web_login.adoc │ │ │ ├── gui_legacy.adoc │ │ │ ├── gui_legacy │ │ │ │ ├── datasources.adoc │ │ │ │ ├── datasources │ │ │ │ │ ├── dataSupplier.adoc │ │ │ │ │ ├── datasource_creation.adoc │ │ │ │ │ ├── datasource_creation │ │ │ │ │ │ ├── datasource_custom_class.adoc │ │ │ │ │ │ ├── datasource_decl_creation.adoc │ │ │ │ │ │ └── datasource_prog_creation.adoc │ │ │ │ │ ├── datasource_listeners.adoc │ │ │ │ │ ├── datasource_query.adoc │ │ │ │ │ ├── datasource_query │ │ │ │ │ │ ├── datasource_query_case_insensitive.adoc │ │ │ │ │ │ ├── datasource_query_filter.adoc │ │ │ │ │ │ ├── datasource_query_params.adoc │ │ │ │ │ │ └── datasource_query_results.adoc │ │ │ │ │ ├── dsContext.adoc │ │ │ │ │ └── value_datasources.adoc │ │ │ │ ├── dialogs_and_notifications.adoc │ │ │ │ ├── dialogs_and_notifications │ │ │ │ │ ├── dialogs.adoc │ │ │ │ │ └── notifications.adoc │ │ │ │ ├── list_actions.adoc │ │ │ │ ├── picker_actions.adoc │ │ │ │ ├── screens.adoc │ │ │ │ ├── screens.xml.adoc │ │ │ │ └── screens │ │ │ │ │ ├── screen_agent.adoc │ │ │ │ │ ├── screen_controller.adoc │ │ │ │ │ ├── screen_controller │ │ │ │ │ ├── abstractEditor.adoc │ │ │ │ │ ├── abstractFrame.adoc │ │ │ │ │ ├── abstractLookup.adoc │ │ │ │ │ ├── abstractWindow.adoc │ │ │ │ │ ├── companions.adoc │ │ │ │ │ ├── entityCombinedScreen.adoc │ │ │ │ │ └── screen_controller_injection.adoc │ │ │ │ │ ├── screen_types.adoc │ │ │ │ │ ├── screen_types │ │ │ │ │ ├── frame.adoc │ │ │ │ │ ├── screen_combined.adoc │ │ │ │ │ ├── screen_edit.adoc │ │ │ │ │ ├── screen_lookup.adoc │ │ │ │ │ └── screen_simple.adoc │ │ │ │ │ └── screen_xml.adoc │ │ │ ├── middleware.adoc │ │ │ ├── middleware │ │ │ │ ├── data_store.adoc │ │ │ │ ├── entityChangedEvent.adoc │ │ │ │ ├── entityPersistingEvent.adoc │ │ │ │ ├── entity_cache.adoc │ │ │ │ ├── orm.adoc │ │ │ │ ├── orm │ │ │ │ │ ├── entityManager.adoc │ │ │ │ │ ├── entity_listeners.adoc │ │ │ │ │ ├── entity_states.adoc │ │ │ │ │ ├── lazy_loading.adoc │ │ │ │ │ ├── nativeQuery.adoc │ │ │ │ │ ├── query.adoc │ │ │ │ │ └── query │ │ │ │ │ │ ├── jpql_functions.adoc │ │ │ │ │ │ ├── jpql_macro.adoc │ │ │ │ │ │ └── query_case_insensitive.adoc │ │ │ │ ├── persistence.adoc │ │ │ │ ├── persistence │ │ │ │ │ ├── dbTypeConverter.adoc │ │ │ │ │ └── persistenceTools.adoc │ │ │ │ ├── services.adoc │ │ │ │ ├── services │ │ │ │ │ ├── dataService.adoc │ │ │ │ │ ├── service_creation.adoc │ │ │ │ │ └── service_import.adoc │ │ │ │ ├── system_authentication.adoc │ │ │ │ ├── transactions.adoc │ │ │ │ └── transactions │ │ │ │ │ ├── transaction_listeners.adoc │ │ │ │ │ ├── transaction_params.adoc │ │ │ │ │ ├── transactions_decl.adoc │ │ │ │ │ ├── transactions_interaction.adoc │ │ │ │ │ ├── transactions_interaction │ │ │ │ │ ├── transactions_interaction_modify_nested.adoc │ │ │ │ │ └── transactions_interaction_rollback_nested.adoc │ │ │ │ │ └── transactions_prog.adoc │ │ │ └── portal.adoc │ │ │ ├── glossary.adoc │ │ │ ├── introduction.adoc │ │ │ ├── manual.adoc │ │ │ ├── preface.adoc │ │ │ ├── quick_start.adoc │ │ │ ├── removed_sections.adoc │ │ │ ├── removed_sections │ │ │ ├── app_start_recipe.adoc │ │ │ ├── association_mtm.adoc │ │ │ ├── association_mtm_recipe_1.adoc │ │ │ ├── association_mtm_recipe_2.adoc │ │ │ ├── business_logic_recipes.adoc │ │ │ ├── composition_deep3_recipe.adoc │ │ │ ├── composition_deep_recipe.adoc │ │ │ ├── composition_impl_recipe.adoc │ │ │ ├── composition_oto_recipe.adoc │ │ │ ├── composition_recipe.adoc │ │ │ ├── cookbook.adoc │ │ │ ├── databases.adoc │ │ │ ├── db_update_in_dev.adoc │ │ │ ├── entity_inheritance.adoc │ │ │ ├── getting_messages.adoc │ │ │ ├── images_in_table.adoc │ │ │ ├── images_recipe.adoc │ │ │ ├── init_values.adoc │ │ │ ├── init_values_in_CreateAction.adoc │ │ │ ├── init_values_in_class.adoc │ │ │ ├── init_values_in_initNewItem.adoc │ │ │ ├── inividual_fields_recipe.adoc │ │ │ ├── logging_setup_desktop.adoc │ │ │ ├── logging_setup_tomcat.adoc │ │ │ ├── logic_in_controllers_recipe.adoc │ │ │ ├── main_window_layout.adoc │ │ │ ├── modeling_domain_recipes.adoc │ │ │ ├── oto_single_editor.adoc │ │ │ ├── rest_api_v2.adoc │ │ │ ├── screen_params_recipe.adoc │ │ │ ├── screen_params_return.adoc │ │ │ ├── std_list_actions.adoc │ │ │ ├── std_picker_actions.adoc │ │ │ ├── ui_recipes.adoc │ │ │ ├── using_client_beans_recipe.adoc │ │ │ ├── using_entity_listeners_recipe.adoc │ │ │ ├── using_jmx_beans_recipe.adoc │ │ │ ├── using_services_recipe.adoc │ │ │ ├── web_theme.adoc │ │ │ └── web_theme_migration.adoc │ │ │ ├── security_subsystem.adoc │ │ │ ├── security_subsystem │ │ │ ├── data_access_checks.adoc │ │ │ ├── ldap.adoc │ │ │ ├── ldap │ │ │ │ ├── jespa.adoc │ │ │ │ ├── jespa │ │ │ │ │ ├── jespa_conf.adoc │ │ │ │ │ └── jespa_lib.adoc │ │ │ │ └── ldap_basic.adoc │ │ │ ├── security_components.adoc │ │ │ ├── security_components │ │ │ │ ├── export_import_roles_groups.adoc │ │ │ │ ├── groups.adoc │ │ │ │ ├── groups │ │ │ │ │ ├── constraints.adoc │ │ │ │ │ └── session_attr.adoc │ │ │ │ ├── legacy_roles.adoc │ │ │ │ ├── login_screen.adoc │ │ │ │ ├── permissions.adoc │ │ │ │ ├── roles.adoc │ │ │ │ ├── timeZone.adoc │ │ │ │ ├── users.adoc │ │ │ │ └── users │ │ │ │ │ └── user_substitution.adoc │ │ │ ├── security_examples.adoc │ │ │ ├── security_examples │ │ │ │ ├── local_admins_example.adoc │ │ │ │ └── roles_example.adoc │ │ │ ├── security_web.adoc │ │ │ ├── social_login.adoc │ │ │ └── sso.adoc │ │ │ ├── setup.adoc │ │ │ └── system_properties.adoc │ ├── img │ │ ├── AppComponents2.svg │ │ ├── AppModules.svg │ │ ├── AppTiers.svg │ │ ├── BaseProjects.png │ │ ├── BaseProjects.svg │ │ ├── Button.png │ │ ├── CheckBox.png │ │ ├── ClientStructure.png │ │ ├── ClientStructure.svg │ │ ├── Controllers.png │ │ ├── Datasources.png │ │ ├── DeploymentStructure.png │ │ ├── DesktopClientInfrastructure.png │ │ ├── EditorCommit.svg │ │ ├── EditorInit.svg │ │ ├── EntityClasses.png │ │ ├── EntityClasses_Identity.png │ │ ├── EntityClasses_IntIdentity.png │ │ ├── EntityClasses_Long.png │ │ ├── EntityClasses_Standard.png │ │ ├── EntityClasses_String.png │ │ ├── EntityClasses_Uuid.png │ │ ├── ExtendedEditorCommit.svg │ │ ├── ExtendedEditorCommitAndClose.svg │ │ ├── GroupTable.png │ │ ├── HaulmontLogoMax.png │ │ ├── JMXBeans.png │ │ ├── LinkButton.png │ │ ├── LoginProcedure.svg │ │ ├── LookupField.png │ │ ├── LookupPickerField.png │ │ ├── MetadataFramework.png │ │ ├── Middleware.png │ │ ├── MiddlewareAuthenticationStructure.png │ │ ├── MiddlewareServices.png │ │ ├── MiddlewareStructure.png │ │ ├── MultiUpload.png │ │ ├── PickerField.png │ │ ├── PopupButton.png │ │ ├── SampleAppArtifacts.svg │ │ ├── Security.png │ │ ├── Tree.png │ │ ├── TwinColumn.png │ │ ├── Upload.png │ │ ├── ValueDatasources.png │ │ ├── ValueDatasources_Studio.png │ │ ├── ValueDatasources_Studio_properties.png │ │ ├── View.png │ │ ├── WebClientInfrastructure.svg │ │ ├── WebLoginProcedure.svg │ │ ├── WebLoginStructure.png │ │ ├── actions_primary.png │ │ ├── add_icons.png │ │ ├── app_components_sample.png │ │ ├── app_start_recipe_1.png │ │ ├── bluemix_buildWar.png │ │ ├── bluemix_war_settings.png │ │ ├── book_publication_fts_filter.png │ │ ├── branding_login_screen.png │ │ ├── business_logic_model_1.png │ │ ├── categoryEditor.png │ │ ├── categoryLocalization.png │ │ ├── ch2_structure.png │ │ ├── cluster_mw.png │ │ ├── cluster_webclient.png │ │ ├── cookbook │ │ │ ├── facebook-theme.png │ │ │ ├── hover-dark.png │ │ │ ├── screen_layout_rules_1.png │ │ │ ├── screen_layout_rules_10.png │ │ │ ├── screen_layout_rules_11.png │ │ │ ├── screen_layout_rules_12.png │ │ │ ├── screen_layout_rules_13.png │ │ │ ├── screen_layout_rules_14.png │ │ │ ├── screen_layout_rules_15.png │ │ │ ├── screen_layout_rules_16.png │ │ │ ├── screen_layout_rules_17.png │ │ │ ├── screen_layout_rules_18.png │ │ │ ├── screen_layout_rules_19.png │ │ │ ├── screen_layout_rules_1_ru.png │ │ │ ├── screen_layout_rules_2.png │ │ │ ├── screen_layout_rules_20.png │ │ │ ├── screen_layout_rules_20_ru.png │ │ │ ├── screen_layout_rules_21.png │ │ │ ├── screen_layout_rules_22.png │ │ │ ├── screen_layout_rules_22_ru.png │ │ │ ├── screen_layout_rules_2_ru.png │ │ │ ├── screen_layout_rules_3.png │ │ │ ├── screen_layout_rules_4.png │ │ │ ├── screen_layout_rules_4_ru.png │ │ │ ├── screen_layout_rules_5.png │ │ │ ├── screen_layout_rules_5_ru.png │ │ │ ├── screen_layout_rules_6.png │ │ │ ├── screen_layout_rules_7.png │ │ │ ├── screen_layout_rules_8.png │ │ │ └── screen_layout_rules_9.png │ │ ├── cuba-64-01.png │ │ ├── customContextXml.png │ │ ├── dbStructure.png │ │ ├── db_hsql_idea_setDbProperties.png │ │ ├── debugWidgetSet_chrome_console.png │ │ ├── dynamic_attributes.png │ │ ├── dynamic_attributes_Groovy_options.png │ │ ├── dynamic_attributes_location.png │ │ ├── dynamic_attributes_location_rezult.png │ │ ├── dynamic_attributes_recalculation.png │ │ ├── fileLoader_recipe.png │ │ ├── folder_custom_items.png │ │ ├── folder_default_icons.png │ │ ├── generate_id.png │ │ ├── gui_AppMenu.png │ │ ├── gui_BulkEditor_useConfirmDialog.png │ │ ├── gui_CheckBoxGroup.png │ │ ├── gui_CheckBoxGroup_2.png │ │ ├── gui_CheckBoxGroup_3.png │ │ ├── gui_CheckBoxGroup_4.png │ │ ├── gui_Form_1.png │ │ ├── gui_Form_2.png │ │ ├── gui_Form_3.png │ │ ├── gui_Image_1.png │ │ ├── gui_Image_dia.png │ │ ├── gui_MaskedField.png │ │ ├── gui_MaskedField_maskedValueMode.png │ │ ├── gui_PasswordField.png │ │ ├── gui_RadioButtonGroup.png │ │ ├── gui_RadioButtonGroup_2.png │ │ ├── gui_RadioButtonGroup_3.png │ │ ├── gui_RadioButtonGroup_4.png │ │ ├── gui_RichTextArea.png │ │ ├── gui_RichTextAreaInfo.png │ │ ├── gui_SearchField_dia.png │ │ ├── gui_SourceCodeEditor_1.png │ │ ├── gui_SourceCodeEditor_2.png │ │ ├── gui_SplitPanel_dockable.png │ │ ├── gui_TableBulkEdit.png │ │ ├── gui_TextArea.png │ │ ├── gui_TextArea_2.png │ │ ├── gui_TokenList_inputPrompt.png │ │ ├── gui_Tree.png │ │ ├── gui_TreeDataGrid.png │ │ ├── gui_accordion.png │ │ ├── gui_accordion_2.png │ │ ├── gui_action │ │ │ ├── custom_action_handlers.png │ │ │ ├── custom_action_properties.png │ │ │ └── custom_action_wizard.png │ │ ├── gui_anonymous_access │ │ │ └── welcome_screen.png │ │ ├── gui_attr_contextHelp.png │ │ ├── gui_attr_contextHelpHtml.png │ │ ├── gui_attr_contextHelpIcon.png │ │ ├── gui_bg_tasks │ │ │ ├── bg-ranks-error.png │ │ │ ├── bg-ranks-ok.png │ │ │ └── bg-task-emails.png │ │ ├── gui_boxlayout.png │ │ ├── gui_browserFrame.png │ │ ├── gui_browserFrame_2.png │ │ ├── gui_browserFrame_3.png │ │ ├── gui_bulkEdit.png │ │ ├── gui_bulkEditorSetNullButton.png │ │ ├── gui_bulkEditorUnlockButton.png │ │ ├── gui_buttonTypes.png │ │ ├── gui_buttonsPanel.png │ │ ├── gui_calendar_1.png │ │ ├── gui_calendar_2.png │ │ ├── gui_calendar_3.png │ │ ├── gui_capsLockIndicator.png │ │ ├── gui_checkBoxListener.png │ │ ├── gui_clickAction_open.png │ │ ├── gui_color_picker.png │ │ ├── gui_color_picker_mini.png │ │ ├── gui_composite │ │ │ └── stepper_final.png │ │ ├── gui_cssLayout_1.png │ │ ├── gui_cssLayout_2.png │ │ ├── gui_cssLayout_3.png │ │ ├── gui_cssLayout_4.png │ │ ├── gui_currencyField.png │ │ ├── gui_data │ │ │ ├── containers.png │ │ │ ├── containers.svg │ │ │ └── dep_data_comp.png │ │ ├── gui_dataGrid.png │ │ ├── gui_dataGrid_1.png │ │ ├── gui_dataGrid_10.png │ │ ├── gui_dataGrid_11.png │ │ ├── gui_dataGrid_12.png │ │ ├── gui_dataGrid_13.png │ │ ├── gui_dataGrid_14.png │ │ ├── gui_dataGrid_15.png │ │ ├── gui_dataGrid_16.png │ │ ├── gui_dataGrid_2.png │ │ ├── gui_dataGrid_3.png │ │ ├── gui_dataGrid_7.png │ │ ├── gui_dataGrid_8.png │ │ ├── gui_dataGrid_9.png │ │ ├── gui_dataGrid_iconColumn.png │ │ ├── gui_datatype_default_message.png │ │ ├── gui_dateField.png │ │ ├── gui_dateFieldSimple.png │ │ ├── gui_dateField_format.png │ │ ├── gui_dateField_resolution.png │ │ ├── gui_datefield_month_range.png │ │ ├── gui_datepicker_mini.png │ │ ├── gui_datepicker_month_range.png │ │ ├── gui_datepicker_month_resolution.png │ │ ├── gui_datepicker_year_resolution.png │ │ ├── gui_dropZone.png │ │ ├── gui_dropZone_static.png │ │ ├── gui_fieldGroup.png │ │ ├── gui_fileUploadDialog.png │ │ ├── gui_filter.png │ │ ├── gui_filter_add.png │ │ ├── gui_filter_apply_to.png │ │ ├── gui_filter_component_name.png │ │ ├── gui_filter_cond_down.png │ │ ├── gui_filter_cond_up.png │ │ ├── gui_filter_conditions.png │ │ ├── gui_filter_custom.png │ │ ├── gui_filter_descr.png │ │ ├── gui_filter_editor.png │ │ ├── gui_filter_fts.png │ │ ├── gui_filter_fts_2.png │ │ ├── gui_filter_mini.png │ │ ├── gui_filter_name.png │ │ ├── gui_filter_remove.png │ │ ├── gui_filter_remove_condition.png │ │ ├── gui_filter_reset.png │ │ ├── gui_filter_sequential.png │ │ ├── gui_filter_useMaxRezult.png │ │ ├── gui_flowbox.png │ │ ├── gui_frame.png │ │ ├── gui_gridlayout.png │ │ ├── gui_gridlayout_colspan.png │ │ ├── gui_groupBox.png │ │ ├── gui_groupBox_Panel.png │ │ ├── gui_groupBox_Panel_2.png │ │ ├── gui_groupBox_collapsed.png │ │ ├── gui_groupBox_light.png │ │ ├── gui_groupBox_minus.png │ │ ├── gui_groupBox_plus.png │ │ ├── gui_groupTable.png │ │ ├── gui_groupTableDragColumn.png │ │ ├── gui_groupTableIcon.png │ │ ├── gui_hbox.png │ │ ├── gui_htmlBox_1.png │ │ ├── gui_invoiceBulkEdit.png │ │ ├── gui_label.png │ │ ├── gui_labelOrders.png │ │ ├── gui_label_truncated.png │ │ ├── gui_linkButtonTypes.png │ │ ├── gui_lookupField.png │ │ ├── gui_lookupField_2.png │ │ ├── gui_lookupPickerField.png │ │ ├── gui_multipleUpload.png │ │ ├── gui_optionsGroup.png │ │ ├── gui_optionsGroup_customerGrade.png │ │ ├── gui_optionsGroup_integerList.png │ │ ├── gui_optionsGroup_integerMap.png │ │ ├── gui_optionsGroup_roleType.png │ │ ├── gui_optionsGroup_roleType_multi.png │ │ ├── gui_optionsList.png │ │ ├── gui_optionsList_integerList.png │ │ ├── gui_optionsList_integerMap.png │ │ ├── gui_pickerFieldActionsSt.png │ │ ├── gui_pickerField_icon.PNG │ │ ├── gui_pickerField_icons.png │ │ ├── gui_popupButtonTypes.png │ │ ├── gui_popupButton_custom.png │ │ ├── gui_popup_view_mini.png │ │ ├── gui_popup_view_mini_open.png │ │ ├── gui_presentation.png │ │ ├── gui_presentations.png │ │ ├── gui_progressBar.png │ │ ├── gui_relatedEntities.png │ │ ├── gui_relatedEntitiesTable.png │ │ ├── gui_screens │ │ │ ├── controller_base_classes.svg │ │ │ └── screens.svg │ │ ├── gui_scrollBox.png │ │ ├── gui_scrollBox_1.png │ │ ├── gui_scrollBox_2.png │ │ ├── gui_searchField.png │ │ ├── gui_searchFieldOverlap.png │ │ ├── gui_searchPickerField.png │ │ ├── gui_searchPickerFieldAllActions.png │ │ ├── gui_searchPickerFieldOverlap.png │ │ ├── gui_sidemenu.png │ │ ├── gui_sidemenu_2.png │ │ ├── gui_sidemenu_3.png │ │ ├── gui_sidemenu_4.png │ │ ├── gui_sidemenu_5.png │ │ ├── gui_slider.png │ │ ├── gui_sortable_down.png │ │ ├── gui_sortable_up.png │ │ ├── gui_splitPanel.png │ │ ├── gui_suggestionField_1.png │ │ ├── gui_suggestionPickerField_1.png │ │ ├── gui_table.png │ │ ├── gui_table_columnControl.png │ │ ├── gui_table_columnControl_all.png │ │ ├── gui_table_column_maxTextLength.png │ │ ├── gui_table_emptyState.png │ │ ├── gui_tabsheet.png │ │ ├── gui_tabsheet_description.png │ │ ├── gui_tabsheet_tab_description.png │ │ ├── gui_teinColumnLeft.png │ │ ├── gui_teinColumnRight.png │ │ ├── gui_textField_data.png │ │ ├── gui_textField_resizable.png │ │ ├── gui_textfield_2.png │ │ ├── gui_theme_facebook_1.png │ │ ├── gui_themes_desktop_structure.png │ │ ├── gui_themes_example1.png │ │ ├── gui_themes_example2.png │ │ ├── gui_themes_example3.png │ │ ├── gui_themes_example4.png │ │ ├── gui_themes_example5.png │ │ ├── gui_themes_example6.png │ │ ├── gui_themes_example_login.png │ │ ├── gui_themes_example_menu.png │ │ ├── gui_themes_fieldgroup_1.png │ │ ├── gui_themes_replacing_images.png │ │ ├── gui_themes_structure.png │ │ ├── gui_timeField.png │ │ ├── gui_timeFieldSec.png │ │ ├── gui_tokenList.png │ │ ├── gui_tokenListBottom.png │ │ ├── gui_tokenListInline.png │ │ ├── gui_tokenListLookup.png │ │ ├── gui_tokenListSimple.png │ │ ├── gui_tokenListSimple_withClear.png │ │ ├── gui_treeTable.png │ │ ├── gui_upload.png │ │ ├── gui_upload_7.0.png │ │ ├── gui_validator.png │ │ ├── gui_vbox.png │ │ ├── heroku-db.png │ │ ├── heroku_activity.png │ │ ├── heroku_dyno.png │ │ ├── icon_set.png │ │ ├── image_recipe.png │ │ ├── images_in_table.png │ │ ├── images_recipe.png │ │ ├── jelasticDeploy.png │ │ ├── jelasticEnvironment.png │ │ ├── jelasticWarSettings.png │ │ ├── jmx-connection-edit.png │ │ ├── jmx-console.png │ │ ├── jsComponent_example.png │ │ ├── layout_1.png │ │ ├── layout_2.png │ │ ├── layout_3.png │ │ ├── local_admins_groups.png │ │ ├── local_admins_res.png │ │ ├── localization.png │ │ ├── logoMin.png │ │ ├── lookupBtn.png │ │ ├── main_window_1.png │ │ ├── main_window_2.png │ │ ├── moduleStructure.png │ │ ├── openBtn.png │ │ ├── postgres9_2_0.png │ │ ├── project_structure.png │ │ ├── project_structure_core.png │ │ ├── project_structure_global.png │ │ ├── project_structure_web.png │ │ ├── qs_application_menu.png │ │ ├── qs_create_customer_entity.png │ │ ├── qs_create_customer_screens.png │ │ ├── qs_create_order_screens.png │ │ ├── qs_customer_browse.png │ │ ├── qs_customer_edit.png │ │ ├── qs_customer_edit_1.png │ │ ├── qs_customer_edit_2.png │ │ ├── qs_customer_entity.png │ │ ├── qs_customer_instance_name.png │ │ ├── qs_customer_screen_label.png │ │ ├── qs_customer_screen_orders_ds.png │ │ ├── qs_customer_screen_table.png │ │ ├── qs_generate_db_scripts.png │ │ ├── qs_new_attribute.png │ │ ├── qs_new_project.png │ │ ├── qs_order_browse.png │ │ ├── qs_order_edit.png │ │ ├── qs_order_edit_2.png │ │ ├── qs_order_view.png │ │ ├── quick_start_1.png │ │ ├── rest_js_1.png │ │ ├── rest_js_2.png │ │ ├── role_attributes.png │ │ ├── runtimePropertyEditor.png │ │ ├── runtimePropertyEnum.png │ │ ├── runtimePropertyEnumLocalization.png │ │ ├── runtimePropertyLocalization.png │ │ ├── runtimePropertyVisibility.png │ │ ├── scaling_1.png │ │ ├── scaling_2.png │ │ ├── scaling_3.png │ │ ├── scaling_4.png │ │ ├── security_user_browser.png │ │ ├── security_user_editor.png │ │ ├── studio_server_settings.png │ │ ├── studio_server_window.png │ │ ├── swagger_crud.png │ │ ├── swagger_crud_model.png │ │ ├── swagger_query.png │ │ ├── swagger_service.png │ │ ├── tomcat-service-settings.png │ │ ├── ui_component │ │ │ ├── customer_edit_result.png │ │ │ ├── gwt_project_structure.png │ │ │ ├── gwt_theme_ext_structure.png │ │ │ ├── metadata │ │ │ │ ├── bean-validation.png │ │ │ │ ├── collection-element-inspector.png │ │ │ │ ├── collection-owner-inspector.png │ │ │ │ ├── element-group-element-inspector.png │ │ │ │ ├── element-group-owner-inspector.png │ │ │ │ ├── embedded-inspector.png │ │ │ │ ├── event-handler-in-inspector.png │ │ │ │ ├── hierarchy.png │ │ │ │ ├── inspector.png │ │ │ │ ├── palette.png │ │ │ │ └── preview.png │ │ │ ├── product_edit.png │ │ │ ├── rating_field_component.png │ │ │ ├── rating_screen_result.png │ │ │ └── studio_gwt_component_wizard.png │ │ ├── unique_constraint_message.png │ │ ├── unique_constraint_message_2.png │ │ ├── unsupported_browser_page.png │ │ ├── url_generate_route.PNG │ │ ├── url_generate_route.png │ │ ├── url_paramsChangedEvent.png │ │ ├── url_reflection_state.png │ │ ├── url_screen_by_route.png │ │ ├── userIndicator.png │ │ ├── user_subst_edit.png │ │ ├── user_subst_select.png │ │ ├── using_client_beans_1.png │ │ ├── using_entity_listeners_1.png │ │ ├── using_jmx_beans_1.png │ │ └── using_services_1.png │ ├── img_src │ │ ├── AppComponents2.graphml │ │ ├── AppModules.graphml │ │ ├── AppTiers.graphml │ │ ├── BaseProjects.graphml │ │ ├── ClientStructure.graphml │ │ ├── Components.graphml │ │ ├── Components_new.graphml │ │ ├── Components_supplemented.graphml │ │ ├── Controllers.graphml │ │ ├── Datasources.graphml │ │ ├── DeploymentStructure.graphml │ │ ├── DesktopClientInfrastructure.graphml │ │ ├── EditorCommit.sd │ │ ├── EditorInit.sd │ │ ├── EntityClasses.graphml │ │ ├── EntityClasses_Identity.graphml │ │ ├── EntityClasses_IntIdentity.graphml │ │ ├── EntityClasses_Long.graphml │ │ ├── EntityClasses_Standard.graphml │ │ ├── EntityClasses_String.graphml │ │ ├── EntityClasses_Uuid.graphml │ │ ├── ExtendedEditorCommit.sd │ │ ├── ExtendedEditorCommitAndClose.sd │ │ ├── JMXBeans.graphml │ │ ├── LoginProcedure.sd │ │ ├── MetadataFramework.graphml │ │ ├── Middleware.graphml │ │ ├── MiddlewareAuthenticationStructure.graphml │ │ ├── MiddlewareServices.graphml │ │ ├── MiddlewareStructure.graphml │ │ ├── SampleAppArtifacts.graphml │ │ ├── ValueDatasources.graphml │ │ ├── View.graphml │ │ ├── WebClientInfrastructure.graphml │ │ ├── WebLoginProcedure.sd │ │ ├── WebLoginStructure.graphml │ │ ├── app_components_sample.graphml │ │ ├── app_start_recipe_1.graphml │ │ ├── business_logic_model_1.graphml │ │ ├── cluster_mw.graphml │ │ ├── cluster_webclient.graphml │ │ ├── dbStructure.graphml │ │ ├── dynamic_attributes.graphml │ │ ├── gui_Embedded_dia.graphml │ │ ├── gui_FieldGroup_dia.graphml │ │ ├── gui_FileMultiUploadField_dia.graphml │ │ ├── gui_FileUploadField_dia.graphml │ │ ├── gui_GroupTable_dia.graphml │ │ ├── gui_LookupField_dia.graphml │ │ ├── gui_LookupPickerField_dia.graphml │ │ ├── gui_MaskedField_dia.graphml │ │ ├── gui_OptionsGroup_dia.graphml │ │ ├── gui_PasswordField_dia.graphml │ │ ├── gui_RichTextArea_dia.graphml │ │ ├── gui_SearchField_dia.graphml │ │ ├── gui_SearchPickerField_dia.graphml │ │ ├── gui_SourceCodeEditor_dia.graphml │ │ ├── gui_SuggestionPickerField_dia.graphml │ │ ├── gui_Table_dia.graphml │ │ ├── gui_TextArea_dia.graphml │ │ ├── gui_TextField_dia.graphml │ │ ├── gui_TokenList_dia.graphml │ │ ├── gui_TreeTable_dia.graphml │ │ ├── gui_TwinColumn_dia.graphml │ │ ├── gui_checkBox_dia.graphml │ │ ├── gui_components.graphml │ │ ├── gui_data │ │ │ └── containers.graphml │ │ ├── gui_dateField_dia.graphml │ │ ├── gui_filter_dia.graphml │ │ ├── gui_label_dia.graphml │ │ ├── gui_linkButton_dia.graphml │ │ ├── gui_pickerField_dia.graphml │ │ ├── gui_popupButton_dia.graphml │ │ ├── gui_progressBar_dia.graphml │ │ ├── gui_screens │ │ │ ├── controller_base_classes.graphml │ │ │ └── screens.graphml │ │ ├── gui_timeField_dia.graphml │ │ ├── gui_tree_dia.graphml │ │ ├── init_values_recipe_1.graphml │ │ ├── moduleStructure.graphml │ │ ├── quick_start_1.graphml │ │ ├── scaling_1.graphml │ │ ├── scaling_2.graphml │ │ ├── scaling_3.graphml │ │ ├── scaling_4.graphml │ │ ├── using_client_beans_1.graphml │ │ ├── using_entity_listeners_1.graphml │ │ ├── using_jmx_beans_1.graphml │ │ └── using_services_1.graphml │ └── source │ │ ├── common │ │ ├── appLifecycleEvents_1.java │ │ ├── appcontext_1.java │ │ ├── attr_access_2.java │ │ ├── attr_access_3.java │ │ ├── authProviderOrdered.java │ │ ├── authenticationManager.java │ │ ├── bean_validation_1.java │ │ ├── bean_validation_10.java │ │ ├── bean_validation_11.java │ │ ├── bean_validation_12.java │ │ ├── bean_validation_13.xml │ │ ├── bean_validation_14.java │ │ ├── bean_validation_15.java │ │ ├── bean_validation_16.json │ │ ├── bean_validation_17.java │ │ ├── bean_validation_18.java │ │ ├── bean_validation_19.java │ │ ├── bean_validation_2.java │ │ ├── bean_validation_3.java │ │ ├── bean_validation_4.java │ │ ├── bean_validation_5.java │ │ ├── bean_validation_6.java │ │ ├── bean_validation_7.java │ │ ├── bean_validation_8.java │ │ ├── bean_validation_9.java │ │ ├── configinterface_1.java │ │ ├── configinterface_10.java │ │ ├── configinterface_11.java │ │ ├── configinterface_2.java │ │ ├── configinterface_3.java │ │ ├── configinterface_4.java │ │ ├── configinterface_5.java │ │ ├── configinterface_6.java │ │ ├── configinterface_7.java │ │ ├── configinterface_8.java │ │ ├── configinterface_9.java │ │ ├── configuration_1.java │ │ ├── configuration_2.java │ │ ├── configuration_3.java │ │ ├── customAuthenticationProvider.java │ │ ├── dataManager_1.java │ │ ├── dataManager_2.java │ │ ├── dataManager_3.java │ │ ├── dataManager_4.java │ │ ├── dataManager_5.java │ │ ├── dataManager_6.java │ │ ├── dataManager_7.java │ │ ├── dataManager_8.java │ │ ├── dataManager_9.java │ │ ├── datatype_1.java │ │ ├── datatype_2.xml │ │ ├── dateformat_1.xml │ │ ├── dateformat_2.java │ │ ├── dateformat_3.java │ │ ├── dateformat_4.java │ │ ├── entityImportExportService_1.java │ │ ├── entityImportExportService_2.java │ │ ├── entityImportExportService_3.java │ │ ├── enum_1.java │ │ ├── enum_2.java │ │ ├── enumlocale_1.java │ │ ├── eventListenerOrder.java │ │ ├── events.java │ │ ├── events_DemoBean.java │ │ ├── events_DemoEvent.java │ │ ├── events_DemoEventListener.java │ │ ├── events_EventListener.java │ │ ├── events_MultipleEventListener.java │ │ ├── events_UserRemovedEvent.java │ │ ├── events_publish.java │ │ ├── events_servlet_context.java │ │ ├── exceptionHandlers_0.java │ │ ├── exceptionHandlers_1.java │ │ ├── exceptionHandlers_2.java │ │ ├── exceptionHandlers_3.java │ │ ├── exceptionHandlers_4.java │ │ ├── exceptionHandlers_5.java │ │ ├── jmxbean_1.java │ │ ├── jmxbean_2.java │ │ ├── jmxbean_3.xml │ │ ├── loginEventListener.java │ │ ├── maintenanceModeValve.java │ │ ├── managedbean_1.java │ │ ├── managedbean_2.xml │ │ ├── managedbean_5.java │ │ ├── messages_1.java │ │ ├── messages_2.java │ │ ├── messages_3.java │ │ ├── messages_4.java │ │ ├── messagetools_1.java │ │ ├── messagetools_2.java │ │ ├── metaannotations_1.xml │ │ ├── metadatatools_1.java │ │ ├── metadatatools_2.java │ │ ├── mwexception_1.java │ │ ├── mwexception_2.java │ │ ├── resources_1.java │ │ ├── resources_2.java │ │ ├── scripting_1.java │ │ ├── scripting_2.java │ │ ├── scripting_3.java │ │ ├── scriptingjmx_1.java │ │ ├── securitycontext_1.java │ │ ├── securitycontext_2.java │ │ ├── securitycontext_3.java │ │ ├── timesource_1.java │ │ ├── timesource_2.java │ │ ├── transactionalDataManager_1.java │ │ ├── views_1.java │ │ ├── views_2.xml │ │ ├── views_3.java │ │ └── views_4.java │ │ ├── config_files │ │ ├── appJar.groovy │ │ ├── appJar.xml │ │ ├── dispatcher_spring_1.xml │ │ ├── menu_1.xml │ │ ├── messages.properties │ │ ├── metadata_1.xml │ │ ├── permissions.xml │ │ ├── web_1.xml │ │ └── web_2.xml │ │ ├── database │ │ ├── db_schema_connection_1.groovy │ │ ├── db_schema_connection_2.groovy │ │ └── dbupdate.sh │ │ ├── dbms │ │ ├── db_connection_1.properties │ │ ├── db_connection_2.xml │ │ ├── db_connection_3.groovy │ │ ├── db_connection_4.properties │ │ ├── db_connection_5.xml │ │ ├── db_connection_6.groovy │ │ ├── dbscripts_1.sql │ │ ├── dbscripts_2.sql │ │ ├── dbscripts_3.sql │ │ ├── dbtasks_1.gradle │ │ └── groovyupdate_1.groovy │ │ ├── deployment │ │ ├── bluemix_credentials.json │ │ ├── bluemix_manifest.yml │ │ ├── direct_proxy.yml │ │ ├── dockerFile.groovy │ │ ├── heroku-context.xml │ │ ├── heroku_buildGradle.groovy │ │ ├── jelasticBuildWar.groovy │ │ ├── jelasticBuildWarHSQL.groovy │ │ ├── jelasticDeployWar.groovy │ │ ├── jetty-env.xml │ │ ├── jetty.xml │ │ ├── log_dir_1.xml │ │ ├── root_proxy │ │ ├── uberjar-https.groovy │ │ ├── uberjar-https.xml │ │ ├── war-context.xml │ │ ├── warDeployment_1.groovy │ │ ├── warDeployment_2.groovy │ │ ├── warDeployment_2.xml │ │ ├── warDeployment_2_linux.groovy │ │ ├── warDeployment_3.groovy │ │ ├── warDeployment_3.ini │ │ ├── warDeployment_3_linux.groovy │ │ ├── warDeployment_4.groovy │ │ ├── warDeployment_5.xml │ │ ├── wildfly-jboss-cli.txt │ │ ├── wildfly-polymer.xml │ │ ├── wildfly-postgres.xml │ │ ├── wildfly-singlewar.groovy │ │ ├── wildfly.groovy │ │ └── wildfly.xml │ │ ├── development │ │ ├── access_to_repo_01.groovy │ │ ├── access_to_repo_02.groovy │ │ ├── access_to_repo_1.groovy │ │ ├── app_comp_upload_1.groovy │ │ ├── bintray_plugin.groovy │ │ ├── bintray_plugin_settings.groovy │ │ ├── build_gradle_1.groovy │ │ ├── build_gradle_2.groovy │ │ ├── build_gradle_3.groovy │ │ ├── build_gradle_4.groovy │ │ ├── build_gradle_buildInfo_1.groovy │ │ ├── build_gradle_buildWar_1.groovy │ │ ├── build_gradle_buildWar_2.groovy │ │ ├── build_gradle_buildWar_3.xml │ │ ├── build_gradle_buildWar_4.groovy │ │ ├── build_gradle_buildWidgetSet_1.groovy │ │ ├── build_gradle_debugWidgetSet_1.groovy │ │ ├── build_gradle_debugWidgetSet_2.groovy │ │ ├── build_gradle_startDb_1.groovy │ │ ├── debug_1.groovy │ │ ├── debug_2.groovy │ │ ├── debug_3.groovy │ │ ├── logging_1.java │ │ ├── servlet_sample.java │ │ ├── servlet_sample_2.java │ │ ├── spring_profile_1.java │ │ ├── spring_profile_2.properties │ │ ├── spring_profile_3.xml │ │ ├── support_for_kotlin_1.groovy │ │ ├── testing_1.java │ │ ├── testing_12.groovy │ │ ├── testing_4.groovy │ │ ├── testing_5.java │ │ ├── testing_9.java │ │ ├── testing_jmockit_dep.groovy │ │ ├── web_testing_container.java │ │ ├── web_testing_ex1.java │ │ └── web_testing_ex2.java │ │ ├── extension │ │ ├── ExtCustomerBrowse.java │ │ ├── MainServletsInitializer.java │ │ ├── WebInitializer.java │ │ ├── entity_extension_1.java │ │ ├── entity_extension_2.sql │ │ ├── entity_extension_3.xml │ │ ├── ext-customer-browse.xml │ │ ├── ext-user-browse.xml │ │ ├── ext-user-edit.xml │ │ ├── main_servlets_registration.xml │ │ ├── screens_registration.xml │ │ └── screens_registration2.xml │ │ ├── features │ │ ├── MyBatis.java │ │ ├── MyBatis.xml │ │ ├── MyBatis_2.xml │ │ ├── MyController.java │ │ ├── Order.java │ │ ├── OrderJsonTransformerToVersion.java │ │ ├── OrderServiceBean.java │ │ ├── OrderValidationResult.java │ │ ├── cors_config.xml │ │ ├── dynamicAttrLoading.xml │ │ ├── dynamicAttrPanel.xml │ │ ├── dynamicAttrSQL_optionsLoader.sql │ │ ├── dynamicAttrValidation.groovy │ │ ├── dynamicAttrValidationRecalculation.groovy │ │ ├── dynamicAttr_1.java │ │ ├── email │ │ │ ├── sending_emails_1.java │ │ │ ├── sending_emails_2.txt │ │ │ ├── sending_emails_3.properties │ │ │ └── sending_emails_template.html │ │ ├── entity_log.xml │ │ ├── entity_log_controller.java │ │ ├── entity_snapshots_save.java │ │ ├── entity_snapshots_view.java │ │ ├── entity_with_category.xml │ │ ├── exportDisplay_1.java │ │ ├── fileLoader_1.java │ │ ├── fileLoader_1.xml │ │ ├── fileUploadDialog_1.java │ │ ├── instance_with_dynamicAttributes.xml │ │ ├── mapper.xml │ │ ├── scheduled_tasks_1.xml │ │ ├── securityToken.json │ │ └── setFolderIconProvider.java │ │ ├── gui │ │ ├── CubaIcon.java │ │ ├── HtmlAttributes.java │ │ ├── IcoMoonIcon.java │ │ ├── IcoMoonIconProvider.java │ │ ├── MyIcon.java │ │ ├── MyIconEnum.java │ │ ├── abstracteditor_1.java │ │ ├── abstracteditor_2.java │ │ ├── abstracteditor_3.java │ │ ├── abstracteditor_4.java │ │ ├── abstracteditor_5.java │ │ ├── abstracteditor_6.java │ │ ├── abstractframe_1.java │ │ ├── abstractframe_3.java │ │ ├── abstractframe_4.java │ │ ├── abstractframe_5.java │ │ ├── abstractframe_5_1.java │ │ ├── abstractframe_6.java │ │ ├── abstractframe_7.java │ │ ├── abstractframe_8.xml │ │ ├── abstractwindow_1.java │ │ ├── abstractwindow_10.java │ │ ├── abstractwindow_2.java │ │ ├── abstractwindow_3.java │ │ ├── abstractwindow_4.java │ │ ├── abstractwindow_5.java │ │ ├── abstractwindow_6.java │ │ ├── abstractwindow_7.java │ │ ├── abstractwindow_8.java │ │ ├── abstractwindow_9.java │ │ ├── actions_1.xml │ │ ├── actions_2.java │ │ ├── actions_3.xml │ │ ├── actions_3_1.java │ │ ├── actions_4.xml │ │ ├── actions_4_1.java │ │ ├── actions_5.xml │ │ ├── actions_5_1.java │ │ ├── actions_6.java │ │ ├── add_icons_App.java │ │ ├── add_icons_enum.java │ │ ├── add_icons_halo-ext.scss │ │ ├── add_icons_icomoon.scss │ │ ├── add_icons_usage.java │ │ ├── add_icons_usage.xml │ │ ├── addaction_1.xml │ │ ├── addaction_2.java │ │ ├── addaction_3.java │ │ ├── anonymous_access │ │ │ ├── info_screen_1.java │ │ │ ├── info_screen_1.xml │ │ │ ├── main_screen_1.java │ │ │ ├── main_screen_1.xml │ │ │ └── web-app.properties │ │ ├── app_bean.xml │ │ ├── backgroundtasks_1.java │ │ ├── backgroundtasks_2.java │ │ ├── backgroundtasks_sample_emails.java │ │ ├── backgroundtasks_sample_ranks.java │ │ ├── baseAction_1.java │ │ ├── baseAction_2.java │ │ ├── baseAction_3.java │ │ ├── baseAction_4.java │ │ ├── cdi_1.java │ │ ├── composite │ │ │ ├── composite_class.java │ │ │ ├── composite_class_css.css │ │ │ ├── composite_class_cssLayout.java │ │ │ ├── composite_loader.java │ │ │ ├── composite_registration.xml │ │ │ ├── composite_usage.xml │ │ │ ├── composite_xml.xml │ │ │ ├── composite_xml_cssLayout.xml │ │ │ └── composite_xsd.xsd │ │ ├── createAction_1.xml │ │ ├── createAction_2.java │ │ ├── createAction_3.java │ │ ├── createAction_4.java │ │ ├── createAction_5.java │ │ ├── createAction_6.java │ │ ├── data_comp │ │ │ ├── data_comp_1.xml │ │ │ ├── data_comp_2.xml │ │ │ ├── data_comp_3.java │ │ │ ├── data_comp_4.java │ │ │ ├── data_comp_5.java │ │ │ ├── data_comp_dep_1.java │ │ │ ├── data_comp_dep_1.xml │ │ │ ├── data_comp_param_1.java │ │ │ ├── data_comp_param_1.xml │ │ │ ├── data_comp_param_2.java │ │ │ ├── data_comp_sort_1.java │ │ │ ├── data_comp_sort_2.java │ │ │ ├── data_comp_sort_3.java │ │ │ ├── data_comp_sort_4.xml │ │ │ ├── data_comp_sort_5.java │ │ │ └── data_comp_sort_6.xml │ │ ├── data_containers │ │ │ ├── collection_1.java │ │ │ ├── collection_2.java │ │ │ ├── collection_3.java │ │ │ ├── collection_events_1.java │ │ │ ├── instance_events_1.java │ │ │ ├── instance_events_2.java │ │ │ ├── keyvalue_containers.xml │ │ │ └── property_1.java │ │ ├── data_context │ │ │ ├── dataContext_1.java │ │ │ ├── dataContext_2.java │ │ │ ├── dataContext_3.java │ │ │ ├── dataContext_4.java │ │ │ ├── dataContext_5.java │ │ │ ├── dataContext_6.java │ │ │ └── dataContext_7.java │ │ ├── data_loaders │ │ │ ├── loader_1.xml │ │ │ ├── loader_2.xml │ │ │ ├── loader_3.java │ │ │ ├── loader_4.java │ │ │ ├── loader_5.java │ │ │ ├── loader_condition_1.java │ │ │ └── loader_condition_1.xml │ │ ├── datasources_1.java │ │ ├── datasources_10.java │ │ ├── datasources_11.xml │ │ ├── datasources_12.xml │ │ ├── datasources_13.xml │ │ ├── datasources_14.java │ │ ├── datasources_15.xml │ │ ├── datasources_16.java │ │ ├── datasources_17.java │ │ ├── datasources_18.java │ │ ├── datasources_2.xml │ │ ├── datasources_3.java │ │ ├── datasources_4.java │ │ ├── datasources_5.java │ │ ├── datasources_6.xml │ │ ├── datasources_7.xml │ │ ├── datasources_8.xml │ │ ├── datasources_9.xml │ │ ├── descriptor_example.xml │ │ ├── desktopclient_1.java │ │ ├── desktopclient_2.java │ │ ├── desktopclient_3.java │ │ ├── desktopclient_4.java │ │ ├── dialogs │ │ │ ├── gui_dialogs_1.java │ │ │ ├── gui_dialogs_2.java │ │ │ ├── gui_dialogs_3.java │ │ │ ├── gui_input_dialog_1.java │ │ │ ├── gui_input_dialog_2.java │ │ │ ├── gui_input_dialog_3.java │ │ │ ├── gui_input_dialog_4.java │ │ │ ├── gui_input_dialog_5.java │ │ │ └── messageDialogHtmlSanitizer.java │ │ ├── dialogs_1.java │ │ ├── dialogs_2.java │ │ ├── dialogs_3.java │ │ ├── dialogs_4.xml │ │ ├── dscontext_1.java │ │ ├── editAction_1.xml │ │ ├── editAction_2.java │ │ ├── editAction_3.java │ │ ├── editAction_4.java │ │ ├── editAction_5.java │ │ ├── excelAction.java │ │ ├── excludeAction.java │ │ ├── helperScreenDependencyUtils.html │ │ ├── helperScreenDependencyUtils.java │ │ ├── html_attributes.xml │ │ ├── js_component │ │ │ ├── jsComponent_1.java │ │ │ ├── jsComponent_1.xml │ │ │ ├── jsComponent_2.java │ │ │ ├── jsComponent_3.java │ │ │ ├── jsComponent_4.java │ │ │ ├── jsComponent_5.java │ │ │ ├── jsComponent_6.js │ │ │ ├── jsComponent_7.js │ │ │ ├── jsComponent_8.xml │ │ │ └── jsComponent_9.java │ │ ├── listActions_1.xml │ │ ├── main_window.java │ │ ├── main_window_1.xml │ │ ├── main_window_2.xml │ │ ├── main_window_3.xml │ │ ├── main_window_4.xml │ │ ├── notifications │ │ │ ├── gui_notifications_1.java │ │ │ ├── gui_notifications_2.java │ │ │ ├── gui_notifications_3.java │ │ │ ├── gui_notifications_4.java │ │ │ └── gui_notifications_5.java │ │ ├── notifications_1.java │ │ ├── overridden_icon.java │ │ ├── pickerActions_1.xml │ │ ├── pluggable_field_factories1.java │ │ ├── pluggable_field_factories2.java │ │ ├── refreshAction_1.java │ │ ├── removeAction_1.java │ │ ├── removeAction_2.java │ │ ├── screen_lookup_1.xml │ │ ├── screen_lookup_2.java │ │ ├── screens │ │ │ ├── address_fragment_1.java │ │ │ ├── address_fragment_1.xml │ │ │ ├── address_fragment_2.java │ │ │ ├── address_fragment_2.xml │ │ │ ├── address_fragment_3.xml │ │ │ ├── address_host_1.xml │ │ │ ├── address_host_2.java │ │ │ ├── address_host_2.xml │ │ │ ├── address_host_3.java │ │ │ ├── address_host_3.xml │ │ │ ├── address_host_4.xml │ │ │ ├── fragment_screen_events_1.java │ │ │ ├── login_screen_1.java │ │ │ ├── login_screen_1.xml │ │ │ ├── main_screen_userActionsButton.java │ │ │ ├── mixin_DeclarativeLoaderParameters_1.java │ │ │ ├── mixin_DeclarativeLoaderParameters_2.java │ │ │ ├── mixin_DeclarativeLoaderParameters_3.xml │ │ │ ├── mixin_DeclarativeLoaderParameters_4.java │ │ │ ├── mixin_banner_1.java │ │ │ ├── mixin_banner_2.java │ │ │ ├── mixin_usage_1.java │ │ │ ├── passing_options_1.java │ │ │ ├── passing_options_2.java │ │ │ ├── passing_options_3.java │ │ │ ├── passing_options_4.java │ │ │ ├── passing_parameters_1.java │ │ │ ├── return_values_1.java │ │ │ ├── return_values_2.java │ │ │ ├── return_values_3.java │ │ │ ├── return_values_4.java │ │ │ ├── return_values_5.java │ │ │ ├── return_values_6.java │ │ │ ├── return_values_7.java │ │ │ ├── screenBuilders_editor.java │ │ │ ├── screenBuilders_editor_2.java │ │ │ ├── screenBuilders_editor_3.java │ │ │ ├── screenBuilders_editor_4.java │ │ │ ├── screenBuilders_lookup.java │ │ │ ├── screenBuilders_lookup_2.java │ │ │ ├── screenBuilders_lookup_3.java │ │ │ ├── screenBuilders_withAfterCloseListener.java │ │ │ ├── screenFragment_events_1.java │ │ │ ├── screen_AfterCloseEvent.java │ │ │ ├── screen_AfterCommitChangesEvent.java │ │ │ ├── screen_AfterShowEvent.java │ │ │ ├── screen_BeforeCloseEvent.java │ │ │ ├── screen_BeforeCommitChangesEvent_1.java │ │ │ ├── screen_BeforeCommitChangesEvent_2.java │ │ │ ├── screen_BeforeCommitChangesEvent_3.java │ │ │ ├── screen_BeforeShowEvent.java │ │ │ ├── screen_InitEntityEvent.java │ │ │ ├── screen_InitEvent.java │ │ │ ├── screen_UrlParamsChangedEvent.java │ │ │ ├── screen_annotations_common.java │ │ │ ├── screen_annotations_edit.java │ │ │ ├── screen_annotations_lookup.java │ │ │ ├── screen_methods_1.java │ │ │ ├── screen_methods_2.java │ │ │ ├── screen_methods_3.java │ │ │ ├── screen_methods_4.java │ │ │ ├── screen_validation_1.java │ │ │ ├── screen_validation_2.java │ │ │ ├── screen_validation_3.java │ │ │ ├── screen_validation_4.java │ │ │ ├── screen_validation_5.java │ │ │ ├── screen_validation_6.java │ │ │ ├── screen_validation_7.java │ │ │ ├── screens_1.java │ │ │ ├── screens_1.xml │ │ │ ├── screens_2.java │ │ │ ├── screens_3.java │ │ │ └── window_BeforeCloseEvent.java │ │ ├── std_actions │ │ │ ├── ActionPropertyExamples.java │ │ │ ├── ActionWithParameters.java │ │ │ ├── ActionWithParametersController.java │ │ │ ├── action_with_parameters.xml │ │ │ ├── add │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ ├── 03.java │ │ │ │ ├── 04.java │ │ │ │ ├── 05.java │ │ │ │ ├── 06.java │ │ │ │ ├── 08.java │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ │ ├── bulkEdit │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ ├── 03.java │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ │ ├── clear │ │ │ │ └── 09.java │ │ │ ├── create │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ ├── 03.java │ │ │ │ ├── 04.java │ │ │ │ ├── 05.java │ │ │ │ ├── 06.java │ │ │ │ ├── 07.java │ │ │ │ ├── 08.java │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ │ ├── edit │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ ├── 03.java │ │ │ │ ├── 04.java │ │ │ │ ├── 07.java │ │ │ │ ├── 08.java │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ │ ├── excel │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ └── 09.java │ │ │ ├── exclude │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ ├── 07.java │ │ │ │ ├── 08.java │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ │ ├── lookup │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ ├── 03.java │ │ │ │ ├── 04.java │ │ │ │ ├── 05.java │ │ │ │ ├── 06.java │ │ │ │ ├── 08.java │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ │ ├── open │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ ├── 03.java │ │ │ │ ├── 04.java │ │ │ │ ├── 08.java │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ │ ├── refresh │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ │ ├── remove │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ ├── 07.java │ │ │ │ ├── 08.java │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ │ ├── std_actions_1.xml │ │ │ ├── std_actions_1_1.xml │ │ │ ├── std_actions_2.java │ │ │ ├── std_actions_2_1.xml │ │ │ ├── std_actions_2_2.xml │ │ │ ├── std_actions_3.java │ │ │ ├── std_actions_3.xml │ │ │ ├── std_actions_4.java │ │ │ └── view │ │ │ │ ├── 01.xml │ │ │ │ ├── 02.java │ │ │ │ ├── 03.java │ │ │ │ ├── 04.java │ │ │ │ ├── 07.java │ │ │ │ ├── 08.java │ │ │ │ ├── 09.java │ │ │ │ └── 10.java │ │ ├── themes │ │ │ ├── themes_1.xml │ │ │ ├── themes_2.xml │ │ │ ├── themes_20.xml │ │ │ ├── themes_22.scss │ │ │ ├── themes_23.scss │ │ │ ├── themes_24.scss │ │ │ ├── themes_25.scss │ │ │ ├── themes_26.scss │ │ │ ├── themes_27.scss │ │ │ ├── themes_28.scss │ │ │ ├── themes_29.scss │ │ │ ├── themes_3.xml │ │ │ ├── themes_30.scss │ │ │ ├── themes_31.scss │ │ │ ├── themes_32.groovy │ │ │ ├── themes_33.groovy │ │ │ ├── themes_34.scss │ │ │ ├── themes_35.scss │ │ │ ├── themes_36.css │ │ │ ├── themes_37.scss │ │ │ ├── themes_38.groovy │ │ │ ├── themes_39.scss │ │ │ ├── themes_4.scss │ │ │ ├── themes_40.scss │ │ │ ├── themes_41.scss │ │ │ ├── themes_42.scss │ │ │ ├── themes_43.scss │ │ │ ├── themes_44.scss │ │ │ ├── themes_45.scss │ │ │ ├── themes_46.scss │ │ │ ├── themes_47.scss │ │ │ ├── themes_48.scss │ │ │ ├── themes_49.groovy │ │ │ ├── themes_5.scss │ │ │ ├── themes_50.groovy │ │ │ ├── themes_51.groovy │ │ │ ├── themes_6.scss │ │ │ ├── themes_7.scss │ │ │ ├── themes_8.scss │ │ │ └── themes_9.scss │ │ ├── uiRefreshEvent.java │ │ ├── urlParamsChangedEvent.java │ │ ├── url_legacy_screen_registration.xml │ │ ├── url_mapStateToUrl.java │ │ ├── url_navigation_filter.java │ │ ├── url_new_screen_registration.java │ │ ├── url_paramsChangedEvent.java │ │ ├── url_paramsChangedEvent_listener.java │ │ ├── url_route_generation.java │ │ ├── url_route_generation1.java │ │ ├── url_route_generation2.java │ │ ├── url_route_generation3.java │ │ ├── url_routes_squashing1.java │ │ ├── url_routes_squashing2.java │ │ ├── url_taskStatistic_screen.java │ │ ├── vaadinaddon_1.gradle │ │ ├── vaadinaddon_2.xml │ │ ├── value_datasources_1.xml │ │ ├── webBrowserTools_1.java │ │ ├── webBrowserTools_2.java │ │ ├── web_appStartedEventListener.java │ │ ├── web_beforeLoginEventListener.java │ │ └── web_customHttpFilter.java │ │ ├── gui_facets │ │ ├── clipboardTrigger_1.xml │ │ ├── clipboardTrigger_2.java │ │ ├── dataLoadCoordinator_1.xml │ │ ├── dataLoadCoordinator_2.xml │ │ ├── dataLoadCoordinator_3.xml │ │ ├── gui_EditorScreenFacet_example.xml │ │ ├── gui_EditorScreenFacet_show.java │ │ ├── gui_InputDialogFacet_example.xml │ │ ├── gui_InputDialogFacet_handleResult.java │ │ ├── gui_InputDialogFacet_show.java │ │ ├── gui_LookupScreenFacet_example.xml │ │ ├── gui_LookupScreenFacet_show.java │ │ ├── gui_MessageDialogFacet_example.xml │ │ ├── gui_MessageDialogFacet_onAction.xml │ │ ├── gui_MessageDialogFacet_show.java │ │ ├── gui_NotificationFacet_contentMode.properties │ │ ├── gui_NotificationFacet_example.xml │ │ ├── gui_NotificationFacet_htmlSanitizer.xml │ │ ├── gui_NotificationFacet_onAction.xml │ │ ├── gui_NotificationFacet_onButton.xml │ │ ├── gui_NotificationFacet_show.java │ │ ├── gui_OptionDialogFacet_example.xml │ │ ├── gui_OptionDialogFacet_installDelegate.java │ │ ├── gui_OptionDialogFacet_show.java │ │ ├── gui_ScreenFacet_example.xml │ │ ├── gui_ScreenFacet_show.java │ │ ├── timer_1.xml │ │ ├── timer_2.java │ │ ├── timer_3.xml │ │ ├── timer_4.java │ │ └── timer_5.java │ │ ├── gui_vcl │ │ ├── accordion_1.java │ │ ├── accordion_1.xml │ │ ├── accordion_2.java │ │ ├── accordion_2.xml │ │ ├── appmenu.java │ │ ├── boxlayout.java │ │ ├── boxlayout_1.java │ │ ├── boxlayout_1.xml │ │ ├── boxlayout_2.xml │ │ ├── boxlayout_3.xml │ │ ├── boxlayout_4.xml │ │ ├── bulkEditor_1.xml │ │ ├── bulkEditor_2.xml │ │ ├── button.java │ │ ├── button_1.xml │ │ ├── button_2.xml │ │ ├── button_3.xml │ │ ├── button_4.java │ │ ├── button_5.xml │ │ ├── button_6.xml │ │ ├── button_7.xml │ │ ├── button_8.xml │ │ ├── buttonspanel.java │ │ ├── buttonspanel_1.xml │ │ ├── capsLockIndicator.java │ │ ├── capsLockIndicator.xml │ │ ├── checkbox_1.xml │ │ ├── checkbox_2.java │ │ ├── checkbox_3.xml │ │ ├── colorpicker_1.xml │ │ ├── colorpicker_2.xml │ │ ├── cssLayout.java │ │ ├── cssLayout_1.xml │ │ ├── cssLayout_2.css │ │ ├── cssLayout_3.xml │ │ ├── cssLayout_4.xml │ │ ├── datagrid.xml │ │ ├── datagrid_ButtonRenderer.java │ │ ├── datagrid_ClickableTextRenderer.java │ │ ├── datagrid_aggregation_1.xml │ │ ├── datagrid_cellDescription.java │ │ ├── datagrid_checkBoxRenderer.xml │ │ ├── datagrid_columnGenerator.java │ │ ├── datagrid_componentRenderer.xml │ │ ├── datagrid_converter.java │ │ ├── datagrid_dateRenderer.xml │ │ ├── datagrid_detailsGenerator.java │ │ ├── datagrid_dot.xml │ │ ├── datagrid_editor.java │ │ ├── datagrid_editor_open.java │ │ ├── datagrid_example_1.xml │ │ ├── datagrid_example_2.java │ │ ├── datagrid_formatter.xml │ │ ├── datagrid_generatedColumns.java │ │ ├── datagrid_htmlRenderer.xml │ │ ├── datagrid_htmlSanitize.java │ │ ├── datagrid_htmlSanitize_2.java │ │ ├── datagrid_iconRenderer.java │ │ ├── datagrid_iconRenderer.xml │ │ ├── datagrid_imageRenderer.java │ │ ├── datagrid_localDateRenderer.xml │ │ ├── datagrid_localDateTimeRenderer.xml │ │ ├── datagrid_numberRenderer.xml │ │ ├── datagrid_progressBarRenderer.xml │ │ ├── datagrid_renderer.java │ │ ├── datagrid_rowDescription.java │ │ ├── datagrid_rowscount_1.xml │ │ ├── datagrid_rowscount_2.java │ │ ├── datagrid_styles_1.xml │ │ ├── datagrid_styles_2.java │ │ ├── datagrid_textRenderer.xml │ │ ├── datagrid_webComponentRenderer.java │ │ ├── datefield_1.xml │ │ ├── datefield_2.xml │ │ ├── datefield_3.xml │ │ ├── datefield_4.xml │ │ ├── datefield_5.xml │ │ ├── datefield_6.java │ │ ├── datepicker_1.xml │ │ ├── datepicker_2.xml │ │ ├── datepicker_3.xml │ │ ├── datepicker_4.xml │ │ ├── dropZone.xml │ │ ├── dropzone_static.xml │ │ ├── embedded_1.xml │ │ ├── embedded_2.java │ │ ├── embedded_3.java │ │ ├── embedded_4.java │ │ ├── embedded_5.java │ │ ├── embedded_6.xml │ │ ├── embedded_7.xml │ │ ├── expandRatio.xml │ │ ├── fieldgroup_1.xml │ │ ├── fieldgroup_2.xml │ │ ├── fieldgroup_3.java │ │ ├── fieldgroup_4.xml │ │ ├── fieldgroup_5.java │ │ ├── fieldgroup_6.xml │ │ ├── filter_1.xml │ │ ├── filter_2.xml │ │ ├── filter_3.xml │ │ ├── filter_4.xml │ │ ├── filter_5.xml │ │ ├── filter_6.xml │ │ ├── filter_7.java │ │ ├── filter_8.xml │ │ ├── filter_ext_param_1.xml │ │ ├── formatter_1.xml │ │ ├── formatter_2.xml │ │ ├── formatter_3.java │ │ ├── formatter_4.java │ │ ├── gridlayout.java │ │ ├── gridlayout_1.java │ │ ├── gridlayout_1.xml │ │ ├── gridlayout_2.xml │ │ ├── gridlayout_3.xml │ │ ├── groupboxlayout.java │ │ ├── groupboxlayout_1.xml │ │ ├── groupboxlayout_2.xml │ │ ├── groupboxlayout_3.java │ │ ├── grouptable_1.xml │ │ ├── grouptable_2.java │ │ ├── grouptable_3.css │ │ ├── gui_CheckBoxGroup.xml │ │ ├── gui_CheckBoxGroup_10.java │ │ ├── gui_CheckBoxGroup_2.java │ │ ├── gui_CheckBoxGroup_3.java │ │ ├── gui_CheckBoxGroup_4.xml │ │ ├── gui_CheckBoxGroup_5.java │ │ ├── gui_CheckBoxGroup_6.java │ │ ├── gui_CheckBoxGroup_7.xml │ │ ├── gui_CheckBoxGroup_8.java │ │ ├── gui_CheckBoxGroup_9.java │ │ ├── gui_PopupButton.java │ │ ├── gui_PopupButton_2.java │ │ ├── gui_RadioButtonGroup.xml │ │ ├── gui_RadioButtonGroup_2.xml │ │ ├── gui_RadioButtonGroup_3.java │ │ ├── gui_RadioButtonGroup_4.java │ │ ├── gui_RadioButtonGroup_5.xml │ │ ├── gui_RadioButtonGroup_6.java │ │ ├── gui_RadioButtonGroup_7.java │ │ ├── gui_RadioButtonGroup_8.java │ │ ├── gui_Table_CellClickListener.java │ │ ├── gui_Table_SelectionListener.java │ │ ├── gui_Table_SelectionListener_event.java │ │ ├── gui_Table_columns_exclude.xml │ │ ├── gui_Table_columns_includeAll.xml │ │ ├── gui_Table_columns_includeAll_related.xml │ │ ├── gui_Table_emptyStateLinkMessage.xml │ │ ├── gui_Table_emptyStateMessage.xml │ │ ├── gui_Table_setStyleProvider_1.java │ │ ├── gui_TreeDataGrid.xml │ │ ├── gui_browserFrame.xml │ │ ├── gui_browserFrame_1.xml │ │ ├── gui_browserFrame_10.java │ │ ├── gui_browserFrame_11.java │ │ ├── gui_browserFrame_12.xml │ │ ├── gui_browserFrame_13.java │ │ ├── gui_browserFrame_14.java │ │ ├── gui_browserFrame_2.xml │ │ ├── gui_browserFrame_3.xml │ │ ├── gui_browserFrame_4.xml │ │ ├── gui_browserFrame_5.xml │ │ ├── gui_browserFrame_6.xml │ │ ├── gui_browserFrame_7.xml │ │ ├── gui_browserFrame_8.xml │ │ ├── gui_browserFrame_9.java │ │ ├── gui_calendar_1.java │ │ ├── gui_calendar_1.scss │ │ ├── gui_calendar_1.xml │ │ ├── gui_calendar_10.java │ │ ├── gui_calendar_11.java │ │ ├── gui_calendar_12.java │ │ ├── gui_calendar_2.java │ │ ├── gui_calendar_2.xml │ │ ├── gui_calendar_3.java │ │ ├── gui_calendar_4.java │ │ ├── gui_calendar_5.java │ │ ├── gui_calendar_6.java │ │ ├── gui_calendar_7.java │ │ ├── gui_calendar_8.java │ │ ├── gui_calendar_9.xml │ │ ├── gui_dataGrid_columns_exclude.xml │ │ ├── gui_dataGrid_columns_includeAll.xml │ │ ├── gui_form_1.xml │ │ ├── gui_form_2.xml │ │ ├── gui_form_3.xml │ │ ├── gui_form_4.java │ │ ├── gui_form_5.xml │ │ ├── gui_form_6.xml │ │ ├── gui_groupTable_includeAll.xml │ │ ├── gui_label_1.java │ │ ├── gui_lookupField_OptionCaptionProvider.java │ │ ├── gui_lookupField_OptionImageProvider.java │ │ ├── gui_optionsList_addDoubleClick.java │ │ ├── gui_optionsList_doubleClick.java │ │ ├── gui_table_ItemDescriptionProvider.java │ │ ├── gui_tokenList_2.xml │ │ ├── gui_tokenList_3.xml │ │ ├── gui_tokenList_4.java │ │ ├── gui_tokenList_5.java │ │ ├── gui_tokenList_6.java │ │ ├── gui_tokenList_7.java │ │ ├── gui_tokenList_8.java │ │ ├── htmlBox_1.xml │ │ ├── htmlBox_2.html │ │ ├── htmlBox_3.scss │ │ ├── htmlBox_4.xml │ │ ├── htmlBox_5.java │ │ ├── htmlSanitizerEnabled_attr.java │ │ ├── image_1.xml │ │ ├── image_10.xml │ │ ├── image_11.xml │ │ ├── image_12.xml │ │ ├── image_13.xml │ │ ├── image_14.xml │ │ ├── image_15.java │ │ ├── image_2.xml │ │ ├── image_3.xml │ │ ├── image_4.xml │ │ ├── image_5.java │ │ ├── image_6.java │ │ ├── image_7.java │ │ ├── image_8.java │ │ ├── image_9.java │ │ ├── label_1.xml │ │ ├── label_2.xml │ │ ├── label_3.xml │ │ ├── label_4.java │ │ ├── label_5.xml │ │ ├── label_6.xml │ │ ├── label_7.java │ │ ├── link_1.xml │ │ ├── linkbutton_1.xml │ │ ├── lookupField_10.java │ │ ├── lookupfield_1.xml │ │ ├── lookupfield_11.java │ │ ├── lookupfield_12.java │ │ ├── lookupfield_2.xml │ │ ├── lookupfield_3.xml │ │ ├── lookupfield_4.java │ │ ├── lookupfield_5.java │ │ ├── lookupfield_6.xml │ │ ├── lookupfield_7.java │ │ ├── lookupfield_8.java │ │ ├── lookupfield_8.xml │ │ ├── lookupfield_9.java │ │ ├── lookuppickerfield_1.xml │ │ ├── maskedfield_1.xml │ │ ├── maskedfield_2.java │ │ ├── multiupload_1.xml │ │ ├── multiupload_2.java │ │ ├── multiupload_3.xml │ │ ├── nullname_1.xml │ │ ├── nullname_2.xml │ │ ├── nullname_3.java │ │ ├── optionsgroup_1.xml │ │ ├── optionsgroup_2.xml │ │ ├── optionsgroup_3.java │ │ ├── optionsgroup_4.java │ │ ├── optionsgroup_5.xml │ │ ├── optionsgroup_6.xml │ │ ├── optionsgroup_7.java │ │ ├── passwordfield_1.xml │ │ ├── passwordfield_2.java │ │ ├── passwordfield_3.xml │ │ ├── pasteZone.xml │ │ ├── pickerfield_1.xml │ │ ├── pickerfield_2.xml │ │ ├── pickerfield_3.java │ │ ├── pickerfield_4.java │ │ ├── pickerfield_5.java │ │ ├── pickerfield_6.xml │ │ ├── pickerfield_7.java │ │ ├── pickerfield_8.xml │ │ ├── pickerfield_9.java │ │ ├── popupButton_1.xml │ │ ├── popupButton_2.xml │ │ ├── popupButton_3.xml │ │ ├── popup_view_1.xml │ │ ├── popup_view_2.java │ │ ├── popup_view_3.java │ │ ├── popup_view_4.java │ │ ├── popup_view_5.java │ │ ├── progressbar_1.xml │ │ ├── progressbar_2.java │ │ ├── progressbar_3.xml │ │ ├── progressbar_4.java │ │ ├── relatedentities_1.xml │ │ ├── relatedentities_2.xml │ │ ├── relatedentities_3.java │ │ ├── relatedentities_4.java │ │ ├── resizableTextArea_1.java │ │ ├── richTextArea_1.java │ │ ├── screen_layout_rules_align.xml │ │ ├── screen_layout_rules_align_2.xml │ │ ├── screen_layout_rules_container.xml │ │ ├── screen_layout_rules_container_2.xml │ │ ├── screen_layout_rules_container_3.xml │ │ ├── screen_layout_rules_expand.xml │ │ ├── screen_layout_rules_expand_2.xml │ │ ├── screen_layout_rules_expand_3.xml │ │ ├── screen_layout_rules_margin.xml │ │ ├── screen_layout_rules_spacing.xml │ │ ├── scrollboxlayout.java │ │ ├── scrollboxlayout_1.xml │ │ ├── scrollboxlayout_2.xml │ │ ├── searchpickerfield_1.xml │ │ ├── searchpickerfield_2.java │ │ ├── searchpickerfield_3.sql │ │ ├── sidemenu.xml │ │ ├── sidemenu_add.java │ │ ├── sidemenu_badge.java │ │ ├── sidemenu_default.xml │ │ ├── sidemenu_timer.java │ │ ├── slider_1.xml │ │ ├── slider_2.xml │ │ ├── slider_3.java │ │ ├── sourceCodeEditor_1.java │ │ ├── sourceCodeEditor_1.xml │ │ ├── sourceCodeEditor_2.java │ │ ├── sourceCodeEditor_2.xml │ │ ├── splitpanel_1.xml │ │ ├── splitpanel_2.xml │ │ ├── splitpanel_3.java │ │ ├── splitpanel_4.java │ │ ├── suggestionField.java │ │ ├── suggestionField_2.xml │ │ ├── suggestionField_3.java │ │ ├── suggestionField_4.java │ │ ├── suggestionField_5.java │ │ ├── suggestionField_6.java │ │ ├── suggestionField_7.java │ │ ├── suggestionField_8.java │ │ ├── suggestionField_9.java │ │ ├── suggestionPickerField.java │ │ ├── suggestionPickerField.xml │ │ ├── suggestionPickerField_1.java │ │ ├── suggestionPickerField_2.java │ │ ├── suggestionPickerField_3.java │ │ ├── tableAggregatable_1.xml │ │ ├── tableAggregatable_2.xml │ │ ├── tableAggregationStrategy_1.java │ │ ├── tableAggregationStrategy_2.java │ │ ├── tableColumnCaptionProperty_1.xml │ │ ├── tableColumnGenerator_1.java │ │ ├── tableFormatter_1.xml │ │ ├── tableIconProvider_1.java │ │ ├── tableId_1.xml │ │ ├── tableSortable_1.xml │ │ ├── table_1.xml │ │ ├── table_2.xml │ │ ├── table_3.java │ │ ├── table_4.java │ │ ├── table_5.xml │ │ ├── table_EmptyStateLinkClickHandler.java │ │ ├── table_addPrintable_1.java │ │ ├── table_addPrintable_2.java │ │ ├── table_aggregation_distribution.java │ │ ├── table_aggregation_distribution.xml │ │ ├── table_generator.java │ │ ├── table_generator.xml │ │ ├── table_requestFocus_1.java │ │ ├── table_scrollTo_1.java │ │ ├── table_setEmptyStateLinkClickHandler.java │ │ ├── table_setStyleProvider_2.css │ │ ├── table_sort.xml │ │ ├── table_sort_exception.xml │ │ ├── tabsheet_1.xml │ │ ├── tabsheet_2.java │ │ ├── tabsheet_3.xml │ │ ├── tabsheet_4.java │ │ ├── textarea_1.xml │ │ ├── textarea_2.xml │ │ ├── textarea_3.xml │ │ ├── textarea_4.java │ │ ├── textarea_5.java │ │ ├── textfield_1.xml │ │ ├── textfield_10.java │ │ ├── textfield_11.xml │ │ ├── textfield_12.java │ │ ├── textfield_2.xml │ │ ├── textfield_3.xml │ │ ├── textfield_4.java │ │ ├── textfield_5.xml │ │ ├── textfield_6.xml │ │ ├── textfield_7.xml │ │ ├── textfield_8.java │ │ ├── textfield_9.java │ │ ├── timefield_1.xml │ │ ├── timefield_2.xml │ │ ├── tokenListMultiselect_1.java │ │ ├── tokenList_1.xml │ │ ├── treeExpandCollapseListener.java │ │ ├── treeIconProvider_1.java │ │ ├── tree_1.xml │ │ ├── treetable_1.xml │ │ ├── twincolumn_1.xml │ │ ├── uiComponents_1.java │ │ ├── upload_0.xml │ │ ├── upload_1.xml │ │ ├── upload_2.java │ │ ├── upload_3.xml │ │ ├── validatorDecimalMax.java │ │ ├── validatorDecimalMax.xml │ │ ├── validatorDecimalMin.java │ │ ├── validatorDecimalMin.xml │ │ ├── validatorDigitsValidator.java │ │ ├── validatorDigitsValidator.xml │ │ ├── validatorDoubleMax.java │ │ ├── validatorDoubleMax.xml │ │ ├── validatorDoubleMin.java │ │ ├── validatorDoubleMin.xml │ │ ├── validatorFuture.java │ │ ├── validatorFuture.xml │ │ ├── validatorFutureOrPresent.java │ │ ├── validatorFutureOrPresent.xml │ │ ├── validatorMax.java │ │ ├── validatorMax.xml │ │ ├── validatorMin.java │ │ ├── validatorMin.xml │ │ ├── validatorNegative.java │ │ ├── validatorNegative.xml │ │ ├── validatorNegativeOrZero.java │ │ ├── validatorNegativeOrZero.xml │ │ ├── validatorNotBlank.java │ │ ├── validatorNotBlank.xml │ │ ├── validatorNotEmpty.java │ │ ├── validatorNotEmpty.xml │ │ ├── validatorNotNull.java │ │ ├── validatorNotNull.xml │ │ ├── validatorPast.java │ │ ├── validatorPast.xml │ │ ├── validatorPastOrPresent.java │ │ ├── validatorPastOrPresent.xml │ │ ├── validatorPositive.java │ │ ├── validatorPositive.xml │ │ ├── validatorPositiveOrZero.java │ │ ├── validatorPositiveOrZero.xml │ │ ├── validatorRegexp.java │ │ ├── validatorRegexp.xml │ │ ├── validatorSize.java │ │ ├── validatorSize.xml │ │ ├── validator_1.properties │ │ ├── validator_1.xml │ │ ├── validator_2.java │ │ ├── validator_3.xml │ │ ├── validator_4.java │ │ ├── validator_5.xml │ │ ├── validator_6.xml │ │ └── validator_7.xml │ │ ├── middleware │ │ ├── auth_1.java │ │ ├── auth_2.java │ │ ├── entityChangedEvent_usage_1.java │ │ ├── entityChangedEvent_usage_2.java │ │ ├── entityManager_1.java │ │ ├── entityPersistingEvent_usage_1.java │ │ ├── entitylisteners_1.java │ │ ├── entitylisteners_2.java │ │ ├── entitylisteners_3.java │ │ ├── entitylisteners_4.java │ │ ├── jpqlquery_1.java │ │ ├── persistencetools_1.java │ │ ├── persistencetools_2.java │ │ ├── persistencetools_3.java │ │ ├── service_1.java │ │ ├── service_2.java │ │ ├── service_3.xml │ │ ├── service_4.xml │ │ ├── service_5.java │ │ ├── service_6.java │ │ ├── service_7_1.java │ │ ├── service_7_2.java │ │ ├── service_7_3.java │ │ ├── sqlquery_1.java │ │ ├── sqlquery_2.java │ │ ├── sqlquery_3.java │ │ ├── transactions_1.java │ │ ├── transactions_2.java │ │ ├── transactions_3.java │ │ ├── transactions_4.java │ │ ├── transactions_5.java │ │ ├── transactions_6.java │ │ ├── transactions_7.java │ │ ├── transactions_8.java │ │ ├── transactions_9.java │ │ ├── tx_listener_1.java │ │ └── tx_listener_2.java │ │ ├── portal │ │ ├── restapi_1.json │ │ ├── restapi_10.xml │ │ ├── restapi_11.xml │ │ ├── restapi_12.xml │ │ ├── restapi_13.xml │ │ ├── restapi_14.json │ │ ├── restapi_15.xml │ │ ├── restapi_16.json │ │ ├── restapi_17.json │ │ ├── restapi_18.xml │ │ ├── restapi_19.xml │ │ ├── restapi_2.json │ │ ├── restapi_20.json │ │ ├── restapi_21.xml │ │ ├── restapi_3.json │ │ ├── restapi_4.json │ │ ├── restapi_5.json │ │ ├── restapi_6.json │ │ ├── restapi_7.json │ │ ├── restapi_8.json │ │ └── restapi_9.json │ │ ├── section_development │ │ └── applicationBackup │ │ │ ├── backup.bat │ │ │ └── backup.sh │ │ ├── security │ │ ├── constraints_1.java │ │ ├── constraints_1.xml │ │ ├── constraints_2.groovy │ │ ├── groups_1.java │ │ ├── groups_2.java │ │ ├── ldap_jespa_1.java │ │ ├── ldap_jespa_2.groovy │ │ ├── ldap_jespa_3.java │ │ ├── reset-password-body.gsp │ │ ├── roles_1.java │ │ ├── roles_2.java │ │ ├── roles_3.java │ │ ├── security_SocialRegistrationService.java │ │ ├── security_SocialRegistrationServiceBean.java │ │ ├── security_facebook_access_role.java │ │ ├── security_handleFacebookCallBackRequest.java │ │ ├── security_loginFacebook.java │ │ ├── session_attr_1.java │ │ ├── social_login_button.xml │ │ ├── sso_1.xml │ │ ├── sso_2.properties │ │ └── sso_3.properties │ │ └── ui_component │ │ ├── gwt │ │ ├── RatingFieldConnector.java │ │ ├── RatingFieldServerComponent.java │ │ ├── RatingFieldServerRpc.java │ │ ├── RatingFieldState.java │ │ ├── RatingFieldWidget.java │ │ ├── RatingScreen.java │ │ ├── hover-ext.scss │ │ ├── rating-screen.xml │ │ └── ratingfield.scss │ │ ├── js │ │ ├── ProductEdit.java │ │ ├── SliderServerComponent.java │ │ ├── SliderState.java │ │ ├── product-edit.xml │ │ └── slider-connector.js │ │ ├── metadata │ │ ├── BeanValidation.java │ │ ├── Collection.java │ │ ├── ComponentDefinition.java │ │ ├── ComponentWithSubTag.java │ │ ├── Element.java │ │ ├── ElementOwner.java │ │ ├── EmbeddedOwner.java │ │ ├── EmbeddedPojo.java │ │ ├── EventHandler.java │ │ ├── EventHandlerInController.java │ │ ├── Facet.java │ │ ├── GenericComponentInController.java │ │ ├── GenericComponentInterface.java │ │ ├── MethodDelegate.java │ │ ├── PropertyGroups.java │ │ ├── StandardProperties.java │ │ ├── Stepper.java │ │ ├── collection.xml │ │ ├── element.xml │ │ ├── embedded.xml │ │ ├── generic-component-usage.xml │ │ └── subtag.xml │ │ ├── vaadin_gui │ │ ├── CustomerEditGuiProgrammatic.java │ │ ├── Stepper.java │ │ ├── StepperLoader.java │ │ ├── WebStepper.java │ │ ├── cuba-ui-component.xml │ │ ├── customer-edit-gui-declarative.xml │ │ ├── customer-edit-gui-programmatic.xml │ │ └── ui-component.xsd │ │ └── vaadin_no_gui │ │ ├── CustomerEditNoGui.java │ │ ├── customer-edit-nogui.xml │ │ └── hover-ext.scss ├── polymer │ ├── adoc │ │ └── en │ │ │ ├── cuba_components.adoc │ │ │ ├── cuba_components │ │ │ ├── cuba__entities.adoc │ │ │ ├── cuba__file.adoc │ │ │ ├── cuba__login.adoc │ │ │ ├── cuba__rest.adoc │ │ │ ├── cuba_app.adoc │ │ │ └── cuba_rest_js.adoc │ │ │ ├── polymer.adoc │ │ │ ├── polymer_manual.adoc │ │ │ ├── polymer_manual │ │ │ ├── polymer_manual__advanced.adoc │ │ │ ├── polymer_manual__advanced │ │ │ │ ├── polymer_manual__advanced__computed.adoc │ │ │ │ ├── polymer_manual__advanced__dom.adoc │ │ │ │ ├── polymer_manual__advanced__lifecycle.adoc │ │ │ │ ├── polymer_manual__advanced__mixins.adoc │ │ │ │ └── polymer_manual__advanced__observers.adoc │ │ │ ├── polymer_manual__basic.adoc │ │ │ └── polymer_manual__basic │ │ │ │ ├── polymer_manual__basic__events.adoc │ │ │ │ ├── polymer_manual__basic__library.adoc │ │ │ │ ├── polymer_manual__basic__properties.adoc │ │ │ │ ├── polymer_manual__basic__simple_component.adoc │ │ │ │ ├── polymer_manual__basic__templating.adoc │ │ │ │ └── polymer_manual__changing_properties.adoc │ │ │ ├── preface.adoc │ │ │ ├── recipes.adoc │ │ │ └── recipes │ │ │ ├── recipes__conventions.adoc │ │ │ ├── recipes__conventions │ │ │ ├── recipes__conventions__css.adoc │ │ │ ├── recipes__conventions__import.adoc │ │ │ └── recipes__conventions__private_methods.adoc │ │ │ ├── recipes__di.adoc │ │ │ ├── recipes__fetch.adoc │ │ │ ├── recipes__i18n.adoc │ │ │ ├── recipes__library.adoc │ │ │ └── recipes__navigation.adoc │ ├── img │ │ └── dummy.txt │ └── source │ │ └── .gitignore ├── release_notes │ ├── adoc │ │ └── en │ │ │ └── release_notes.adoc │ ├── img │ │ └── dummy.txt │ ├── issues │ │ ├── release_7.2.0.md │ │ ├── release_7.2.1.md │ │ ├── release_7.2.10.md │ │ ├── release_7.2.11.md │ │ ├── release_7.2.12.md │ │ ├── release_7.2.13.md │ │ ├── release_7.2.14.md │ │ ├── release_7.2.15.md │ │ ├── release_7.2.16.md │ │ ├── release_7.2.17.md │ │ ├── release_7.2.18.md │ │ ├── release_7.2.19.md │ │ ├── release_7.2.2.md │ │ ├── release_7.2.20.md │ │ ├── release_7.2.21.md │ │ ├── release_7.2.22.md │ │ ├── release_7.2.23.md │ │ ├── release_7.2.3.md │ │ ├── release_7.2.4.md │ │ ├── release_7.2.5.md │ │ ├── release_7.2.6.md │ │ ├── release_7.2.7.md │ │ ├── release_7.2.8.md │ │ └── release_7.2.9.md │ └── source │ │ └── dummy.txt ├── reporting │ ├── adoc │ │ ├── en │ │ │ ├── app_properties.adoc │ │ │ ├── creation.adoc │ │ │ ├── creation │ │ │ │ ├── formatters.adoc │ │ │ │ ├── localization.adoc │ │ │ │ ├── parameters.adoc │ │ │ │ ├── permissions.adoc │ │ │ │ ├── structure.adoc │ │ │ │ ├── structure │ │ │ │ │ ├── structure_entity.adoc │ │ │ │ │ ├── structure_groovy.adoc │ │ │ │ │ ├── structure_jpql.adoc │ │ │ │ │ ├── structure_json.adoc │ │ │ │ │ ├── structure_list.adoc │ │ │ │ │ └── structure_sql.adoc │ │ │ │ ├── template.adoc │ │ │ │ └── template │ │ │ │ │ ├── exec_report_on_external_server.adoc │ │ │ │ │ ├── pivotTable_output.adoc │ │ │ │ │ ├── table_output.adoc │ │ │ │ │ ├── template_chart.adoc │ │ │ │ │ ├── template_csv.adoc │ │ │ │ │ ├── template_custom.adoc │ │ │ │ │ ├── template_doc.adoc │ │ │ │ │ ├── template_html.adoc │ │ │ │ │ ├── template_html │ │ │ │ │ └── html_to_pdf.adoc │ │ │ │ │ ├── template_jasper.adoc │ │ │ │ │ ├── template_to_output.adoc │ │ │ │ │ └── template_xls.adoc │ │ │ ├── examples.adoc │ │ │ ├── examples │ │ │ │ ├── crosstab_xls.adoc │ │ │ │ ├── example_html.adoc │ │ │ │ ├── example_html_groovy_template.adoc │ │ │ │ ├── example_jasper.adoc │ │ │ │ └── example_xls.adoc │ │ │ ├── execution_history.adoc │ │ │ ├── installation.adoc │ │ │ ├── open_office.adoc │ │ │ ├── preface.adoc │ │ │ ├── preface │ │ │ │ ├── additional_info.adoc │ │ │ │ ├── audience.adoc │ │ │ │ └── feedback.adoc │ │ │ ├── reporting.adoc │ │ │ ├── reporting_overview.adoc │ │ │ ├── rest_reports.adoc │ │ │ ├── running.adoc │ │ │ ├── running │ │ │ │ ├── run_actions.adoc │ │ │ │ ├── run_cancel.adoc │ │ │ │ └── run_common.adoc │ │ │ ├── wizard.adoc │ │ │ └── wizard │ │ │ │ ├── chart_report.adoc │ │ │ │ ├── list_of_entities_report.adoc │ │ │ │ ├── project_setup_report.adoc │ │ │ │ ├── query_report.adoc │ │ │ │ └── single_entity_report.adoc │ │ └── ru │ │ │ ├── app_properties.adoc │ │ │ ├── creation.adoc │ │ │ ├── creation │ │ │ ├── formatters.adoc │ │ │ ├── localization.adoc │ │ │ ├── parameters.adoc │ │ │ ├── permissions.adoc │ │ │ ├── structure.adoc │ │ │ ├── structure │ │ │ │ ├── structure_entity.adoc │ │ │ │ ├── structure_groovy.adoc │ │ │ │ ├── structure_jpql.adoc │ │ │ │ ├── structure_json.adoc │ │ │ │ ├── structure_list.adoc │ │ │ │ └── structure_sql.adoc │ │ │ ├── template.adoc │ │ │ └── template │ │ │ │ ├── exec_report_on_external_server.adoc │ │ │ │ ├── pivotTable_output.adoc │ │ │ │ ├── table_output.adoc │ │ │ │ ├── template_chart.adoc │ │ │ │ ├── template_csv.adoc │ │ │ │ ├── template_custom.adoc │ │ │ │ ├── template_doc.adoc │ │ │ │ ├── template_html.adoc │ │ │ │ ├── template_html │ │ │ │ └── html_to_pdf.adoc │ │ │ │ ├── template_jasper.adoc │ │ │ │ ├── template_to_output.adoc │ │ │ │ └── template_xls.adoc │ │ │ ├── examples.adoc │ │ │ ├── examples │ │ │ ├── crosstab_xls.adoc │ │ │ ├── example_html.adoc │ │ │ ├── example_html_groovy_template.adoc │ │ │ ├── example_jasper.adoc │ │ │ └── example_xls.adoc │ │ │ ├── execution_history.adoc │ │ │ ├── installation.adoc │ │ │ ├── open_office.adoc │ │ │ ├── preface.adoc │ │ │ ├── preface │ │ │ ├── additional_info.adoc │ │ │ ├── audience.adoc │ │ │ └── feedback.adoc │ │ │ ├── reporting.adoc │ │ │ ├── reporting_overview.adoc │ │ │ ├── rest_reports.adoc │ │ │ ├── running.adoc │ │ │ ├── running │ │ │ ├── run_actions.adoc │ │ │ ├── run_cancel.adoc │ │ │ └── run_common.adoc │ │ │ ├── wizard.adoc │ │ │ └── wizard │ │ │ ├── chart_report.adoc │ │ │ ├── list_of_entities_report.adoc │ │ │ ├── project_setup_report.adoc │ │ │ ├── query_report.adoc │ │ │ └── single_entity_report.adoc │ ├── img │ │ ├── addon_continue.png │ │ ├── addon_install.png │ │ ├── addons.png │ │ ├── attributes_selection_arrow.png │ │ ├── attributes_selection_down.png │ │ ├── attributes_selection_up.png │ │ ├── chart_template_pie.png │ │ ├── chart_template_serial.png │ │ ├── chart_wizard.png │ │ ├── chart_wizard_2.png │ │ ├── chart_wizard_3.png │ │ ├── chart_wizard_4.png │ │ ├── chart_wizard_5.png │ │ ├── class_defined_template.png │ │ ├── cross_parameter_validation.png │ │ ├── crosstab_external_params.png │ │ ├── crosstab_names_regions.png │ │ ├── crosstab_result.png │ │ ├── crosstab_structure.png │ │ ├── crosstab_template_2.png │ │ ├── csv_output.png │ │ ├── csv_report.png │ │ ├── csv_report_editor.png │ │ ├── csv_template.png │ │ ├── example_html_1.png │ │ ├── example_html_2.png │ │ ├── example_html_3.png │ │ ├── exec_report_on_external_server.png │ │ ├── html_groovy_template_parameter.png │ │ ├── html_groovy_template_structure.png │ │ ├── html_report_editor.png │ │ ├── html_template_editor.png │ │ ├── list_of_entities_attributes.png │ │ ├── list_of_entities_editor.png │ │ ├── list_of_entities_result.png │ │ ├── list_of_entities_running.png │ │ ├── list_of_entities_screens.png │ │ ├── list_of_entities_step_1.png │ │ ├── list_of_entities_step_2.png │ │ ├── list_of_entities_step_3.png │ │ ├── pivot_template_aggregation.png │ │ ├── pivot_template_custom_properties.png │ │ ├── pivot_template_properties.png │ │ ├── pivot_template_renderer.png │ │ ├── pivot_template_result.png │ │ ├── publicationsTemplate_editor.png │ │ ├── publications_report.png │ │ ├── query_editor.png │ │ ├── query_parameter.png │ │ ├── query_parameter_rename.png │ │ ├── query_result.png │ │ ├── query_running.png │ │ ├── query_step_1.png │ │ ├── query_step_2.png │ │ ├── report_execution_history.png │ │ ├── report_formatter.png │ │ ├── report_parameter.png │ │ ├── report_parameter_transformation.png │ │ ├── report_parameter_validation.png │ │ ├── report_structure.png │ │ ├── report_table_output.png │ │ ├── report_template.png │ │ ├── report_template_alterable.png │ │ ├── report_template_doc.png │ │ ├── report_template_xls.png │ │ ├── reporting.png │ │ ├── reporting_addon.png │ │ ├── reports_wizard_main.png │ │ ├── run_actions_listPrint_confirmation.png │ │ ├── run_button.png │ │ ├── run_cancel.png │ │ ├── run_cancel_2.png │ │ ├── sample1_param.png │ │ ├── sample1_structure.png │ │ ├── sample1_template.png │ │ ├── sample_jasper.png │ │ ├── sample_jasper_2.png │ │ ├── sample_jasper_3.png │ │ ├── sample_jasper_4.png │ │ ├── show_report_table.png │ │ ├── single_entity_attributes.png │ │ ├── single_entity_reports_list.png │ │ ├── single_entity_result.png │ │ ├── single_entity_running.png │ │ ├── single_entity_screens.png │ │ ├── single_entity_step_1.png │ │ ├── single_entity_step_2.png │ │ ├── single_entity_step_3.png │ │ ├── single_entity_test_running.png │ │ ├── visible_for_rest.png │ │ ├── without_params_1.png.png │ │ ├── without_params_3.png.png │ │ ├── without_params_4.png │ │ └── yEd │ │ │ └── reporting.graphml │ └── source │ │ ├── .gitignore │ │ ├── PublicationsTemplate.html │ │ ├── bookPublications_example_groovy_html.jpql │ │ ├── crosstab_dynamic_header.groovy │ │ ├── crosstab_master_data.sql │ │ ├── crosstab_orders.sql │ │ ├── crosstab_template_1.jpql │ │ ├── crosstab_template_2.jpql │ │ ├── crosstab_template_3.groovy │ │ ├── example_jasper.groovy │ │ ├── examples_grooveEngine1.html │ │ ├── examples_grooveEngine2.html │ │ ├── examples_html.html │ │ ├── examples_html.java │ │ ├── examples_html_1.css │ │ ├── examples_html_10.html │ │ ├── examples_html_11.html │ │ ├── examples_html_2.css │ │ ├── examples_html_3.css │ │ ├── examples_html_4.css │ │ ├── examples_html_5.html │ │ ├── examples_html_6.html │ │ ├── examples_html_8.html │ │ ├── examples_html_9.html │ │ ├── formatter_for_dates.groovy │ │ ├── group_info_response.json │ │ ├── jasper.jrxml │ │ ├── json.groovy │ │ ├── json.json │ │ ├── list_of_entities_report_example.xml │ │ ├── report_info_response.json │ │ ├── reports_response.json │ │ ├── run_actions_example1.xml │ │ ├── run_actions_example2.java │ │ ├── run_actions_example3.xml │ │ ├── run_actions_example4.java │ │ ├── run_actions_example5.xml │ │ ├── run_actions_example6.java │ │ ├── run_actions_example7.xml │ │ ├── run_actions_example8.java │ │ ├── single_entity_report_example_1.xml │ │ └── wizard_example_1.xml └── workflow │ ├── adoc │ ├── en │ │ ├── chapter1.adoc │ │ ├── chapter2.adoc │ │ └── workflow.adoc │ └── ru │ │ ├── chapter1.adoc │ │ ├── chapter2.adoc │ │ └── workflow.adoc │ ├── img │ ├── Workflow.png │ ├── WorkflowEntities.png │ ├── qs_browse_layout.png │ ├── qs_edit_layout.png │ ├── qs_entity_designer.png │ ├── qs_menu_designer.png │ ├── qs_process_design_1.png │ ├── qs_process_design_2.png │ ├── qs_process_design_3.png │ ├── qs_process_edit.png │ ├── qs_run_assignment_1.png │ ├── qs_run_assignment_2.png │ ├── qs_run_browse_1.png │ ├── qs_run_browse_2.png │ ├── qs_run_browse_3.png │ ├── qs_run_create_card.png │ ├── qs_run_edit_card_1.png │ ├── qs_run_edit_card_2.png │ ├── qs_run_edit_card_3.png │ ├── qs_run_transition_form.png │ ├── qs_view_browse.png │ ├── qs_view_designer.png │ ├── qs_view_edit.png │ └── yEd │ │ ├── Workflow.graphml │ │ └── WorkflowEntities.graphml │ └── source │ └── .gitignore ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── desktop-menu.png ├── gh-icon.svg ├── heroku-db.png ├── menu.png ├── search.png └── toc-pointer.png ├── js ├── desktop-mobile-menu.js ├── highlight-js │ ├── highlight-init.js │ ├── highlight.min.js │ └── styles │ │ └── github.min.css ├── jquery-1.11.1.min.js ├── jquery.nearest.min.js ├── jquery.treeview.js ├── mobile-menu.js ├── polymer-polyfill │ ├── webcomponents-hi-ce.js │ ├── webcomponents-hi-sd-ce.js │ ├── webcomponents-hi.js │ ├── webcomponents-lite.js │ ├── webcomponents-loader.js │ └── webcomponents-sd-ce.js └── toc-controller.js ├── polymer-build ├── .gitignore ├── .project ├── app-with-2-level-navigation.html ├── app-with-navigation.html ├── bower.json ├── gulpfile.js ├── index.html ├── package-lock.json ├── package.json ├── polymer.json └── src │ ├── cuba │ ├── entity │ │ ├── book-creator.html │ │ ├── books-browser.html │ │ └── stub │ │ │ ├── cuba-book-creator-stub.html │ │ │ └── cuba-books-browser-stub.html │ ├── file │ │ ├── file-upload-app.html │ │ └── stub │ │ │ └── file-upload-app-stub.html │ ├── init │ │ ├── empty-app.html │ │ ├── stub │ │ │ └── user-info-component-stub.html │ │ └── user-info-component.html │ └── login │ │ ├── app-with-login-custom.html │ │ ├── app-with-login-styled.html │ │ ├── app-with-login.html │ │ └── stub │ │ ├── cuba-app-with-login-custom-stub.html │ │ ├── cuba-app-with-login-stub.html │ │ └── cuba-app-with-login-styled-stub.html │ ├── example-shell.html │ ├── polymer-advanced │ ├── computed-properties │ │ └── service-agreement.html │ ├── dom │ │ ├── colored-square-controller-with-if-fixed.html │ │ ├── colored-square-controller-with-if.html │ │ ├── colored-square-controller.html │ │ └── colored-square.html │ ├── lifecycle │ │ ├── personal-details-page.html │ │ ├── preferences-page.html │ │ └── profile-page.html │ ├── mixins │ │ ├── input-with-validation.html │ │ ├── spelling-checker.html │ │ └── validated-element-mixin.html │ └── observers │ │ ├── company-type-select-enhanced.html │ │ └── company-type-select.html │ ├── polymer-basic │ ├── events │ │ ├── event-manager.html │ │ └── participation-form.html │ ├── library │ │ └── music-survey.html │ ├── properties │ │ └── name-guesser.html │ ├── simple-component │ │ └── alert-button.html │ └── templating │ │ └── name-list.html │ ├── recipes │ ├── ajax │ │ ├── fetch-example.html │ │ └── iron-ajax-example.html │ ├── convention │ │ ├── access-control │ │ │ ├── disc-jockey.html │ │ │ └── disco-lights.html │ │ ├── css │ │ │ ├── blue-button.html │ │ │ └── shared-styles.html │ │ └── import │ │ │ ├── child-button-component.html │ │ │ ├── iframe │ │ │ └── parent-simple-button-component-app.html │ │ │ ├── parent-button-component.html │ │ │ └── parent-simple-button-component.html │ ├── di │ │ ├── forbidden-button.html │ │ └── notification-service.html │ ├── i18n │ │ ├── calcium-adv.html │ │ ├── i18n-mixin.html │ │ ├── locale-switcher.html │ │ ├── simple-greeting-component.html │ │ └── stub │ │ │ ├── calcium-adv-stub.html │ │ │ ├── locale-switcher-stub.html │ │ │ └── simple-greeting-component-stub.html │ └── navigation │ │ ├── paper-elements-registry.html │ │ ├── polymer-elements-registry.html │ │ └── thermodynamic-laws.html │ └── rest-stub │ └── cuba-app-stub.html ├── settings.gradle ├── styles ├── cuba.css └── jquery.treeview.css └── tools ├── asciidoctor-stylesheet-factory ├── .gitignore ├── Gemfile ├── LICENSE ├── README.adoc ├── build-stylesheet.sh ├── config.rb ├── contrib │ └── highlight.js │ │ └── styles │ │ └── foundation.css ├── images │ ├── github │ │ ├── blockquote-arrow.png │ │ └── li-chevron.png │ ├── golo │ │ ├── body-bg.png │ │ └── pre-bg.png │ ├── maker │ │ └── body-bg.png │ └── riak │ │ ├── body-bg.jpg │ │ ├── footer-bg.jpg │ │ ├── info-bg.jpg │ │ ├── pre-bg.jpg │ │ └── sidebar-bg.jpg ├── lib │ └── functions.rb └── sass │ ├── asciidoctor.scss │ ├── components │ ├── _asciidoc.scss │ ├── _awesome-icons.scss │ └── _print.scss │ ├── cuba.scss │ ├── fonts │ ├── _asciidoctor.scss │ ├── _font-awesome.scss │ ├── _glegoo.scss │ ├── _golo-collection.scss │ ├── _lato.scss │ ├── _noticia-text.scss │ ├── _overpass.scss │ └── _titillium-web.scss │ └── settings │ ├── _asciidoctor.scss │ ├── _cuba.scss │ ├── _defaults.scss │ └── _settings.scss.dist ├── chopper ├── anchors │ ├── anchors.css │ └── anchors.js ├── index.html ├── page.html ├── var.properties ├── var_ru.properties └── war │ ├── search.jsp │ └── styles │ └── chopper.css └── tomcat └── conf └── server.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | *.ipr 3 | *.iml 4 | *.iws 5 | .idea/ 6 | build/* 7 | buildSrc/build/* 8 | deploy/* 9 | out 10 | .shelf/ 11 | .vscode/ 12 | .DS_Store 13 | -------------------------------------------------------------------------------- /buildSrc/src/main/resources/META-INF/gradle-plugins/doc.properties: -------------------------------------------------------------------------------- 1 | implementation-class=DocPlugin 2 | -------------------------------------------------------------------------------- /content/bi/img/addon_continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/addon_continue.png -------------------------------------------------------------------------------- /content/bi/img/addon_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/addon_install.png -------------------------------------------------------------------------------- /content/bi/img/addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/addons.png -------------------------------------------------------------------------------- /content/bi/img/bi_addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/bi_addon.png -------------------------------------------------------------------------------- /content/bi/img/bi_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/bi_component.png -------------------------------------------------------------------------------- /content/bi/img/bi_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/bi_create.png -------------------------------------------------------------------------------- /content/bi/img/bi_pentaho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/bi_pentaho.png -------------------------------------------------------------------------------- /content/bi/img/bi_pentaho_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/bi_pentaho_2.png -------------------------------------------------------------------------------- /content/bi/img/bi_pentaho_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/bi_pentaho_3.png -------------------------------------------------------------------------------- /content/bi/img/bi_pentaho_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/bi_pentaho_4.png -------------------------------------------------------------------------------- /content/bi/img/bi_pentaho_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/bi_pentaho_5.png -------------------------------------------------------------------------------- /content/bi/img/bi_star_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/bi_star_schema.png -------------------------------------------------------------------------------- /content/bi/img/pentaho.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/pentaho.gif -------------------------------------------------------------------------------- /content/bi/img/pentaho_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/pentaho_console.png -------------------------------------------------------------------------------- /content/bi/img/pentaho_console_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/pentaho_console_2.png -------------------------------------------------------------------------------- /content/bi/img/pentaho_console_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/pentaho_console_3.png -------------------------------------------------------------------------------- /content/bi/img/pentaho_console_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/pentaho_console_4.png -------------------------------------------------------------------------------- /content/bi/img/pentaho_console_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/pentaho_console_5.png -------------------------------------------------------------------------------- /content/bi/img/saiku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/saiku.gif -------------------------------------------------------------------------------- /content/bi/img/star-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_10.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_11.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_12.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_13.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_14.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_2.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_3.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_4.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_5.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_6.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_7.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_8.png -------------------------------------------------------------------------------- /content/bi/img/star-schema_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bi/img/star-schema_9.png -------------------------------------------------------------------------------- /content/bi/source/bi_beans.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /content/bi/source/bi_port.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/bi/source/bi_shutdown_port.xml: -------------------------------------------------------------------------------- 1 | 2 | ... 3 | -------------------------------------------------------------------------------- /content/bi/source/pentaho_gif.js: -------------------------------------------------------------------------------- 1 | var oeTags = ''; 2 | document.write( oeTags ); -------------------------------------------------------------------------------- /content/bpm/adoc/en/examples.adoc: -------------------------------------------------------------------------------- 1 | :sourcesdir: ../../source 2 | 3 | [[examples]] 4 | == Examples 5 | 6 | include::examples/task_execution_sample.adoc[] 7 | -------------------------------------------------------------------------------- /content/bpm/adoc/ru/examples.adoc: -------------------------------------------------------------------------------- 1 | :sourcesdir: ../../source 2 | 3 | [[examples]] 4 | == Примеры 5 | 6 | include::examples/task_execution_sample.adoc[] 7 | 8 | -------------------------------------------------------------------------------- /content/bpm/img/ApprovalFlowOrder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ApprovalFlowOrder.png -------------------------------------------------------------------------------- /content/bpm/img/ApprovalMutlInstanceType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ApprovalMutlInstanceType.png -------------------------------------------------------------------------------- /content/bpm/img/CompleteApprovalForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/CompleteApprovalForm.png -------------------------------------------------------------------------------- /content/bpm/img/ContractEditNotApproved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ContractEditNotApproved.png -------------------------------------------------------------------------------- /content/bpm/img/ContractEditValidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ContractEditValidation.png -------------------------------------------------------------------------------- /content/bpm/img/DataModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/DataModel.png -------------------------------------------------------------------------------- /content/bpm/img/DeployModelScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/DeployModelScreen.png -------------------------------------------------------------------------------- /content/bpm/img/ModelValidationNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ModelValidationNode.png -------------------------------------------------------------------------------- /content/bpm/img/ModelWithApproval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ModelWithApproval.png -------------------------------------------------------------------------------- /content/bpm/img/NotValidFlowOutcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/NotValidFlowOutcome.png -------------------------------------------------------------------------------- /content/bpm/img/OutcomesForValidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/OutcomesForValidation.png -------------------------------------------------------------------------------- /content/bpm/img/ProcDefinitionEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ProcDefinitionEdit.png -------------------------------------------------------------------------------- /content/bpm/img/ProcInstanceEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ProcInstanceEdit.png -------------------------------------------------------------------------------- /content/bpm/img/ProcInstanceEditApproval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ProcInstanceEditApproval.png -------------------------------------------------------------------------------- /content/bpm/img/ProcTaskBrowse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ProcTaskBrowse.png -------------------------------------------------------------------------------- /content/bpm/img/ProcessFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ProcessFull.png -------------------------------------------------------------------------------- /content/bpm/img/ProcessRolesEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ProcessRolesEditor.png -------------------------------------------------------------------------------- /content/bpm/img/ProcessRolesProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ProcessRolesProperty.png -------------------------------------------------------------------------------- /content/bpm/img/StartForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/StartForm.png -------------------------------------------------------------------------------- /content/bpm/img/StartProcessForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/StartProcessForm.png -------------------------------------------------------------------------------- /content/bpm/img/StencilSetAddGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/StencilSetAddGroup.png -------------------------------------------------------------------------------- /content/bpm/img/StencilSetAddStencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/StencilSetAddStencil.png -------------------------------------------------------------------------------- /content/bpm/img/StencilSetModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/StencilSetModel.png -------------------------------------------------------------------------------- /content/bpm/img/TaskListApproval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/TaskListApproval.png -------------------------------------------------------------------------------- /content/bpm/img/TaskOutcomesExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/TaskOutcomesExample.png -------------------------------------------------------------------------------- /content/bpm/img/TimerEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/TimerEdit.png -------------------------------------------------------------------------------- /content/bpm/img/ValidationCompleteForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ValidationCompleteForm.png -------------------------------------------------------------------------------- /content/bpm/img/ValidationFlowOrder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/ValidationFlowOrder.png -------------------------------------------------------------------------------- /content/bpm/img/addon_continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/addon_continue.png -------------------------------------------------------------------------------- /content/bpm/img/addon_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/addon_install.png -------------------------------------------------------------------------------- /content/bpm/img/addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/addons.png -------------------------------------------------------------------------------- /content/bpm/img/bpm_addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/bpm_addon.png -------------------------------------------------------------------------------- /content/bpm/img/refresh_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/refresh_button.png -------------------------------------------------------------------------------- /content/bpm/img/run_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/run_button.png -------------------------------------------------------------------------------- /content/bpm/img/stop_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/img/stop_button.png -------------------------------------------------------------------------------- /content/bpm/source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/bpm/source/.gitignore -------------------------------------------------------------------------------- /content/charts/img/chart/PivotTable_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/PivotTable_1.png -------------------------------------------------------------------------------- /content/charts/img/chart/PivotTable_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/PivotTable_2.png -------------------------------------------------------------------------------- /content/charts/img/chart/PivotTable_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/PivotTable_3.png -------------------------------------------------------------------------------- /content/charts/img/chart/chart_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/chart_simple.png -------------------------------------------------------------------------------- /content/charts/img/chart/charts_balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/charts_balloon.png -------------------------------------------------------------------------------- /content/charts/img/chart/charts_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/charts_cursor.png -------------------------------------------------------------------------------- /content/charts/img/chart/charts_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/charts_export.png -------------------------------------------------------------------------------- /content/charts/img/chart/charts_guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/charts_guides.png -------------------------------------------------------------------------------- /content/charts/img/chart/charts_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/charts_legend.png -------------------------------------------------------------------------------- /content/charts/img/chart/charts_titles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/charts_titles.png -------------------------------------------------------------------------------- /content/charts/img/chart/charts_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/charts_zoom.png -------------------------------------------------------------------------------- /content/charts/img/chart/column-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/column-chart.png -------------------------------------------------------------------------------- /content/charts/img/chart/column3d-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/column3d-chart.png -------------------------------------------------------------------------------- /content/charts/img/chart/funnel-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/funnel-chart.png -------------------------------------------------------------------------------- /content/charts/img/chart/gantt-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/gantt-chart.png -------------------------------------------------------------------------------- /content/charts/img/chart/gauge-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/gauge-chart.png -------------------------------------------------------------------------------- /content/charts/img/chart/line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/line-chart.png -------------------------------------------------------------------------------- /content/charts/img/chart/pie-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/pie-chart.png -------------------------------------------------------------------------------- /content/charts/img/chart/radar-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/radar-chart.png -------------------------------------------------------------------------------- /content/charts/img/chart/xy-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/chart/xy-chart.png -------------------------------------------------------------------------------- /content/charts/img/installation/addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/installation/addons.png -------------------------------------------------------------------------------- /content/charts/img/map/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/Circle.png -------------------------------------------------------------------------------- /content/charts/img/map/HeatMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/HeatMap.png -------------------------------------------------------------------------------- /content/charts/img/map/InfoWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/InfoWindow.png -------------------------------------------------------------------------------- /content/charts/img/map/MapLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/MapLabel.png -------------------------------------------------------------------------------- /content/charts/img/map/MarkerImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/MarkerImage.png -------------------------------------------------------------------------------- /content/charts/img/map/Polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/Polygon.png -------------------------------------------------------------------------------- /content/charts/img/map/Polyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/Polyline.png -------------------------------------------------------------------------------- /content/charts/img/map/map_demo_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/map_demo_click.png -------------------------------------------------------------------------------- /content/charts/img/map/map_demo_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/map_demo_heatmap.png -------------------------------------------------------------------------------- /content/charts/img/map/map_demo_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/map/map_demo_marker.png -------------------------------------------------------------------------------- /content/charts/img/pivot/PivotTable_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/pivot/PivotTable_1.png -------------------------------------------------------------------------------- /content/charts/img/pivot/PivotTable_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/pivot/PivotTable_2.png -------------------------------------------------------------------------------- /content/charts/img/pivot/PivotTable_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/charts/img/pivot/PivotTable_3.png -------------------------------------------------------------------------------- /content/charts/source/chart/chart_additionalFields.java: -------------------------------------------------------------------------------- 1 | List fields = Arrays.asList("income", "expense", "vat"); 2 | ganttChart.setAdditionalFields(fields); -------------------------------------------------------------------------------- /content/charts/source/chart/chart_chartScrollbar.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/charts/source/chart/chart_data_simplified.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/charts/source/chart/chart_renderingDelay.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/charts/source/chart/injectChart.java: -------------------------------------------------------------------------------- 1 | @Inject 2 | private Chart pieChart; -------------------------------------------------------------------------------- /content/charts/source/map/Circle.java: -------------------------------------------------------------------------------- 1 | Circle circle = map.createCircle(center, 130.5); 2 | circle.setDraggable(true);; 3 | circle.setFillOpacity(0.5); 4 | map.addCircleOverlay(circle); -------------------------------------------------------------------------------- /content/charts/source/map/InfoWindow.java: -------------------------------------------------------------------------------- 1 | InfoWindow w = map.createInfoWindow("Some text"); 2 | map.openInfoWindow(w); -------------------------------------------------------------------------------- /content/charts/source/map/MapGeoPoint.java: -------------------------------------------------------------------------------- 1 | GeoPoint center = map.createGeoPoint(53.490905, -2.249558); 2 | map.setCenter(center); -------------------------------------------------------------------------------- /content/charts/source/map/mapViewer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /content/charts/source/pivot/ShowPivotAction.java: -------------------------------------------------------------------------------- 1 | ShowPivotAction showPivotAction = new ShowPivotAction(tipsGroupTable); 2 | exportButton.setAction(showPivotAction); -------------------------------------------------------------------------------- /content/charts/source/pivot/ShowPivotAction_3.java: -------------------------------------------------------------------------------- 1 | ShowPivotAction showPivotAction = new ShowPivotAction(tipsGroupTable) 2 | .withExcludedProperties(Arrays.asList("sex", "smoker")); -------------------------------------------------------------------------------- /content/fts/img/2.1_project_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/2.1_project_setup.png -------------------------------------------------------------------------------- /content/fts/img/Example1Classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/Example1Classes.png -------------------------------------------------------------------------------- /content/fts/img/addon_continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/addon_continue.png -------------------------------------------------------------------------------- /content/fts/img/addon_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/addon_install.png -------------------------------------------------------------------------------- /content/fts/img/addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/addons.png -------------------------------------------------------------------------------- /content/fts/img/fts_addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/fts_addon.png -------------------------------------------------------------------------------- /content/fts/img/fts_enabled_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/fts_enabled_true.png -------------------------------------------------------------------------------- /content/fts/img/jmx_fts_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/jmx_fts_setup.png -------------------------------------------------------------------------------- /content/fts/img/refresh_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/refresh_button.png -------------------------------------------------------------------------------- /content/fts/img/run_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/img/run_button.png -------------------------------------------------------------------------------- /content/fts/source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/fts/source/.gitignore -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/cookbook.adoc: -------------------------------------------------------------------------------- 1 | [[cookbook]] 2 | === Cookbook 3 | 4 | See https://www.cuba-platform.com/guides[Guides]. 5 | -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/databases.adoc: -------------------------------------------------------------------------------- 1 | [[databases]] 2 | === Working with Databases 3 | 4 | See <>. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/db_update_in_dev.adoc: -------------------------------------------------------------------------------- 1 | [[db_update_in_dev]] 2 | === Creating the Database Schema 3 | 4 | See {studio_man_url}/#database_migration[Studio User Guide]. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/inividual_fields_recipe.adoc: -------------------------------------------------------------------------------- 1 | [[inividual_fields_recipe]] 2 | === Using Individual Fields instead of FieldGroup 3 | 4 | TODO -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/logging_setup_tomcat.adoc: -------------------------------------------------------------------------------- 1 | [[logging_setup_tomcat]] 2 | === Setting up Logging in Tomcat 3 | 4 | See <>. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/main_window_layout.adoc: -------------------------------------------------------------------------------- 1 | [[main_window_layout]] 2 | === Main Window Layout 3 | 4 | See <>. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/rest_api_v2.adoc: -------------------------------------------------------------------------------- 1 | [[rest_api_v2]] 2 | === REST API 3 | 4 | REST API has been moved to add-on, see its {rest_man_url}[documentation]. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/screen_params_recipe.adoc: -------------------------------------------------------------------------------- 1 | [[screen_params_recipe]] 2 | === Passing Parameters to a Screen 3 | 4 | See <>. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/screen_params_return.adoc: -------------------------------------------------------------------------------- 1 | [[screen_params_return]] 2 | === Returning Values from an Invoked Screen 3 | 4 | See <>. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/std_list_actions.adoc: -------------------------------------------------------------------------------- 1 | [[std_list_actions]] 2 | === List Component Actions 3 | 4 | See <>. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/std_picker_actions.adoc: -------------------------------------------------------------------------------- 1 | [[std_picker_actions]] 2 | === Picker Field Actions 3 | 4 | See <>. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/ui_recipes.adoc: -------------------------------------------------------------------------------- 1 | [[ui_recipes]] 2 | === Working with Generic UI 3 | 4 | See <>. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/using_jmx_beans_recipe.adoc: -------------------------------------------------------------------------------- 1 | [[using_jmx_beans_recipe]] 2 | === Using JMX Beans 3 | 4 | See examples in the <> section. -------------------------------------------------------------------------------- /content/manual/adoc/en/removed_sections/web_theme.adoc: -------------------------------------------------------------------------------- 1 | [[web_theme]] 2 | === Themes in Web Applications 3 | 4 | See <>. 5 | -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/cookbook.adoc: -------------------------------------------------------------------------------- 1 | [[cookbook]] 2 | === Сборник рецептов 3 | 4 | См. https://www.cuba-platform.com/guides[Guides]. 5 | -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/databases.adoc: -------------------------------------------------------------------------------- 1 | [[databases]] 2 | === Работа с базой данных 3 | 4 | См. <>. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/inividual_fields_recipe.adoc: -------------------------------------------------------------------------------- 1 | [[inividual_fields_recipe]] 2 | === Использование независимых полей вместо FieldGroup 3 | 4 | TODO -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/logging_setup_tomcat.adoc: -------------------------------------------------------------------------------- 1 | [[logging_setup_tomcat]] 2 | === Настройка логирования в Tomcat 3 | 4 | См. <>. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/main_window_layout.adoc: -------------------------------------------------------------------------------- 1 | [[main_window_layout]] 2 | === Компоновка главного окна приложения 3 | 4 | См. <>. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/rest_api_v2.adoc: -------------------------------------------------------------------------------- 1 | [[rest_api_v2]] 2 | === REST API 3 | 4 | REST API перенесен в аддон, см. его {rest_man_url}[документацию]. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/screen_params_recipe.adoc: -------------------------------------------------------------------------------- 1 | [[screen_params_recipe]] 2 | === Передача параметров в экран 3 | 4 | См. <>. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/screen_params_return.adoc: -------------------------------------------------------------------------------- 1 | [[screen_params_return]] 2 | === Возврат значений из экрана 3 | 4 | См. <>. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/std_list_actions.adoc: -------------------------------------------------------------------------------- 1 | [[std_list_actions]] 2 | === Стандартные действия с коллекцией 3 | 4 | См. <>. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/std_picker_actions.adoc: -------------------------------------------------------------------------------- 1 | [[std_picker_actions]] 2 | === Стандартные действия поля выбора 3 | 4 | См. <>. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/ui_recipes.adoc: -------------------------------------------------------------------------------- 1 | [[ui_recipes]] 2 | === Работа с Generic UI 3 | 4 | См. <>. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/using_jmx_beans_recipe.adoc: -------------------------------------------------------------------------------- 1 | [[using_jmx_beans_recipe]] 2 | === Использование JMX-бинов 3 | 4 | См. примеры в разделе <>. -------------------------------------------------------------------------------- /content/manual/adoc/ru/removed_sections/web_theme.adoc: -------------------------------------------------------------------------------- 1 | [[web_theme]] 2 | === Тема в веб-приложениях 3 | 4 | См. <>. 5 | -------------------------------------------------------------------------------- /content/manual/img/BaseProjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/BaseProjects.png -------------------------------------------------------------------------------- /content/manual/img/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/Button.png -------------------------------------------------------------------------------- /content/manual/img/CheckBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/CheckBox.png -------------------------------------------------------------------------------- /content/manual/img/ClientStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/ClientStructure.png -------------------------------------------------------------------------------- /content/manual/img/Controllers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/Controllers.png -------------------------------------------------------------------------------- /content/manual/img/Datasources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/Datasources.png -------------------------------------------------------------------------------- /content/manual/img/DeploymentStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/DeploymentStructure.png -------------------------------------------------------------------------------- /content/manual/img/EntityClasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/EntityClasses.png -------------------------------------------------------------------------------- /content/manual/img/EntityClasses_Long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/EntityClasses_Long.png -------------------------------------------------------------------------------- /content/manual/img/EntityClasses_String.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/EntityClasses_String.png -------------------------------------------------------------------------------- /content/manual/img/EntityClasses_Uuid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/EntityClasses_Uuid.png -------------------------------------------------------------------------------- /content/manual/img/GroupTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/GroupTable.png -------------------------------------------------------------------------------- /content/manual/img/HaulmontLogoMax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/HaulmontLogoMax.png -------------------------------------------------------------------------------- /content/manual/img/JMXBeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/JMXBeans.png -------------------------------------------------------------------------------- /content/manual/img/LinkButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/LinkButton.png -------------------------------------------------------------------------------- /content/manual/img/LookupField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/LookupField.png -------------------------------------------------------------------------------- /content/manual/img/LookupPickerField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/LookupPickerField.png -------------------------------------------------------------------------------- /content/manual/img/MetadataFramework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/MetadataFramework.png -------------------------------------------------------------------------------- /content/manual/img/Middleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/Middleware.png -------------------------------------------------------------------------------- /content/manual/img/MiddlewareServices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/MiddlewareServices.png -------------------------------------------------------------------------------- /content/manual/img/MiddlewareStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/MiddlewareStructure.png -------------------------------------------------------------------------------- /content/manual/img/MultiUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/MultiUpload.png -------------------------------------------------------------------------------- /content/manual/img/PickerField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/PickerField.png -------------------------------------------------------------------------------- /content/manual/img/PopupButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/PopupButton.png -------------------------------------------------------------------------------- /content/manual/img/Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/Security.png -------------------------------------------------------------------------------- /content/manual/img/Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/Tree.png -------------------------------------------------------------------------------- /content/manual/img/TwinColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/TwinColumn.png -------------------------------------------------------------------------------- /content/manual/img/Upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/Upload.png -------------------------------------------------------------------------------- /content/manual/img/ValueDatasources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/ValueDatasources.png -------------------------------------------------------------------------------- /content/manual/img/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/View.png -------------------------------------------------------------------------------- /content/manual/img/WebLoginStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/WebLoginStructure.png -------------------------------------------------------------------------------- /content/manual/img/actions_primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/actions_primary.png -------------------------------------------------------------------------------- /content/manual/img/add_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/add_icons.png -------------------------------------------------------------------------------- /content/manual/img/app_components_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/app_components_sample.png -------------------------------------------------------------------------------- /content/manual/img/app_start_recipe_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/app_start_recipe_1.png -------------------------------------------------------------------------------- /content/manual/img/bluemix_buildWar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/bluemix_buildWar.png -------------------------------------------------------------------------------- /content/manual/img/bluemix_war_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/bluemix_war_settings.png -------------------------------------------------------------------------------- /content/manual/img/branding_login_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/branding_login_screen.png -------------------------------------------------------------------------------- /content/manual/img/categoryEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/categoryEditor.png -------------------------------------------------------------------------------- /content/manual/img/categoryLocalization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/categoryLocalization.png -------------------------------------------------------------------------------- /content/manual/img/ch2_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/ch2_structure.png -------------------------------------------------------------------------------- /content/manual/img/cluster_mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/cluster_mw.png -------------------------------------------------------------------------------- /content/manual/img/cluster_webclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/cluster_webclient.png -------------------------------------------------------------------------------- /content/manual/img/cookbook/hover-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/cookbook/hover-dark.png -------------------------------------------------------------------------------- /content/manual/img/cuba-64-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/cuba-64-01.png -------------------------------------------------------------------------------- /content/manual/img/customContextXml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/customContextXml.png -------------------------------------------------------------------------------- /content/manual/img/dbStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/dbStructure.png -------------------------------------------------------------------------------- /content/manual/img/dynamic_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/dynamic_attributes.png -------------------------------------------------------------------------------- /content/manual/img/fileLoader_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/fileLoader_recipe.png -------------------------------------------------------------------------------- /content/manual/img/folder_custom_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/folder_custom_items.png -------------------------------------------------------------------------------- /content/manual/img/folder_default_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/folder_default_icons.png -------------------------------------------------------------------------------- /content/manual/img/generate_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/generate_id.png -------------------------------------------------------------------------------- /content/manual/img/gui_AppMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_AppMenu.png -------------------------------------------------------------------------------- /content/manual/img/gui_CheckBoxGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_CheckBoxGroup.png -------------------------------------------------------------------------------- /content/manual/img/gui_CheckBoxGroup_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_CheckBoxGroup_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_CheckBoxGroup_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_CheckBoxGroup_3.png -------------------------------------------------------------------------------- /content/manual/img/gui_CheckBoxGroup_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_CheckBoxGroup_4.png -------------------------------------------------------------------------------- /content/manual/img/gui_Form_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_Form_1.png -------------------------------------------------------------------------------- /content/manual/img/gui_Form_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_Form_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_Form_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_Form_3.png -------------------------------------------------------------------------------- /content/manual/img/gui_Image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_Image_1.png -------------------------------------------------------------------------------- /content/manual/img/gui_Image_dia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_Image_dia.png -------------------------------------------------------------------------------- /content/manual/img/gui_MaskedField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_MaskedField.png -------------------------------------------------------------------------------- /content/manual/img/gui_PasswordField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_PasswordField.png -------------------------------------------------------------------------------- /content/manual/img/gui_RadioButtonGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_RadioButtonGroup.png -------------------------------------------------------------------------------- /content/manual/img/gui_RichTextArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_RichTextArea.png -------------------------------------------------------------------------------- /content/manual/img/gui_SearchField_dia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_SearchField_dia.png -------------------------------------------------------------------------------- /content/manual/img/gui_TableBulkEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_TableBulkEdit.png -------------------------------------------------------------------------------- /content/manual/img/gui_TextArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_TextArea.png -------------------------------------------------------------------------------- /content/manual/img/gui_TextArea_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_TextArea_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_Tree.png -------------------------------------------------------------------------------- /content/manual/img/gui_TreeDataGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_TreeDataGrid.png -------------------------------------------------------------------------------- /content/manual/img/gui_accordion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_accordion.png -------------------------------------------------------------------------------- /content/manual/img/gui_accordion_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_accordion_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_boxlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_boxlayout.png -------------------------------------------------------------------------------- /content/manual/img/gui_browserFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_browserFrame.png -------------------------------------------------------------------------------- /content/manual/img/gui_browserFrame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_browserFrame_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_browserFrame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_browserFrame_3.png -------------------------------------------------------------------------------- /content/manual/img/gui_bulkEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_bulkEdit.png -------------------------------------------------------------------------------- /content/manual/img/gui_buttonTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_buttonTypes.png -------------------------------------------------------------------------------- /content/manual/img/gui_buttonsPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_buttonsPanel.png -------------------------------------------------------------------------------- /content/manual/img/gui_calendar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_calendar_1.png -------------------------------------------------------------------------------- /content/manual/img/gui_calendar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_calendar_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_calendar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_calendar_3.png -------------------------------------------------------------------------------- /content/manual/img/gui_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_color_picker.png -------------------------------------------------------------------------------- /content/manual/img/gui_cssLayout_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_cssLayout_1.png -------------------------------------------------------------------------------- /content/manual/img/gui_cssLayout_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_cssLayout_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_cssLayout_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_cssLayout_3.png -------------------------------------------------------------------------------- /content/manual/img/gui_cssLayout_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_cssLayout_4.png -------------------------------------------------------------------------------- /content/manual/img/gui_currencyField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_currencyField.png -------------------------------------------------------------------------------- /content/manual/img/gui_data/containers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_data/containers.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_1.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_10.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_11.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_12.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_13.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_14.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_15.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_16.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_3.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_7.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_8.png -------------------------------------------------------------------------------- /content/manual/img/gui_dataGrid_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dataGrid_9.png -------------------------------------------------------------------------------- /content/manual/img/gui_dateField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dateField.png -------------------------------------------------------------------------------- /content/manual/img/gui_dateFieldSimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dateFieldSimple.png -------------------------------------------------------------------------------- /content/manual/img/gui_datepicker_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_datepicker_mini.png -------------------------------------------------------------------------------- /content/manual/img/gui_dropZone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dropZone.png -------------------------------------------------------------------------------- /content/manual/img/gui_dropZone_static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_dropZone_static.png -------------------------------------------------------------------------------- /content/manual/img/gui_fieldGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_fieldGroup.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_add.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_apply_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_apply_to.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_cond_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_cond_up.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_custom.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_descr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_descr.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_editor.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_fts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_fts.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_fts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_fts_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_mini.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_name.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_remove.png -------------------------------------------------------------------------------- /content/manual/img/gui_filter_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_filter_reset.png -------------------------------------------------------------------------------- /content/manual/img/gui_flowbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_flowbox.png -------------------------------------------------------------------------------- /content/manual/img/gui_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_frame.png -------------------------------------------------------------------------------- /content/manual/img/gui_gridlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_gridlayout.png -------------------------------------------------------------------------------- /content/manual/img/gui_groupBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_groupBox.png -------------------------------------------------------------------------------- /content/manual/img/gui_groupBox_Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_groupBox_Panel.png -------------------------------------------------------------------------------- /content/manual/img/gui_groupBox_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_groupBox_light.png -------------------------------------------------------------------------------- /content/manual/img/gui_groupBox_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_groupBox_minus.png -------------------------------------------------------------------------------- /content/manual/img/gui_groupBox_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_groupBox_plus.png -------------------------------------------------------------------------------- /content/manual/img/gui_groupTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_groupTable.png -------------------------------------------------------------------------------- /content/manual/img/gui_groupTableIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_groupTableIcon.png -------------------------------------------------------------------------------- /content/manual/img/gui_hbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_hbox.png -------------------------------------------------------------------------------- /content/manual/img/gui_htmlBox_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_htmlBox_1.png -------------------------------------------------------------------------------- /content/manual/img/gui_invoiceBulkEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_invoiceBulkEdit.png -------------------------------------------------------------------------------- /content/manual/img/gui_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_label.png -------------------------------------------------------------------------------- /content/manual/img/gui_labelOrders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_labelOrders.png -------------------------------------------------------------------------------- /content/manual/img/gui_label_truncated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_label_truncated.png -------------------------------------------------------------------------------- /content/manual/img/gui_linkButtonTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_linkButtonTypes.png -------------------------------------------------------------------------------- /content/manual/img/gui_lookupField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_lookupField.png -------------------------------------------------------------------------------- /content/manual/img/gui_lookupField_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_lookupField_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_multipleUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_multipleUpload.png -------------------------------------------------------------------------------- /content/manual/img/gui_optionsGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_optionsGroup.png -------------------------------------------------------------------------------- /content/manual/img/gui_optionsList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_optionsList.png -------------------------------------------------------------------------------- /content/manual/img/gui_popup_view_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_popup_view_mini.png -------------------------------------------------------------------------------- /content/manual/img/gui_presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_presentation.png -------------------------------------------------------------------------------- /content/manual/img/gui_presentations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_presentations.png -------------------------------------------------------------------------------- /content/manual/img/gui_progressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_progressBar.png -------------------------------------------------------------------------------- /content/manual/img/gui_relatedEntities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_relatedEntities.png -------------------------------------------------------------------------------- /content/manual/img/gui_scrollBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_scrollBox.png -------------------------------------------------------------------------------- /content/manual/img/gui_scrollBox_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_scrollBox_1.png -------------------------------------------------------------------------------- /content/manual/img/gui_scrollBox_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_scrollBox_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_searchField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_searchField.png -------------------------------------------------------------------------------- /content/manual/img/gui_sidemenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_sidemenu.png -------------------------------------------------------------------------------- /content/manual/img/gui_sidemenu_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_sidemenu_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_sidemenu_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_sidemenu_3.png -------------------------------------------------------------------------------- /content/manual/img/gui_sidemenu_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_sidemenu_4.png -------------------------------------------------------------------------------- /content/manual/img/gui_sidemenu_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_sidemenu_5.png -------------------------------------------------------------------------------- /content/manual/img/gui_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_slider.png -------------------------------------------------------------------------------- /content/manual/img/gui_sortable_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_sortable_down.png -------------------------------------------------------------------------------- /content/manual/img/gui_sortable_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_sortable_up.png -------------------------------------------------------------------------------- /content/manual/img/gui_splitPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_splitPanel.png -------------------------------------------------------------------------------- /content/manual/img/gui_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_table.png -------------------------------------------------------------------------------- /content/manual/img/gui_tabsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_tabsheet.png -------------------------------------------------------------------------------- /content/manual/img/gui_teinColumnLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_teinColumnLeft.png -------------------------------------------------------------------------------- /content/manual/img/gui_teinColumnRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_teinColumnRight.png -------------------------------------------------------------------------------- /content/manual/img/gui_textField_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_textField_data.png -------------------------------------------------------------------------------- /content/manual/img/gui_textfield_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_textfield_2.png -------------------------------------------------------------------------------- /content/manual/img/gui_themes_example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_themes_example1.png -------------------------------------------------------------------------------- /content/manual/img/gui_themes_example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_themes_example2.png -------------------------------------------------------------------------------- /content/manual/img/gui_themes_example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_themes_example3.png -------------------------------------------------------------------------------- /content/manual/img/gui_themes_example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_themes_example4.png -------------------------------------------------------------------------------- /content/manual/img/gui_themes_example5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_themes_example5.png -------------------------------------------------------------------------------- /content/manual/img/gui_themes_example6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_themes_example6.png -------------------------------------------------------------------------------- /content/manual/img/gui_timeField.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_timeField.png -------------------------------------------------------------------------------- /content/manual/img/gui_timeFieldSec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_timeFieldSec.png -------------------------------------------------------------------------------- /content/manual/img/gui_tokenList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_tokenList.png -------------------------------------------------------------------------------- /content/manual/img/gui_tokenListBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_tokenListBottom.png -------------------------------------------------------------------------------- /content/manual/img/gui_tokenListInline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_tokenListInline.png -------------------------------------------------------------------------------- /content/manual/img/gui_tokenListLookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_tokenListLookup.png -------------------------------------------------------------------------------- /content/manual/img/gui_tokenListSimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_tokenListSimple.png -------------------------------------------------------------------------------- /content/manual/img/gui_treeTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_treeTable.png -------------------------------------------------------------------------------- /content/manual/img/gui_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_upload.png -------------------------------------------------------------------------------- /content/manual/img/gui_upload_7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_upload_7.0.png -------------------------------------------------------------------------------- /content/manual/img/gui_validator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_validator.png -------------------------------------------------------------------------------- /content/manual/img/gui_vbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/gui_vbox.png -------------------------------------------------------------------------------- /content/manual/img/heroku-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/heroku-db.png -------------------------------------------------------------------------------- /content/manual/img/heroku_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/heroku_activity.png -------------------------------------------------------------------------------- /content/manual/img/heroku_dyno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/heroku_dyno.png -------------------------------------------------------------------------------- /content/manual/img/icon_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/icon_set.png -------------------------------------------------------------------------------- /content/manual/img/image_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/image_recipe.png -------------------------------------------------------------------------------- /content/manual/img/images_in_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/images_in_table.png -------------------------------------------------------------------------------- /content/manual/img/images_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/images_recipe.png -------------------------------------------------------------------------------- /content/manual/img/jelasticDeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/jelasticDeploy.png -------------------------------------------------------------------------------- /content/manual/img/jelasticEnvironment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/jelasticEnvironment.png -------------------------------------------------------------------------------- /content/manual/img/jelasticWarSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/jelasticWarSettings.png -------------------------------------------------------------------------------- /content/manual/img/jmx-connection-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/jmx-connection-edit.png -------------------------------------------------------------------------------- /content/manual/img/jmx-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/jmx-console.png -------------------------------------------------------------------------------- /content/manual/img/jsComponent_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/jsComponent_example.png -------------------------------------------------------------------------------- /content/manual/img/layout_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/layout_1.png -------------------------------------------------------------------------------- /content/manual/img/layout_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/layout_2.png -------------------------------------------------------------------------------- /content/manual/img/layout_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/layout_3.png -------------------------------------------------------------------------------- /content/manual/img/local_admins_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/local_admins_groups.png -------------------------------------------------------------------------------- /content/manual/img/local_admins_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/local_admins_res.png -------------------------------------------------------------------------------- /content/manual/img/localization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/localization.png -------------------------------------------------------------------------------- /content/manual/img/logoMin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/logoMin.png -------------------------------------------------------------------------------- /content/manual/img/lookupBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/lookupBtn.png -------------------------------------------------------------------------------- /content/manual/img/main_window_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/main_window_1.png -------------------------------------------------------------------------------- /content/manual/img/main_window_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/main_window_2.png -------------------------------------------------------------------------------- /content/manual/img/moduleStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/moduleStructure.png -------------------------------------------------------------------------------- /content/manual/img/openBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/openBtn.png -------------------------------------------------------------------------------- /content/manual/img/postgres9_2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/postgres9_2_0.png -------------------------------------------------------------------------------- /content/manual/img/project_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/project_structure.png -------------------------------------------------------------------------------- /content/manual/img/qs_application_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_application_menu.png -------------------------------------------------------------------------------- /content/manual/img/qs_customer_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_customer_browse.png -------------------------------------------------------------------------------- /content/manual/img/qs_customer_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_customer_edit.png -------------------------------------------------------------------------------- /content/manual/img/qs_customer_edit_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_customer_edit_1.png -------------------------------------------------------------------------------- /content/manual/img/qs_customer_edit_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_customer_edit_2.png -------------------------------------------------------------------------------- /content/manual/img/qs_customer_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_customer_entity.png -------------------------------------------------------------------------------- /content/manual/img/qs_new_attribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_new_attribute.png -------------------------------------------------------------------------------- /content/manual/img/qs_new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_new_project.png -------------------------------------------------------------------------------- /content/manual/img/qs_order_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_order_browse.png -------------------------------------------------------------------------------- /content/manual/img/qs_order_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_order_edit.png -------------------------------------------------------------------------------- /content/manual/img/qs_order_edit_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_order_edit_2.png -------------------------------------------------------------------------------- /content/manual/img/qs_order_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/qs_order_view.png -------------------------------------------------------------------------------- /content/manual/img/quick_start_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/quick_start_1.png -------------------------------------------------------------------------------- /content/manual/img/rest_js_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/rest_js_1.png -------------------------------------------------------------------------------- /content/manual/img/rest_js_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/rest_js_2.png -------------------------------------------------------------------------------- /content/manual/img/role_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/role_attributes.png -------------------------------------------------------------------------------- /content/manual/img/runtimePropertyEnum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/runtimePropertyEnum.png -------------------------------------------------------------------------------- /content/manual/img/scaling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/scaling_1.png -------------------------------------------------------------------------------- /content/manual/img/scaling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/scaling_2.png -------------------------------------------------------------------------------- /content/manual/img/scaling_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/scaling_3.png -------------------------------------------------------------------------------- /content/manual/img/scaling_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/scaling_4.png -------------------------------------------------------------------------------- /content/manual/img/swagger_crud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/swagger_crud.png -------------------------------------------------------------------------------- /content/manual/img/swagger_crud_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/swagger_crud_model.png -------------------------------------------------------------------------------- /content/manual/img/swagger_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/swagger_query.png -------------------------------------------------------------------------------- /content/manual/img/swagger_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/swagger_service.png -------------------------------------------------------------------------------- /content/manual/img/url_generate_route.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/url_generate_route.PNG -------------------------------------------------------------------------------- /content/manual/img/url_generate_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/url_generate_route.png -------------------------------------------------------------------------------- /content/manual/img/url_screen_by_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/url_screen_by_route.png -------------------------------------------------------------------------------- /content/manual/img/userIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/userIndicator.png -------------------------------------------------------------------------------- /content/manual/img/user_subst_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/user_subst_edit.png -------------------------------------------------------------------------------- /content/manual/img/user_subst_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/user_subst_select.png -------------------------------------------------------------------------------- /content/manual/img/using_jmx_beans_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/using_jmx_beans_1.png -------------------------------------------------------------------------------- /content/manual/img/using_services_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuba-platform/documentation/7b91708544281146c3bfd6c88ca03dd75b88b746/content/manual/img/using_services_1.png -------------------------------------------------------------------------------- /content/manual/source/common/bean_validation_11.java: -------------------------------------------------------------------------------- 1 | public class Cart { 2 | 3 | @Size(min = 1) 4 | @Valid 5 | private List products; 6 | 7 | // ... 8 | } -------------------------------------------------------------------------------- /content/manual/source/common/bean_validation_4.java: -------------------------------------------------------------------------------- 1 | @Pattern(regexp = "\\S+@\\S+", message = "Invalid format") 2 | @Column(name = "EMAIL") 3 | protected String email; -------------------------------------------------------------------------------- /content/manual/source/common/configinterface_2.java: -------------------------------------------------------------------------------- 1 | int timeout = AppBeans.get(Configuration.class) 2 | .getConfig(ServerConfig.class) 3 | .getDefaultQueryTimeoutSec(); -------------------------------------------------------------------------------- /content/manual/source/common/configinterface_5.java: -------------------------------------------------------------------------------- 1 | @Factory(factory = UuidTypeFactory.class) 2 | UUID getUuidProp(); 3 | void setUuidProp(UUID value); -------------------------------------------------------------------------------- /content/manual/source/common/configuration_3.java: -------------------------------------------------------------------------------- 1 | // location 2 | 3 | String tempDir = AppBeans.get(Configuration.class).getConfig(GlobalConfig.class).getTempDir(); -------------------------------------------------------------------------------- /content/manual/source/common/dataManager_7.java: -------------------------------------------------------------------------------- 1 | user.setGroup(dataManager.getReference(Group.class, groupId)); 2 | dataManager.commit(user); -------------------------------------------------------------------------------- /content/manual/source/common/dataManager_8.java: -------------------------------------------------------------------------------- 1 | dataManager.remove(dataManager.getReference(Customer.class, customerId)); -------------------------------------------------------------------------------- /content/manual/source/common/dateformat_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /content/manual/source/common/enumlocale_1.java: -------------------------------------------------------------------------------- 1 | package com.abc.sales; 2 | 3 | public enum CustomerGrade { 4 | PREMIUM, 5 | HIGH, 6 | STANDARD 7 | } -------------------------------------------------------------------------------- /content/manual/source/common/events.java: -------------------------------------------------------------------------------- 1 | public interface Events { 2 | String NAME = "cuba_Events"; 3 | 4 | void publish(ApplicationEvent event); 5 | } -------------------------------------------------------------------------------- /content/manual/source/common/events_publish.java: -------------------------------------------------------------------------------- 1 | @Inject 2 | Events events; 3 | // ... 4 | UserRemovedEvent event = new UserRemovedEvent(this, removedUser); 5 | events.publish(event); -------------------------------------------------------------------------------- /content/manual/source/common/managedbean_2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/common/messages_2.java: -------------------------------------------------------------------------------- 1 | String formattedValue = messages.formatMessage(getClass(), "someFormat", someValue); -------------------------------------------------------------------------------- /content/manual/source/common/messages_3.java: -------------------------------------------------------------------------------- 1 | protected Messages messages = AppBeans.get(Messages.class); 2 | ... 3 | messages.getMainMessage("actions.Ok"); -------------------------------------------------------------------------------- /content/manual/source/common/messages_4.java: -------------------------------------------------------------------------------- 1 | String formattedValue = messages.formatMessage(messages.getMainMessagePack(), "someFormat", someValue); -------------------------------------------------------------------------------- /content/manual/source/common/messagetools_1.java: -------------------------------------------------------------------------------- 1 | MyMessageTools tools = messages.getTools(); 2 | tools.foo(); -------------------------------------------------------------------------------- /content/manual/source/common/messagetools_2.java: -------------------------------------------------------------------------------- 1 | ((MyMessageTools) messages.getTools()).foo(); -------------------------------------------------------------------------------- /content/manual/source/common/metadatatools_1.java: -------------------------------------------------------------------------------- 1 | MyMetadataTools tools = metadata.getTools(); 2 | tools.foo(); -------------------------------------------------------------------------------- /content/manual/source/common/metadatatools_2.java: -------------------------------------------------------------------------------- 1 | ((MyMetadataTools) metadata.getTools()).foo(); -------------------------------------------------------------------------------- /content/manual/source/common/mwexception_1.java: -------------------------------------------------------------------------------- 1 | @SupportedByClient 2 | public class WorkflowException extends RuntimeException { 3 | ... -------------------------------------------------------------------------------- /content/manual/source/common/mwexception_2.java: -------------------------------------------------------------------------------- 1 | @SupportedByClient 2 | @Logging(Logging.Type.BRIEF) 3 | public class FinancialTransactionException extends Exception { 4 | ... -------------------------------------------------------------------------------- /content/manual/source/common/resources_2.java: -------------------------------------------------------------------------------- 1 | try (InputStream stream = resources.getResourceAsStream(resourceLocation)) { 2 | ... 3 | } -------------------------------------------------------------------------------- /content/manual/source/common/scripting_3.java: -------------------------------------------------------------------------------- 1 | @Inject 2 | protected Scripting scripting; 3 | ... 4 | Class calculatorClass = scripting.loadClass("com.abc.sales.PriceCalculator"); -------------------------------------------------------------------------------- /content/manual/source/common/securitycontext_2.java: -------------------------------------------------------------------------------- 1 | executor.submit(new SecurityContextAwareRunnable<>(() -> { 2 | // business logic here 3 | })); -------------------------------------------------------------------------------- /content/manual/source/common/timesource_1.java: -------------------------------------------------------------------------------- 1 | @Inject 2 | protected TimeSource timeSource; 3 | ... 4 | Date date = timeSource.currentTimestamp(); -------------------------------------------------------------------------------- /content/manual/source/common/timesource_2.java: -------------------------------------------------------------------------------- 1 | long startTime = AppBeans.get(TimeSource.class).currentTimeMillis(); -------------------------------------------------------------------------------- /content/manual/source/common/views_3.java: -------------------------------------------------------------------------------- 1 | View view = ViewBuilder.of(Order.class) 2 | .addAll("date", "amount", "customer.name") 3 | .build(); -------------------------------------------------------------------------------- /content/manual/source/dbms/dbscripts_2.sql: -------------------------------------------------------------------------------- 1 | alter table SALES_CUSTOMER add ADDRESS varchar(200) -------------------------------------------------------------------------------- /content/manual/source/deployment/log_dir_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/development/build_gradle_buildWar_1.groovy: -------------------------------------------------------------------------------- 1 | task buildWar(type: CubaWarBuilding) { 2 | webXmlPath = 'modules/web/web/WEB-INF/single-war-web.xml' 3 | } -------------------------------------------------------------------------------- /content/manual/source/development/build_gradle_debugWidgetSet_2.groovy: -------------------------------------------------------------------------------- 1 | configure(webToolkitModule) { 2 | dependencies { 3 | runtime(servletApi) 4 | } 5 | ... -------------------------------------------------------------------------------- /content/manual/source/development/build_gradle_startDb_1.groovy: -------------------------------------------------------------------------------- 1 | task startDb(type: CubaHsqlStart) { 2 | dbName = 'sales' 3 | } -------------------------------------------------------------------------------- /content/manual/source/extension/screens_registration2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/features/cors_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /content/manual/source/features/dynamicAttrSQL_optionsLoader.sql: -------------------------------------------------------------------------------- 1 | select name from DYNAMICATTRIBUTESLOADER_TAG 2 | where CUSTOMER_ID = ${entity} 3 | and NAME = ${entity.+Categorytype} -------------------------------------------------------------------------------- /content/manual/source/features/dynamicAttrValidation.groovy: -------------------------------------------------------------------------------- 1 | if (!value.startsWith("correctValue")) return "the value '\$value' is incorrect" -------------------------------------------------------------------------------- /content/manual/source/features/dynamicAttrValidationRecalculation.groovy: -------------------------------------------------------------------------------- 1 | if (dynamicAttributes['PassengerNumberofseats'] > 9) return 'Bus' else return 'Passenger car' -------------------------------------------------------------------------------- /content/manual/source/features/email/sending_emails_2.txt: -------------------------------------------------------------------------------- 1 | The company news: 2 | ${newsItem.content} -------------------------------------------------------------------------------- /content/manual/source/features/email/sending_emails_3.properties: -------------------------------------------------------------------------------- 1 | cuba.email.fromAddress = do-not-reply@company.com 2 | cuba.email.smtpHost = mail.company.com -------------------------------------------------------------------------------- /content/manual/source/features/entity_with_category.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/CubaIcon.java: -------------------------------------------------------------------------------- 1 | public enum CubaIcon implements Icons.Icon { 2 | OK("font-icon:CHECK"), 3 | CANCEL("font-icon:BAN"), 4 | ... 5 | } -------------------------------------------------------------------------------- /content/manual/source/gui/MyIcon.java: -------------------------------------------------------------------------------- 1 | public enum MyIcon implements Icons.Icon { 2 | OK("icons/my-custom-ok.png"), 3 | ... 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/abstractframe_8.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui/abstractwindow_10.java: -------------------------------------------------------------------------------- 1 | @Override 2 | public void showValidationErrors(ValidationErrors errors) { 3 | super.showValidationErrors(errors); 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/abstractwindow_2.java: -------------------------------------------------------------------------------- 1 | @Override 2 | public void init(Map params) { 3 | getDialogOptions().setWidth("480px").setHeight("320px"); 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/abstractwindow_3.java: -------------------------------------------------------------------------------- 1 | @Override 2 | public void init(Map params) { 3 | getDialogOptions().setModal(false).setResizable(true); 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/abstractwindow_4.java: -------------------------------------------------------------------------------- 1 | @Override 2 | public void init(Map params) { 3 | getDialogOptions().setForceDialog(true); 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/abstractwindow_7.java: -------------------------------------------------------------------------------- 1 | getDialogOptions().setModal(true).setCloseOnClickOutside(true); -------------------------------------------------------------------------------- /content/manual/source/gui/abstractwindow_8.java: -------------------------------------------------------------------------------- 1 | getDialogOptions().setMaximized(true); -------------------------------------------------------------------------------- /content/manual/source/gui/abstractwindow_9.java: -------------------------------------------------------------------------------- 1 | getDialogOptions() 2 | .setPositionX(100) 3 | .setPositionY(100); -------------------------------------------------------------------------------- /content/manual/source/gui/add_icons_halo-ext.scss: -------------------------------------------------------------------------------- 1 | @import "fonts/icomoon/icomoon"; -------------------------------------------------------------------------------- /content/manual/source/gui/add_icons_usage.java: -------------------------------------------------------------------------------- 1 | spinnerBtn.setIconFromSet(IcoMoonIcon.SPINNER); -------------------------------------------------------------------------------- /content/manual/source/gui/add_icons_usage.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/addaction_2.java: -------------------------------------------------------------------------------- 1 | tableAdd.setWindowParamsSupplier(() -> 2 | ParamsMap.of("customer", getItem())); -------------------------------------------------------------------------------- /content/manual/source/gui/anonymous_access/web-app.properties: -------------------------------------------------------------------------------- 1 | cuba.web.initialScreenId = main 2 | cuba.web.allowAnonymousAccess = true 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/app_bean.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui/cdi_1.java: -------------------------------------------------------------------------------- 1 | @WindowParam(name = "job", required = true) 2 | protected Job job; -------------------------------------------------------------------------------- /content/manual/source/gui/createAction_1.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/createAction_2.java: -------------------------------------------------------------------------------- 1 | Map values = new HashMap<>(); 2 | values.put("type", CarType.PASSENGER); 3 | carCreateAction.setInitialValues(values); -------------------------------------------------------------------------------- /content/manual/source/gui/createAction_4.java: -------------------------------------------------------------------------------- 1 | carCreateAction.setInitialValuesSupplier(() -> 2 | ParamsMap.of("type", /* value depends on the current state of the screen */)); -------------------------------------------------------------------------------- /content/manual/source/gui/data_comp/data_comp_5.java: -------------------------------------------------------------------------------- 1 | @Subscribe 2 | protected void onBeforeShow(BeforeShowEvent event) { 3 | getScreenData().loadAll(); 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/data_comp/data_comp_sort_4.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui/data_comp/data_comp_sort_6.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui/data_context/dataContext_5.java: -------------------------------------------------------------------------------- 1 | @Inject 2 | private DataContext dataContext; -------------------------------------------------------------------------------- /content/manual/source/gui/data_context/dataContext_6.java: -------------------------------------------------------------------------------- 1 | DataContext dataContext = UiControllerUtils.getScreenData(screenOrFrame).getDataContext(); -------------------------------------------------------------------------------- /content/manual/source/gui/data_context/dataContext_7.java: -------------------------------------------------------------------------------- 1 | DataContext dataContext = UiControllerUtils.getScreenData(getFrame().getFrameOwner()).getDataContext(); -------------------------------------------------------------------------------- /content/manual/source/gui/datasources_10.java: -------------------------------------------------------------------------------- 1 | ordersDs.refresh(ParamsMap.of("number", "1")); -------------------------------------------------------------------------------- /content/manual/source/gui/datasources_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/datasources_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/datasources_15.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/datasources_18.java: -------------------------------------------------------------------------------- 1 | openWindow("sales$Order.lookup", WindowManager.OpenType.DIALOG, ParamsMap.of("customer", customersTable.getSingleSelected())); -------------------------------------------------------------------------------- /content/manual/source/gui/datasources_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/datasources_8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/desktopclient_2.java: -------------------------------------------------------------------------------- 1 | @Override 2 | protected String getDefaultHomeDir() { 3 | return System.getProperty("user.home") + "/.mycompany/sales"; 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/desktopclient_3.java: -------------------------------------------------------------------------------- 1 | @Override 2 | protected String getDefaultLogConfig() { 3 | return "sales-logback.xml"; 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/dialogs_1.java: -------------------------------------------------------------------------------- 1 | showMessageDialog("Warning", "Something is wrong", MessageType.WARNING.modal(true).closeOnClickOutside(true)); -------------------------------------------------------------------------------- /content/manual/source/gui/editAction_1.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui/helperScreenDependencyUtils.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui/js_component/jsComponent_2.java: -------------------------------------------------------------------------------- 1 | jsComponent.setInitFunctionName("com_company_demo_web_screens_Sandbox"); -------------------------------------------------------------------------------- /content/manual/source/gui/js_component/jsComponent_3.java: -------------------------------------------------------------------------------- 1 | MyState state = new MyState(); 2 | state.minValue = 0; 3 | state.maxValue = 100; 4 | jsComponent.setState(state); -------------------------------------------------------------------------------- /content/manual/source/gui/js_component/jsComponent_5.java: -------------------------------------------------------------------------------- 1 | jsComponent.callFunction("showNotification "); -------------------------------------------------------------------------------- /content/manual/source/gui/js_component/jsComponent_6.js: -------------------------------------------------------------------------------- 1 | this.showNotification = function () { 2 | alert("TEST"); 3 | }; -------------------------------------------------------------------------------- /content/manual/source/gui/main_window.java: -------------------------------------------------------------------------------- 1 | userIndicator.setUserNameFormatter(value -> value.getName() + " - [" + value.getEmail() + "]"); -------------------------------------------------------------------------------- /content/manual/source/gui/overridden_icon.java: -------------------------------------------------------------------------------- 1 | Icons icons = AppBeans.get(Icons.NAME); 2 | button.setIcon(icons.getIcon(CubaIcon.OK)) -------------------------------------------------------------------------------- /content/manual/source/gui/screens/screen_BeforeShowEvent.java: -------------------------------------------------------------------------------- 1 | @Subscribe 2 | protected void onBeforeShow(BeforeShowEvent event) { 3 | customersDl.load(); 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/screens/screen_methods_1.java: -------------------------------------------------------------------------------- 1 | @Subscribe("closeBtn") 2 | public void onCloseBtnClick(Button.ClickEvent event) { 3 | close(StandardOutcome.CLOSE); 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/screens/screen_methods_2.java: -------------------------------------------------------------------------------- 1 | @Subscribe 2 | public void onBeforeShow(BeforeShowEvent event) { 3 | getScreenData().loadAll(); 4 | } 5 | -------------------------------------------------------------------------------- /content/manual/source/gui/std_actions/std_actions_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ... 5 | -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_2.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_22.scss: -------------------------------------------------------------------------------- 1 | @mixin com_company_application-halo-ext { 2 | .name-field { 3 | background-color: lightyellow; 4 | } 5 | } -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_24.scss: -------------------------------------------------------------------------------- 1 | @import "../facebook"; 2 | 3 | @mixin com_haulmont_cuba { 4 | @include facebook; 5 | } -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_26.scss: -------------------------------------------------------------------------------- 1 | modules/ 2 | web/ 3 | src/ 4 | com.company.application/ 5 | web/ 6 | facebook-theme.properties -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_3.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_33.groovy: -------------------------------------------------------------------------------- 1 | rootProject.name = 'halo-facebook' -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_34.scss: -------------------------------------------------------------------------------- 1 | @import "../halo-facebook"; 2 | 3 | @mixin com_haulmont_cuba { 4 | @include halo-facebook; 5 | } -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_35.scss: -------------------------------------------------------------------------------- 1 | @import "../@import "../"; 2 | 3 | @mixin halo-facebook { 4 | @include halo; 5 | } -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_37.scss: -------------------------------------------------------------------------------- 1 | @include=com/haulmont/cuba/halo-theme.properties -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_41.scss: -------------------------------------------------------------------------------- 1 | cuba.themeConfig = com/haulmont/cuba/hover-theme.properties /halo-facebook/halo-facebook-theme.properties -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_46.scss: -------------------------------------------------------------------------------- 1 | @import "../hover-dark"; 2 | 3 | @mixin com_haulmont_cuba { 4 | @include hover-dark; 5 | } -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_47.scss: -------------------------------------------------------------------------------- 1 | @import "../hover/hover"; 2 | 3 | @mixin hover-dark { 4 | @include hover; 5 | } -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_48.scss: -------------------------------------------------------------------------------- 1 | @import "hover-dark-defaults"; 2 | @import "hover-dark"; 3 | 4 | .hover-dark { 5 | @include hover-dark; 6 | } -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_6.scss: -------------------------------------------------------------------------------- 1 | @mixin com_company_application-halo-ext { 2 | .v-menubar-menuitem-caption { 3 | font-weight: bold; 4 | } 5 | } -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_7.scss: -------------------------------------------------------------------------------- 1 | @import "facebook-defaults"; 2 | @import "facebook"; 3 | 4 | .facebook { 5 | @include facebook; 6 | } -------------------------------------------------------------------------------- /content/manual/source/gui/themes/themes_8.scss: -------------------------------------------------------------------------------- 1 | @import "../halo/halo"; 2 | 3 | @mixin facebook { 4 | @include halo; 5 | } -------------------------------------------------------------------------------- /content/manual/source/gui/urlParamsChangedEvent.java: -------------------------------------------------------------------------------- 1 | @Subscribe 2 | protected void onUrlParamsChanged(UrlParamsChangedEvent event) { 3 | // handle 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui/url_legacy_screen_registration.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui/url_new_screen_registration.java: -------------------------------------------------------------------------------- 1 | @Route("my-screen") 2 | public class MyScreen extends Screen { 3 | } -------------------------------------------------------------------------------- /content/manual/source/gui/url_route_generation1.java: -------------------------------------------------------------------------------- 1 | String route = urlRouting.getRouteGenerator().getRoute("demo_Customer.browse"); -------------------------------------------------------------------------------- /content/manual/source/gui/url_route_generation2.java: -------------------------------------------------------------------------------- 1 | String route = urlRouting.getRouteGenerator().getRoute(CustomerBrowse.class); -------------------------------------------------------------------------------- /content/manual/source/gui/vaadinaddon_1.gradle: -------------------------------------------------------------------------------- 1 | configure(webModule) { 2 | ... 3 | dependencies { 4 | ... 5 | compile("org.vaadin.addons:some-addon:1.2.3") 6 | } -------------------------------------------------------------------------------- /content/manual/source/gui/vaadinaddon_2.xml: -------------------------------------------------------------------------------- 1 | 2 | ... 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_facets/gui_NotificationFacet_contentMode.properties: -------------------------------------------------------------------------------- 1 | notificationFacet = Caption
with html content. -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/accordion_2.java: -------------------------------------------------------------------------------- 1 | accordion.setStyleName(HaloTheme.ACCORDION_BORDERLESS); -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/boxlayout_1.java: -------------------------------------------------------------------------------- 1 | Button button = (Button) hbox.getComponent(0); -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/button.java: -------------------------------------------------------------------------------- 1 | button.setStyleName(HaloTheme.BUTTON_FRIENDLY); -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/button_1.xml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_browserFrame_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_browserFrame_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_browserFrame_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_browserFrame_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_browserFrame_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_browserFrame_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_browserFrame_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_calendar_1.scss: -------------------------------------------------------------------------------- 1 | .v-calendar-event.event-green { 2 | background-color: #c8f4c9; 3 | color: #00e026; 4 | } -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_calendar_12.java: -------------------------------------------------------------------------------- 1 | CalendarEventProvider eventProvider = calendar.getEventProvider(); 2 | eventProvider.removeAllEvents(); 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_calendar_8.java: -------------------------------------------------------------------------------- 1 | calendarEvent.setStyleName("event-green"); -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_calendar_9.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/gui_lookupField_OptionCaptionProvider.java: -------------------------------------------------------------------------------- 1 | lookupField.setOptionCaptionProvider((item) -> item.getLocalizedName()); -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_10.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_14.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_5.java: -------------------------------------------------------------------------------- 1 | image.setSource(FileDescriptorImageResource.class).setFileDescriptor(avatar); -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/image_7.java: -------------------------------------------------------------------------------- 1 | Image image = uiComponents.create(Image.NAME); 2 | 3 | image.setSource(ThemeResource.class) 4 | .setPath("images/image.png"); -------------------------------------------------------------------------------- /content/manual/source/gui_vcl/label_1.xml: -------------------------------------------------------------------------------- 1 |