Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
No, I'm sorry... I don't know the solution. Obviously, if the text is reverting back to the GUID, then it is not firing your event. What you could do (which might be easier) is add a custom property to your business object... say a property with only a get{}. Copy over all of the attributes from the PK property and put them on this new property. Then, in the grid, bind the column to the new property, not the PK column (and you can just hide the PK column). Then, in your new property, return your custom text. This way, it won't ever have to swap back and forth between the PK value and your custom text. In fact, you won't even have to handle that CustomDisplayText event at all.
|