Currently, I have a XamDataGrid that has a button on the grid to popup an information window. All that works fine, but there is a requirement to not show the button if there is no data. I have a property to return a true/false to check to see if the data is there, and then a Visibility Converter to return a Visibility based on a bool value, which I have tested on a label and it works fine.
The problem is, when on the XamDataGrid, it doesn't ever fire off the Covnerter. Any idea why the converter would never be fired? I set a breakpoint, and it never gets hit. Here is my grid:
<igDP:XamDataGrid Name="OrdersGrid" GroupByAreaLocation="None">
<
Worked like a charm... battled that for several hours, its always something simple.
Thanks Alex
Hello,
Are you getting a binding expression in the output window? I believe there has to be a problem with finding the OrdersButtonVisibility on DataRecord. If that is so, you need to change your binding expression to
DataItem.OrdersButtonVisibility.