Hi!
I'm currently facing the problem, that I import an Excel file to a DataGrid.
This works pretty fine, but after importing the table, I need to know how many rows are invalid.
I have applied several validation rules for the different datatypes, and I have an icon in the row header, that shows up if the row is invalid.
But since I ha...
In my project I have an Xceed data grid which is bound to a data source with many records and record details. I am attempting to create a context menu option that will allow the user to search for a specific detail in a specific column. While I have successfully completed the functionality there is a UI part that is giving me some troubl...
I want group wise sub Total and at the end grand total
please provide some sample code for the same
For Example
Group ItemID Price qty total
1 1 5 2 10
2 3 3 9
------
19
2
2 3 3 9
...
I have tried everything and got nowhere so I'm hoping someone can give me the aha moment.
I simply cannot get the binding to pull the data in the datagrid successfully.
I have a DataTable that contains multiple columns with of MyDataType}
public class MyData
{
string nameData {get;set;}
boolean showData {get;set;}
}
MyDataTyp...
Hi
I was able to figure out how to expand and contract a column of datagrid using mouse. But after contracting and expanding a column, the height of cell doesn’t decrease.
How can I bring the original height of cell (or row)?
Can you look into this?
Thanks
AJ
...
Is there a way to xamly set a StaticResource per row in a DataGrid accessing it from all the columns?
UPDATE
My aim is to have 3 ComboBox columns, while only the last one is actually bound to the rows item.
For instance, the DataGrid represents a list of Items. I have Category->Vendor->Style->Finish ComboBoxes, but those are only for ...
Hi i'm looking for a free ajax datagrid for asp.net
Any tips?
thanks
...
How do you drag a data grid column header content to a stack panel in silverlight 4? It seems you can only drag it to reorder the column but not to copy it to another items control...
...
I have a problem with the new DataGrid component that comes with .NET4. The problem occurs when using RowDetails. With RowDetails the total height of the grid is increased when an element is chosen. This is necessary to show all Rows and the RowDetails, and exactly what I expect. When choosing another row the first RowDetails will collap...
Hi,
I am trying to add multiple radiobutton columns to my gridview dynamically in the code and i want to implement some logic which involves database fetch in the checkedchanged event of radiobuttons but some how the checked changed event is being fired multiple times for each row.
Following is the code:
aspx:
BorderWidth="1p...
Hello,
I want to get data from mysql db, slightly change it and display in datagrid. Mysql data is like this:
Id | data | privateData
I am getting it using AMFPHP.
I dont want privateData to show in datagrid (but i still want to use it in program).
I want to add button to every row of datagrid (clicking it should call function with param...
I am using dojo datagrid to display my data. When the end user edit the cell values it should be updated in the server using ajax calls(when the focus goes out of the cell).
Else, I should have a Edit & update/cancel buttons for each row to handle the same feature.
But I don know how to place edit & update buttons inside the grid and ...
It might sound like a trivial question but how can I show progress bars, when datagrids and other components that "talk" to web services, update their data providers
...
Hi,
I'm trying to write a master - detail control that consists of a master datagrid and the detail datagrid. My scenario was following - I used the SelectedItem and bound it to a property in ModelView. The problem is - the SelectedItem in ViewModel is never used, so I can't get the information which item is selected in a master datagrid...
I have a datagrid like this:
<dg:DataGrid Name="dg" AutoGenerateColumns="False" CanUserDeleteRows="True">
<dg:DataGrid.Columns>
<dg:DataGridTextColumn Header="Product Code" x:Name="columnProductCode" Binding="{Binding Path=Product.ProductCode}" IsReadOnly="True" ></dg:DataGridTextColumn>
...
My data grid successfully filters when I select a month from a dropdown list, however when I try to filter it onLoad it just doesn't filter. The dropdown successfully displays the current month, and the grid should also show the current month data.
<script type="text/javascript">
dojo.require("dojox.grid.DataGrid");
doj...
Hi
In Excel, there is this feature for filtering the cells of a column.
How can I implement excel like FILTER feature in Silverlight Datagrid?
Please advice. Thanks
AJ
...
When I click a cell in a WPF datagrid, the whole row is selected, and when I press Ctrl + C to copy the content, the whole row i copied...
How do I select and copy the content of a single cell?
...
I have a JSON decoded array of Projects which contain a nested array of Milestones. I'm trying to display the Milestones one at a time inside a Datagrid. However, it seem Datagrid can't handle more than 1 level of data. Following is a simple diagram of what I'm trying to do.
[Project Name [0]] [Milestone[0]]
[Project Name [1]] [Mile...
Hello,
How do I get the selected item in a WPF datagrid? Tried the following, with no luck;
dataGrid1.CurrentCell.Item.ToString();
string[] strsplit = dataGrid1.SelectedValue.ToString().Split('+');
dataGrid1.SelectedCells[0].Item.ToString();
dataGrid1.CurrentItem.ToString();
dataGrid1.CurrentCell.Item.ToString();
dataGrid1.CurrentCel...