Article Details
Id:18252
Product:finPOWER Connect
Type:FIX
Version:3.04.00
Opened:31/05/2021
Closed:03/06/2021
Released:30/06/2021
Job: J026701

HTML Widgets; Breakdown reports don't allow changing the "basis" filter more than once

Several "Breakdown" HTML Widgets did not allow changing the "basis" filter (the dropdown in the header row of the grid) more than once.

  C.cboBasis = widget.UI.ComboBox("cboBasis", {
    limitToList: true,
    width: "10em",

    onChange: RunMain,
  });

This has been updated, and the change handler defined, as follows:

C.cboBasis = widget.UI.ComboBox("cboBasis", {
  limitToList: true,
  width: "10em",

  onChange: cboBasis_Change,
});


function cboBasis_Change(sender, e) {
  // Handled
  if (e) e.ChangeHandled = true;

  // Re-run report
  RunMain();
}

The following HTML Widgets have been updated:

  • HtmlWidget_AccountsBreakdown
    • Version: 1.15 (2/06/2021)
  • HtmlWidget_AccountAppsBreakdown
    • Version: 1.08 (2/06/2021)
  • HtmlWidget_WorkflowsBreakdown
    • Version: 1.05 (2/06/2021)