Versions Compared

Key

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

1. Enhanced Filter Panel with Random Color Display for Filter Tags:

Overview:

In this new enhancement to filter panel we have introduces a dynamic visual element aimed at improving user experience. When a condition is applied to the filter panel, the filter tags will now display in random colours. This feature makes the interface look lively and helps users quickly see and differentiate between filter conditions. 

...

2. Enhanced single scroll layout for Composite view in window and  right Tab panel in Horizontal view. 

Overview:

Earlier in our system we have two scrolls in  the composite view, In this new enhancement we have Implemented  the single scroll  layout for Composite view in window and  right Tab panel in Horizontal view.

...

3. Show process, form and workflow in right configurator info which is not bind in group. 

Overview:

We have introduced to show the Process, Form & Workflows information which is not bind in the respective group. Previously, it showed the list of process, form, workflow which is bind to the respective group. Now it shows the process, form and workflow which is not bind with red colour. In the below image, group info popup  User would easily understand what are bind and what are not bind.

...

4. Integrate React and webpack:

Introduction:  

This document provides a comprehensive guide for developers to configure Webpack for bundling CSS and JavaScript files, integrate React Js into the system. It includes step-by-step instructions, code snippets, and explanations to facilitate smooth implementation.  

For more information click here.

5. Added New Feature to pass Parameter with Button:

Overview:

In this recent update, we have introduced a new field called "Action Param" at the field level, which helps users hide or display controls within the tab while navigating through Action button

Pre-requisites:
Vienna Advantage Framework: 5.11.1.0

...

Note: This functionality will work for buttons whose 'action' checkbox is marked as true in the Database Schema window.

 

Step 1: Action performed before using the Action Param functionality: 

To use this functionality, the user must mark the "Action" checkbox as true on buttons in the column level. Then user must select "Move to Tab" from the action dropdown field and set the tab index value (tab Index will work in combination with the Action button at the column level, causing the system to move focus to another tab based on the defined tab index number) as shown in below image. 

Here 'Tab Index' value Start form 0. 

...

Step 2: How can we use Action Param on buttons in Field Level: 

  • Log in with the System Administrator role. Open the Screen Configuration window from the menu. 

  • For example, let's take Sales Order screen. 

  • Search for the Sales Order screen, navigate to the Tab level, select a tab, move to the Fields tab, and select the action button. 

  • In the Action button field, you will find the Action Param field where you can pass parameters accordingly. 

...

Below is a list of all the parameters that we can use in the Action Param field. 

 

Syntax: - 

{ 
"IsHideHeaderPanel": "true",   

"IsHideTabPanel":"true",  

"IsHideToolbar":"false",  

"IsHideTabLinks":"false"  

"IsHideActionbar":"true",  

"IsHideGridToggle":"true",  

"IsHideSingleToggle":"false",  

"IsHideCardToggle":"false",  

"IsHideRecordNav":"true",  

"IsTabInNewMode":"false", 

"IsDeleteDisabled":"true",  

"IsReadOnly":true,  

"IsShowFilterPanel":"false, 

"TabLayout":"C", or "N" or "Y" 

"TabWhereClause":"Sql Conditions", 

"Card_ID":"Card_ID/Export_ID",

 

Here, we use the sales order window as a reference to help users understand how to use this functionality. If any property is not defined in the action parameters, the system not consider the property  as action parameter. 

 

2.1 Steps to Hide/Display Header Panel with the help of button: 

Users can hide and display the header panel by using parameters in the Action Param field. 

...

After applying this property, the system will display the header panel when navigating to the next tab, as shown in the image below. 

...

2.2 Steps to Hide/Display Tab Panel with the help of button. 

Here users can hide and show the tab panel by using parameters in the Action Param field. 

...