Page tree
Skip to end of metadata
Go to start of metadata

Hello there,

We are glad to inform you that the latest 2020.13.05 version of the SWAT Framework is out. Below is the list of issues that are part of this release.


Improvements

PriorityKeyAkioma Release Notes
Medium
SWAT-3662

Using the customData parameter object of the loadScreen function, you can now reposition to a newly created record, inside a dynSelect.

Example
// send customData on loadScreen
akioma.swat.App.loadScreen({
    containerName: "AkQueryWindow",
    caller: btnAk.window,
    customData: {
      fetchOnInit: true
    }
})

// check for those parameters further in your logic and perform other actions
if (AkQueryWindow.window.getCustomData() && AkQueryWindow.window.getCustomData().fetchOnInit ) {
    // your custom logic
}

// Reposition on the newly created record in a dynSelect
if (Toolbar.window.getCustomData() && Toolbar.window.getCustomData().repositionAfterCreate) {
   akioma.swat.App.repositionAfterCreate({
        container: Toolbar.window,
        record: Result.dsTest.eTest[0]
   });
}


Tasks

PriorityKeyAkioma Release Notes
Medium
SWAT-3640The toolbars are now fully responsive. Depending on the window size, the toolbar items are fully displayed (icon and text), or the text is trimmed, or just the icon and the text appears on mouse over, as tooltip.
Medium
SWAT-3639The ribbon block is now fully responsive. Depending on the window size, the ribbon items are fully displayed (icon and text), or the text is trimmed, or just the icon and the text appears on mouse over, as tooltip.


Bugs

PriorityKeyAkioma Release Notes
Highest
SWAT-3661Fixed some issues causing the layout to freeze, when switching tabs in some desktops.
High
SWAT-3660Fixed some issues for the "tags" attribute of the dynSelect object. If you want to allow users to add values which are not part of the list of values of a dynSelect (data coming from an BE or list item pairs), check the "tags" attribute in the Layout Designer for that dynSelect object.
It works in forms, grid cells and grid header filters.


Looking forward to hear your feedback.

Thanks,
AKIOMA Team