-
Does anyone have an example of a Style for a TextBox using the PropertyInfo Control with CaliburnMicro? I have been trying to cobble something together based on the WP example but have had absolutely no success. I get the impression that the DataTriggers aren't firing but I have no idea what I am...
-
Hey, I'm developing a form to edit the properties of one of my Business Objects in Silverlight , and since each property is displayed for editing much the same way, I was trying to make the job easier by making a custom UserControl that would display the FriendlyName in a TextBlock , the actual String...
-
Hi I am using a PropertyStatus control. When there is a single broken rule it works well. When there are multiple broken rules, the output of the control on the screen is not formatted properly. All of the error description strings are displayed but they are not justified properly. Can anyone point me...
-
It has been a while, but I think someone (either me or Justin?) figured out a clever alternative solution. None of it matters for long anyway, because Silverlight 5 finally has a data context changed event :)
-
I have a BusinessListBase<MaterialCategorys, MaterialCategory>, in which i add a method as below: public MaterialCategory AddRootNode() { MaterialCategory item= MaterialCategory.NewMaterialCategory(); this.Add(item); return item; } in the child BO, I add the OnUnknownPropertyChanged() [Csla.RunLocal...
-
The PropertyStatus control was largely rewritten from 3.6 to 3.8. Please look at the current sample apps in the Samples download - several of them use the current PropertyStatus control.
-
Hi I think I am missing something somewhere but can't seem to find it. I've got a PropertyStatus control next to a textbox. In my business rules section I define a required rule. Everything works fine. If the textbox is empty the error message display and when the user mouse over the errorprovider...
-
You are thinking of putting a PropertyStatus control on a form, and not specifying a property for the control, so it would know to pick up object level broken rules? This wouldn't be terribly hard to do, but I wonder about the visual representation? Where would you have the error icon appear? And...
-
PropertyStatus does not capture object level rules. Will this be addressed in the next release of Csla? It would certainly be helpful.
-
HI All, please someone tell me how to set child property into null value when the root object is initialize... i need this because of my specific business case, i have a parent object that contain a lot of editable child property inside, and sometimes user can fill in some of the child information (not...