Hi All
I have tried all manor of solutions to this problem.
Basically I have an attributes table which contains a type. this type is bound to a GridViewComboBoxColumn. when the selection in this column is changed, it needs to set the isvisible value of other columns in the same grid row.
So, in the usual way, I have created a converter such as this:
in the xaml, the converter is called like this:
The value for the cell is updated when the attribute_id is changed, but the visibility converter is never called.
the second option that I have tried is to use the GridViewdataColumn element, such as this:
gridAttributes_attributeType1 is the name of the GridViewComboBoxColumn.
This also does not call the converter as I suspect that the path SelectedValue does not exist in a GridViewComboBoxColumn.
The solution does call the converter however, if I bind it to a combo outside of the gridview..
Is there any solution to this problem.
Regards
Nick