Page tree

Versions Compared

Key

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

...

We are glad to inform you that the latest 2020.23 versionof version of the SWAT Framework is out. Below is the list of issues thatare that are part of this release.SWAT Release 20.23

Info
titleSmartcomponent Library update

Updated SCL to latest version: Release 11.7 #63624@2020-11-24 UTF-8.


New Features

PriorityKeyAkioma Release Notes
HighestImage Modified
SWAT-3763Made Corticon.js available and the existing functionality of the Corticon Server was migrated to Corticon.js, together with some new enhancements.



Improvements

PriorityKeyAkioma Release Notes
MediumImage Modified
SWAT-3848Added access rights for user profile maintenance.
HighImage Modified
SWAT-3533

Added a new event "EventOnContextMenuOpen", available for Grid type objects, that is triggered when clicking on a grid row context menu. Using this event, you can write or call a CLAPI function, and manage the visibility of the context menu items.

The visibility of menu items can also be set now from the SCL Menu Function Option “isHidden”. This will hide the corresponding item.

CLAPI example for showing, hiding one item based on function code or show/hide all context menu items:

Code Block
languagejs
namespace akioma {

 
	export function onContextMenuOpen(GridSource:akioma.swat.Grid){

 
		GridSource.hideContextMenuItem("NameOfItem1");

 
		GridSource.hideContextMenuItem("NameOfItem2");

 
		GridSource.showContextMenuItem("NameOfItem3");

 
		GridSource.hideContextMenuItems();

 
		GridSource.showContextMenuItems();

}
 
	} 
}




Tasks

PriorityKeyAkioma Release Notes
MediumImage Modified
SWAT-4044Frontend build improvements and fixes.
MediumImage Modified
SWAT-3977Now, you can specify custom panel message types, besides the standard ones. See updated documentation here https://help.akiomacloud.de/display/AKDOC/Panel+Messages+Attributes



Bugs

PriorityKeyAkioma Release Notes
MediumImage Modified
SWAT-4064Fix for fileDelete default closeWindow param.
MediumImage Modified
SWAT-4053Adjusted some 3rd-party libraries inclusion, preventing some errors to appear in specific use-cases.
HighestImage Modified
SWAT-4036Fixed some failing UI unit-tests.
HighImage Modified
SWAT-4034Fixed fetchData bug when error is triggered, which was causing the wait cursor to be in a blocked state on the screen.
MediumImage Modified
SWAT-4001Fixed record selection before validateEvent, causing the event not to be triggered.
MediumImage Modified
SWAT-3694Fixed an issue with setWaitCursorForLinks, causing a delay before showing the loaded grids (in same use-cases), right after the WaitCursor animation was ending.



Looking forward to hear your feedback.

...