Tagged Questions
The silverlight-datagrid tag has no wiki summary.
16
votes
5answers
7k views
WPF DataGrid style-Silverlight DataGrid?
That's not a secret: Silverlight's DataGrid default style is beautiful while WPF's is poor.
Instead of reinventing the wheel let me ask the community if anyone has copied the SL styles to use in WPF.
...
8
votes
4answers
5k views
How to define a DataTemplate in code?
How can I create dataTemplate in code (using C#) and then add control to that DataTemplate ?
<data:DataGrid.RowDetailsTemplate>
<DataTemplate>
<Border>
...
2
votes
2answers
66 views
Silverlight UI culture
I have a date column in a datagrid in my silverlight App. I need the time to be displayed in 24 hr format. To achieve this I have modified the UI culture in Application_Startup event like this:
...
2
votes
2answers
284 views
Changing Default “input is not in a correct format” Validation Error in RIA Services
I'm trying to change the default error message in a Silverlight DataGrid when the input is in an incorrect format. For example, you type letters into a numerical field. As you tab away, it says "input ...
2
votes
1answer
399 views
Edit DataGridTemplateColumn in Code Behind?
I would think that this would be incredibly simple, but I've searched all over and can't seem to find an answer. I have a DataGridTemplateColumn that I want to use to display a value that isn't in ...
1
vote
1answer
197 views
it's posible to animate DataGrid column collapsing in Silverlight/WPF?
i have a simple DataGrid in Silverlight with this columns templates:
<data:DataGrid AutoGenerateColumns="False" ...>
<data:DataGridTextColumn x:Name="idCol" Header="Id" ...
1
vote
0answers
157 views
“Debugging resource string are unavaible” in silverlight 4
[Async_ExceptionOccurred]
Arguments:
Debugging resource strings are unavailable. Often the key and arguments provide sufficient information to diagnose the problem
...
1
vote
1answer
415 views
How can I stop Silverlight DataForm immediately saving changes back to underlying object?
I have a Silverlight master-details DataForm where the DataForm represents a street address.
When I edit the Address1 textbox, the value gets automatically committed to the bound Address object once ...
0
votes
0answers
11 views
Silverlight 3 DataGrid Sort
I have a datagrid in a Silverlight 3 app. I want to sort the items in it. The items are in an ObservableCollection. I assign them to the Source property of a CollectionViewSource, assign the ...
0
votes
1answer
65 views
Inconsistent behavior with “guard method” within DataGrid
I have a DataGrid similar to this one:
<sdk:DataGrid ItemSource="ItemGroups">
<sdk:DataGrid.Columns>
<sdk:DataGridTemplateColumn>
...
0
votes
0answers
43 views
Silverlight Datagrid: Move new row to the top
By default the datagrid in Silverlight has a blank row at the bottom of the grid so that the user can insert new a new record.
Is there a way to have the new/blank row at the top of the grid ...
0
votes
0answers
100 views
Cell merge in Datagrid silverlight
I want to implement cell merge like functionality using silverlight toolkit datagrid as it is shown in the attached image.
http://demo.digi-corp.com/cellmerge.jpg
Any help would be appreciated
...
0
votes
0answers
53 views
Accessing Data grid in one tab from other tab in silver light
I have tab control in my page having two tabs.
One tab has a button and other tab has data grid.
My button and data grid controls are added to the page in runtime only
I populate the data in data grid ...
0
votes
0answers
18 views
Datagrid get rows in view
I have a datagrid with many rows. I want to know how do I get only the rows that the users sees know in the current view (with out scrolling)For example:I want to expand only the rows that are
seen by ...
0
votes
0answers
183 views
Silverlight Datagrid - Update cell based on WCF call result - Help please
I am from ASP.net background, and new to Silverlight c#.
My requirement:
In a silverlight datagrid, I have an "unlock" button in a column.
When user click on that button, I make an asynch call to a ...
0
votes
0answers
201 views
Silverlight DataGridTemplateColumn Binding and Converters
The jist of my question is as follows:
I have a field in the db: duration which is stored in minutes.
I would like to have this display in the simplest possible units. For example:
db value | ...
0
votes
1answer
179 views
Three Hierarchical DataGrids with WCF RIA (EF) and Silverlight
I was wondering if there is a better way of coding the following scenario. I have a Customer entity, and each Customer entity has many Orders. Each Order entity has at least 1 or many LineItem ...
0
votes
0answers
216 views
Datagrid : Pass Selected Grid values in parent window to child window in silverlight 4.0?
hi friends
im new in silverlight 4.0
my question is i have a silverlight-datagird (the records are loaded through wcf service) in parent window when i click the record in silverlight-datagrid the ...
0
votes
1answer
91 views
Setting a converter on a GroupDescriptor in Silverlight 4
I have a read-only datagrid bound to a domain data source. The data that I'm binding to has an ID property that I'm resolving on the grid through a converter (a simple int -> string mapping). The ...
0
votes
1answer
155 views
Silverlight: Tabbing in DataGrid
I have a DataGrid with four rows and a few columns. Only the last column has an item (a button) with IsTabStop=True.
If I press tab the button in the first row gets the focus.
If I hit tab a second ...
0
votes
1answer
4k views
Silverlight DataGridDragDropTarget. How to drag a data grid item into a stack panel / user control?
I have data grid. I have DataGridDragDropTarget from November Toolkit.
I now can drag and drop a data grid item to a listbox or tree view..
However I need to drop the item onto my user control (and ...
0
votes
2answers
3k views
C# Silverlight Datagrid - ADO.Net Data Entities CRUD?
I have followed this tutorial which allowed me to create a Silverlight Datagrid that pulled back data from an SQL Server Database. My next step is to be able to perform CRUD on this set of data ...