I also tried adding a custom column in the BO that returns a TimeSpan, but in addition to not formatting the value the way I want to (showing exactly hundredths of a second), I it doesn't post the changed value back to the table via the BO property's set.
Any suggestions?
...Jim
First, my custom class for centi-seconds that already did the parsing and formatting worked great, but to use it as the type of the BO property for the custom column I first had to create a custom TypeConverter to go with it (easy!). But that still didn't get it working.
The second piece to the puzzle was the same reason that the TimeSpan didn't work: I have to have formattingEnabled set to true in the binding object. Ergo, I had to set BindingFormat to something on the control so StrataFrame would set formattingEnabled to true. That done, my set on the BO property gets called just fine! Why the binding object needs to have formattingEnabled set to true for TimeSpan and my custom type, but not for double is beyond me!