7.7.2 Expression Binding Dataset Bug

In expression binding…if you are trying to access a value from a dataset with a index and column name you have to add toInt(index) otherwise you get an error saying that it’s expecting an int and you are providing a long.

this no longer works:

{Root Container.Data}[0,{Root Container.DateTime 1.ColumnName}]

this is what i have to do now:

{Root Container.Data}[toInt(0),{Root Container.DateTime 1.ColumnName}]

Existing expressions after the update seem to work fine. If you attempt to modify an existing expression or create a new one with that type of expression you get the error.