Advanced Forum Search Results
-
Check the tab control for null first and then do your logic. On first hit the tab control is always null since the control is not initialized yet for the selection to happen.
-
Toolkit has been release on codeplex.
http://silverlight.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24246#ReleaseFiles
-
Got this working on all browsers.
What I did was install the IIS 6 Compatibility on IIS 7 and everybody was able to start using the application on IE 6 and 7 without any problems.
-
You could also use isolated storage to hold the global variables.
Just remember to clear the isolated storage when the application exits.
-
For HTTPS you need to change your WCF settings like below:
<!-- UsernameToken over Transport Security -->
<security ...
-
This is not really documented by many places.
If you bind the autocompletebox to a list you will see the textbox namespace instead of the Name.
If you want to show the ValuableName you will have to override the ToString function of you class.
You also need to write your own filter event to filter the custom object.
Here is a post by Tim Heuer ...
-
I am having the same problems.
The exception is that this does not seem to be a IE6 problem.
Hosted on Windows 2003 with IIS 6 - This works.
Hosted on Windows 2008 with IIS 7 - This does not work.
So does anyone know why it would work in one and not the other?
-
The Silverlight Toolkit has been released here http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&ANCHOR#Viewbox
-
In Beta 2, the datagrid has an event called CommittingEdit.
RC0 does not have this event.
Does anyone know if this event has been replaced with another?
Has this event been removed?
If this event has been removed is there another way to capture the data once the user has modified their data in the datagrid?
-
The authentication service does not expose all of its methods. In our project we created our own service that calls the extended authentication service. It is duplicating code but at least we can expand it and make it do extra work.