Context property

0
On forum item link text is a problem explained what i need, but in my datagrid i only have the options Yes or No in Apply Context How can i tell a datagrid he should listen to another datagrid.
asked
2 answers
2

Only data views can listen to data grids. To make a data grid 'listen' to the selection of another data grid, the data grid should be placed in a listening data view. The data grid in the listening data view can then be constrained by the current object with a xpath constraint.

answered
0

Note that MX5 passing the parameters in a different way; the Boolean became real Booleans in widgets

before Mendix 5

if(this.boolpar = 'true') //do something

in the Mendix 5 widget

if(this.boolpar = true) //do something
answered