my export breaks if I have this filter set, if I clear the filter, then export works
I was able to replicate the problem - fix will be released with our next update early next week.
Btw is your DataGrid FilterMode set to CheckBoxList? If this is the case try to set Type for the column to IEnumerable<bool>
.
I would have to change the model?
I don't want to do that, I always want to be able to re run Data from RBS and have it not override anything. I'll just wait for the update.
You donβt have to touch your model in any way. Iβm asking what is your DataGrid filter type and Iβm suggesting you to set specific Type to this column.
yes, it's CheckBoxList
how would I set the type for the column?
I see there is a Type attribute, but not sure how to set it, I tried IEnumerable but it didn't work.
Should be Type=typeof(IEnumerable<bool>)
thank you, that fixes it, but that is a work around? the next code update from your side will have a fix?
Yes, we will do our best to find a way this to work without any additional Type setting.