I have a stored function which uses a data which is available in the $advancedCriteria of the datasource.ds.xml file.
I can use this $advancedCriteria in the tableClause, but when I use it in the customSelectExpression I get null.
How to achieve this?
In my case I have this field:
In my sqls I always see: dbo.getAddress(null). What am I doing wrong?
Using smartgwt 6.1-p20180604 power.
I can use this $advancedCriteria in the tableClause, but when I use it in the customSelectExpression I get null.
How to achieve this?
In my case I have this field:
Code:
<field name="myField" type="text" customSelectExpression=" dbo.getAddress($advancedCriteria.deadline)" />
Using smartgwt 6.1-p20180604 power.
Comment