Versions Compared

Key

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

...

Links to quotes can be included in a result matrix. See an example of a dashboard logic element below, which demonstrates various format types in a result matrix, including a link to a quote:

Paste code macro
languagegroovy
def fields = [
  [name: "% String value", type: FieldFormatType.TEXT],
  [name: "Integer value", type: FieldFormatType.INTEGER],
  [name: "Numeric value", type: FieldFormatType.NUMERIC],
  [name: "Date value", type: FieldFormatType.DATE],
  [name: "Date Time value", type: FieldFormatType.DATETIME],
  [name: "Link", type: FieldFormatType.LINK]
];


def m = api.newMatrix(fields.collect{it -> it.name});
def rows = [];

def d = new Date();
for (int i=0; i< 100; i++) {
  rows << ["somewhere "+i, i, 0.11*i, d-i, d+i,  m.linkCell('P-'+i, 'priceShopPage', 'P-'+i)];
}


fields.each {field ->
  m.setColumnFormat(field.name, field.type);
}

rows.each {row ->
  m.addRow((0..row.size()-1).collectEntries{index ->
    [fields[index].name, row[index]]
  });
}

def event_name = api.dashboardWideEvent('recalculateJanoiskrecalculateDashboard')

m.onRowSelection().triggerEvent(event_name)
                       .withColValueAsEventDataAttr('% String value', 'DA1')
                       .withColValueAsEventDataAttr('Numeric value', 'DA2')
					   .withColValueAsEventDataAttr('Integer value', 'DA3')

return m;

Definition of m.linkCell(value, targetPage, targetPageState):

  • value - object – Object that is passed, should contain idthe quote ID.
  • targetPage -  name – The name of the page to link to:
    • priceShopPage - for – For redirecting to quotes.
    • dashboardPage - for – For dashboards.
  • targetPageState