I have a datagrid with Grouping ON and whose first col is a Checkbox.
I'm looking to have the CheckBox on the Group Level so that the User click one checkbox and it automatically select all the checkboxes under that groud and vicevera.
I also have a…
In my project I have a data grid with three combo box template columns and are data bound to three collections and these columns are editable. The grid is bound to an observable collection, which is used to add new row to the grid like…
In my project i have a data grid with three combo box template columns. and the combo box is data bind using xaml. But when I run the project combo box is showing system.data.dataRowView . here is my code for the data grid…
Am using radgrid and creating it in aspx but on certain action i add more GridTemplateColumns to the grid.
private void CreateDateColumns(List occurenceList)
{
if (occurenceList != null && occurenceList.Count > 0)
{
int…
Ok here is the scenario. I have created a completely data driven Radgrid with only 2 static buttons on the page, Save and Cancel. The Radgrid is created dynamically, as well as all the data in the grid (from MS SQL). Here is the tricky part, I…
Am using the below code for showing progressbar and text,but that time am set progressbar foreground color as dark green,but while runtime it shows very very light green color,why?
How to set dark in runtime?or is it…
I've searched high and low for a solution to my problem but I haven't been able to find anything that works. I'm at a complete loss at this point.
I have a custom class that has a BitmapImage property and a String property. Lets call this class…
I am teaching myself WPF, LINQ, and MVVM by writing a little tool to parse the CME XML configuration files like the current Production configuration. I have added a DataGridTemplateColumn with a checkbox to the DataGrid that displays the channels so…
The question might seem quite easy but I can't get it and I tried everything I've found. It works for a list of class, since I can bind on one of my class' properties, but not for a simple ObservableCollection of String.
Here's my code in Xaml…
I have a wpf datagrid containing multiple datagridtemplatecolumns, which all are build up from a datatemplate which contains a textbox.
Now I want to get the binding of the textbox (I have a reference to the template column which textbox's binding …
sorry if I'm not clear, it's not really clear in my head too (especially after trying to find my way in other posts :p)
What I'm willing to do is creating DataGrids in code, with zero to numerous columns containing a button, which will call one same…
I am trying to create a CheckBox which only requires one click to select it (as opposed to the usual two - one to activate it, another to select) and that is working, but now the column border is incorrect:
Here is the XAML I am…
Hello, I am having some issues styling the DataGrid in WPF. I have a column which consists of an image button (button where content is an image) that represents opening the file in excel. The image is only appearing for the first created row…