I am attempting to use the ExpressionEditor to build an expression string for an object (building a custom template designer) pretty similar to the examples using it to filter data. The difference however is I'll have multiple tables/objects, and won't know which one I'll need till run time (I'll only build the string for one table/object like in the examples).
I currently have the Item bound to an object, and that gets set after the user selected the object to build the string for. The object is getting set, but the Selected Category Items Pane is not getting refreshed after the object gets updated. I can set up to where the user selected the item on a previous screen, but would really like the list to be truly dynamic.
I currently have the Item bound to an object, and that gets set after the user selected the object to build the string for. The object is getting set, but the Selected Category Items Pane is not getting refreshed after the object gets updated. I can set up to where the user selected the item on a previous screen, but would really like the list to be truly dynamic.
Item="{Binding BindingObject,NotifyOnSourceUpdated=True,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"Basically, is there a way to refresh the Selected Category Items Pane, or a better way to bind the item dynamically?