i have a datatable representing items in an order as follows
Items:
itemNum
Origin
Destination
QtyOrdered
AmountPackaged
I have a datagrid that i only want to show only the items that haven't been fully packaged i.e. QtyOrdered isn't the same as AmountPackaged. So i set its datasource to the tables default view and set items.defaultvi ew.rowfilter = "QtyOrdered <> AmountPackaged"
However this doesn't seem to do anything as when AmountPackaged matches QtyOrdered the row never gets filtered out. any idea on why my filter isn't working?
Items:
itemNum
Origin
Destination
QtyOrdered
AmountPackaged
I have a datagrid that i only want to show only the items that haven't been fully packaged i.e. QtyOrdered isn't the same as AmountPackaged. So i set its datasource to the tables default view and set items.defaultvi ew.rowfilter = "QtyOrdered <> AmountPackaged"
However this doesn't seem to do anything as when AmountPackaged matches QtyOrdered the row never gets filtered out. any idea on why my filter isn't working?