Advanced Forum Search Results
-
I believe the issue you're hitting here is that the validation routines are only triggered when a property value changes. (Crack open the generated code to see how the property setters work.) Thus, if you tabbed through the bound textbox without changing the backing value, validation isn't triggered. However, it should be ...
-
What does the server-side DomainService update method look like?
-
Another option is to examine the advanced scenario in section 20.3. You can add the necessary client code in partial entity type definitions to enable cross-DomainContext references client-side. It's a little bit more work but it should allow you to enable this scenario.
-
Silly question but is your DomainService marked with the EnableClientAccess attribute? If you don't mind, I'd like to see what the DomainService looks like.
-
You can't save to a 'filename' because you can only save to disk with a user-initiated action. (If SL2, ignore this statement altogether--you can't save.)
So the question is: where do you want to save the file? To the isolated storage? Where??
If you intend to save this to disk, I suggest you read ...
-
Hi Shegi,
I would recommend you look into the "Cross-DomainContext" feature in .NET RIA Services. Using this feature will allow you to cross DomainContext boundaries while resolving entity relationships.
In short, what you would want to do here is:
(Server-side) Add a public property of type CompanyType to the Company ...
-
[quote user="enantiomer2000"]I am just surprised that it took months to get a reply on this[/quote]
Me too. I just happened to be going through 'unanswered posts' and came across it. Apologies for having missed it previously.
-
You can't do anything like Eval in XAML. You can use a data template though but you'll still want to bind that NavigationUrl to some sort of property on the backing object that performs the formatting for you.
You should read Scott Morrison's blog post here: ...
-
This is a known issue but it looks like you may have to wait a while for a fix. Please see this forum thread: http://silverlight.net/forums/p/105476/243957.aspx. There is a workaround posted in that thread.
-
[quote user="matkwan"]However when I create an instance of that class[/quote]
Are you not seeing those properties on a DomainService instance? Or did you mean a DomainContext (client-side) generated proxy that represents the DomainService?