Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Below script not working when passing dynamic year in mashup (JavaScript section).
app.field('reporting_year').selectMatch('year(today())', true);
Please help on this.
Below is the solution
app.field('reporting_year').selectMatch(String(new Date().getFullYear()), true)
Below is the solution
app.field('reporting_year').selectMatch(String(new Date().getFullYear()), true)