Advanced Forum Search Results
-
Our scenario is to have the DataGrid that displays numeric values and have a couple of frozen rows at the bottom that sums the subtotal/total for each column. But these frozen rows always stay at the bottom of the DataGrid even user scrolls the DataGrid vertically.
-
I understand that it's difficult to do. I was thinking of defining the ContentTemplate for the frozen rows but didn't know what TargetType it should be applied to in the DataGrid. And it cannot be done outside or below the DataGrid because UI will look strange when DataGrid has it own horizontial scroll bar and also ...
-
Does anyone has an idea how to achieve the frozen rows behavior in DataGrid? I need to have a few rows always stay at the bottom in the DataGrid regardless the vertical scrolling.
Any help would be very appreciated. Thank you.
-
Could you show me how to set the Language in Xaml? This needs to be dynamic because the unicode characters can be anything such as Japanese, Korean, Chinese, Russian, German,...
-
The unicode string is retrieved through web service. I also test it on another 2 machines, again the development machine that has DataGrid December Release updated shows the unicode correctly but the one that has only Silverlight 2 runtime does not display the unicode. So none of the plain Silverlight 2 runtime machine ...
-
Both machines have the same regional settings (English - US) and are running IE 7. On both machines, I changed the IE language perference to Japanese [ja-JP] when I hit the web page.
-
But I'm having some strange behaviour on the client machine that has Silverlight 2 runtime installed. The Silverlight application displays some unicode characters (Japanese characters) in DataGrid's column header. And the System.Windows.Controls.Data.dll gets packaged in the XAP.
On my development machine that has ...
-
I have updated my development environment with the December release of DataGrid (replacing 2 DLLs: Data.dll and Data.Design.dll). But how does the client get the new DataGrid when he/she navigates to the page?
I have the project references to System.Windows.Controls.Data.dll and set CopyLocal to True so that the XAP also ...
-
Could someone show me how to add a tooltip for DataGrid column header? I am not able to find a way to do this dynamically.
textColumn = New DataGridTextColumn()
textColumn.Header = "Name"textColumn.Binding = New System.Windows.Data.Binding("Name")
grd.Columns.Add(textColumn)
Thanks for any assistance
David
-
I've found the answer why setting the ShortDatePattern = "dd/MMM/yyyy" does not work. It turns out that it needs to have the escape character "\" the for slash "/" in the format string. Once I change to the following, it works
Thread.CurrentThread.CurrentCulture.DateTimeFormat.ShortDatePattern = ...