A graphical user interface element that presents a tabular view of data.
5
votes
0answers
295 views
Custom column sorting in Dojo Datagrid programmatically
I have created a dojox.grid.datagrid programmatically and I need custom sorting on the columns.
For this I tried using ItemFileWriteStore.comparatorMap['field'] = comparatorFunc. But my comparator ...
3
votes
0answers
388 views
WPF Reuse DataGrid TemplateColumn DataTemplates
I've build a datagrid which has a custom column:
<DataGridTemplateColumn
Header="{x:Static local:MainWindowResources.gasNameLabel}"
Width="*"
MinWidth="150">
...
3
votes
0answers
103 views
WPF : Focus delay when clicked away and back to the app
I have a datagrid inside the WPF application and I need to have it very responsive so that the user can work on one screen with Excel and on the other screen work with WPF application's datagrid.
...
2
votes
0answers
283 views
Selecting a full row in DataGrid, Silverlight Navigation Application
This might be a stupid question but i haven't been able to find an answer anywhere.
I am trying to make it possible when a user clicks on a certain row in the datagrid the entire row will be ...
2
votes
0answers
164 views
How to split WPF control to render in smaller chunks?
The question is: Can I split my DataGrid or ItemsControl to render control in smaller chunks so that UI is not blocked for 15sec to render the whole control?
I actually thought that render is not ...
2
votes
0answers
306 views
WPF Datagrid combobox retrieving value before commit
I've got a Datagrid in a WPF application (with Entity Framework) that has a combobox as one of the columns in it.
This combobox is bound to a datasource that is using a joined reference to a table ...
2
votes
0answers
106 views
Change default behavior of the Dojo DnD plugin on EnhancedGrid
I'm using Dojo 1.8 for an application I'm working on and I'm trying to create a file browser of sorts (à la Dropbox). I'm using an EnhancedGrid to display the list of files and directories, along ...
2
votes
0answers
234 views
How to use DataGridComboBoxColumn?
I created a DataGrid and added a DataGridComboBoxColumn programmatically.
public partial class MainWindow : Window
{
private DataGridComboBoxColumn weightColumnChar = new ...
2
votes
0answers
165 views
Datagrid scrollbar not showing when programmatically changing attribute
I am developing a Flex app that allows a user to click a toggle button. The Datagrid will display the info. When setting attribute enabled in ToggleButtonBar to true or false, programmatically, at ...
2
votes
0answers
78 views
An additional row is added to datagrid after clicking any button
I have a popup datagrid that allows users to add information to a database. It works perfectly except the user has to hit "Accept" twice. The first time it adds another row, the second time it ...
2
votes
0answers
246 views
Setting DataGrid ScrollViewer.IsDeferredScrollingEnabled=“True” creates issues with DataGridComboBoxColumn Scrolling
I have an application that uses a WPF DataGrid that has thousands of rows. I was having performance issues with scrolling using the Vertical ScrollBar so I did some research and found out I can defer ...
2
votes
0answers
255 views
DataGrid scrollbar issue when column resizing
When resizing a column, there seems to be a strange flicker issue when the column reaches the flirting point with text wrapping. Since this is hard to explain, I've recorded the issue with a sample ...
2
votes
0answers
183 views
GWT - Unexpected scrollbar appeared in GWT-DataGrid while using Canvas
I found a bug that there will be some unexpected scrollbars appeared in GWT-DataGrid when using Canvas in the same area. No matter what functions of Canvas I used, even if I just use Canvas to draw a ...
2
votes
0answers
160 views
How to edit an unbound cell in a bound DataGrid?
So I have a DataGrid bound to a data source (using ADO.NET), I created a new local column (it doesn't need to exist in database).
I do some calculations and then put the results in that column.
Now, ...
2
votes
0answers
244 views
flex datagrid sorting which contain itemrenderer
I'm quite newbies of flex, may I have some question to anyone who can suggest please.
I have grid for monitor CPU status and It look like this
CPU | CPU dif
--------------
5.9 | +0.2 ^
4.0 | ...
2
votes
0answers
249 views
WPF Datagrid: how avoid IEditableObject behavior?
I've a Wpf Datagrid with a collection of entity as ItemsSource; entity type implements IEditableObject interface (BeginEdit, CancelEdit, EndEdit).
I want to prevent the datagrid automatically call ...
2
votes
0answers
583 views
Fully functional android data grid
Since building dynamic table using Table Layout was not enough for me.
I wonder if I could get data grid view like this (from MyData application)
The features are:
1)vertical scrolling supported
...
2
votes
0answers
367 views
How to have empty groups in a DataGrid in WPF?
I've got a DataGrid in WPF with groups based on a property, but I wan't to have some groups present even when there is no corresponding item.
My code is base on that but with the DataGrid it doesn't ...
2
votes
0answers
275 views
DataGrid Binding error for object already removed when BindingExpression uses array Index
I am trying to create a DataGrid which is populated by setting the ItemsSource property to an ObservableCollection of PropertyGroup objects where each PropertyGroup object contains an ...
2
votes
0answers
352 views
WPF Toolkit Datagrid doesn't show splitter icon on columns
For WPF datagrid I am using following lines of code in xaml file. I have set the resize property of columns in datagrid to true. Still it doesn't show splitter icon on columns of datagrid.
...
2
votes
0answers
285 views
Silverlight DataGrid Selected Group
the Silverlight Datagrid has an underlying method to group data items by using CollectionViewGroups.
Is there a way to find out if the RowGroupHeader is selected? A event to listen to or a brute ...
2
votes
0answers
375 views
How to copy style of DataGridTextColumn to DataGridTemplateColumn?
In my Silverlight DataGrid, i want to copy style of DataGridTextColumn to DataGridTemplateColumn's CellTemplete.
This way DataGridTemplateColumn will look exactly same as other DataGridTextColumns.
...
2
votes
0answers
368 views
Checkbox gets reset in WPF Datagrid when sorting
I have a WPF application with DataGrid
The DataGrid contains 4 columns with a checkbox template column on the first column
the problem is when i check some of the checkbox on the items, the checkbox ...
2
votes
0answers
646 views
Sourcecollection count is 0 newitemplaceholder is not shown
After deleteing all the items in the bound collection, the datagrid.items.count is 1 and the only item in the item collection is newitemplaceholder but the datagrid does not show the ...
2
votes
0answers
481 views
Silverlight 3 DataGrid SelectionChanged event fired when switching applications
This is annoying...When running my SL3 app with a datagrid after having selected a row in the grid, if I alt-tab to a different application and then alt-tab back - the SelectionChanged event fires! ...
1
vote
0answers
35 views
Animating DataGrid rows in WPF
I would like to add an animation to a DataGrid, which is applied to every row when they are loaded.
Like the following:
For example in that one, each row is blurred out and gets focus.
I tried ...
1
vote
0answers
20 views
ContextMenu for DataGrid ColumnHeader is not showing after applying this style?
If I apply this style to the WPF DataGrid, the context menu for columnheader is not showing. It shows up if I remove this style. What's wrong or missing in this style?
<Style ...
1
vote
0answers
32 views
TwoWay binding a table to a datagrid which has a ComboBox column and bind to another table?
TwoWay binding a table to a datagrid which has a ComboBox column and bind to another table?
I have a datagrid which is twoway bind to table Accounts. Whenever the update button is clicked, I'll ...
1
vote
0answers
32 views
How to calculate Windows Forms DataGrid content's size?
I've got a datagrid filled with fixed data (non-database). There is no need to scroll the data itself and I want to set the size of the grid, such that all the data is visible (and no scrollbars are ...
1
vote
0answers
14 views
APYDataGridBundle getting access to original query or list of items
$source = new Entity('MyEntity');
/* @var $grid Grid */
$grid = $this->get('grid');
$grid->setSource($source);
Anyone knows if is this possible to get original doctrine query that the grid ...
1
vote
0answers
25 views
Proper Flex 3 control (example would be great too) to display dynamic array
I need to display a table represented by the 2-dimensional array object (typed Object), with column headers and row headers coming from two separate Array objects. Size of the Array objects ...
1
vote
0answers
108 views
A Must See WPF DataGrid Run-Time Update
All, I have seen and asked the following respectively
How to change a DataGrid row colour when a certain value is encountered?
Change the Background Color of Entire Column of WPF DataGrid at ...
1
vote
0answers
22 views
Cannot access property bound to DataGridTextColumn in another element such as Foreground
I have a simple DataGrid with its ItemSource bound to an ObservableCollection<Issue> where Issue is just a class object containing various properties. I have a handful of DataGridTextColumn ...
1
vote
0answers
40 views
To Access the values of a datagrid from User control to an aspx page
I have an application, in which on an aspx form I am loading a web user control at runtime based on the selected input. This user control contains a datagrid, which is populated on page_init of the ...
1
vote
0answers
101 views
Programmatically add column definitions to a DataGrid in Wpf and MVVM?
I want to create a pivot table in my user interface.
Note
Please note that the number of columns are not static.
And this is my ER diagram
Here is my Main view model
public class ...
1
vote
0answers
130 views
datagrid in visual basic 6.0 is not updating
I'm doing a tuition centre database and registration system using vb 6.0, I had created two form, which form 1 is for secretary to type in the data of the student that registered, and the second form ...
1
vote
0answers
183 views
Making a WPF DataGrid repeat Column Headers under each group header
I'm using grouping in WPF (via PropertyGroupDescription in a CollectionViewSource) and displaying the grouped collection in a bound DataGrid.
Typically (as in this MSDN Example) such a DataGrid will ...
1
vote
0answers
193 views
Extended WPF Toolkit Datagrid with binding
Sorry but I only found the way with the FieldName defined in the culumn tag or the old style
<xcdg:DataGridCollectionViewSource x:Key="cvsMetals" Source="{Binding MetalTypes}">
...
1
vote
0answers
53 views
MultiBinding on Value Changed
I have a MultiBinding on a DataGrid´s CellStyle property which calls a converter.
<Setter Property="CellStyle">
<Setter.Value>
<Style TargetType="{x:Type DataGridCell}">
...
1
vote
0answers
175 views
WPF DataGrid: Issue regarding virtualization of selected cells outside of visible area
My DataGrid handles huge amounts of data (up to 40k rows on average), so I need to virtualize alot.
Occationally I need to select a whole bunch (if not all) of the cells within a certain column, to ...
1
vote
0answers
207 views
Flex 4 MX AdvancedDataGrid embedded font in header reverting to Times for only some users
I have a Flex 4.5 Application. We are using Spark DataGrids for the majority of our tables. However, there are a couple of instances where we need to use the MX AdvancedDataGrid as we need to do ...
1
vote
0answers
59 views
Explicitly calling onrender event of TextInputCell on FieldUpdater Event
I am using DataGrid in a GWT. One of the column is TextIntputCell. I want to place one tooltip on the same cell to show the updated value at each FieldUpdter Event.
Following is the code.
...
1
vote
0answers
27 views
Datagrid behavior differs on server
It may be impossible to answer this question, but maybe someone met this issue and can provide me some ideas. We are converting all of our apps to framework 4.0. We were on 2.0. On one of my asp app, ...
1
vote
0answers
168 views
Improve WPF DataGrid's scrolling performance
Here is a simple DataGrid benchmark:
open System.Windows
let mutable i = 0
let timer = System.Diagnostics.Stopwatch.StartNew()
[<System.STAThreadAttribute>]
do
let grid = ...
1
vote
0answers
50 views
No datarow shows up after setting the Grouping of my DataGrid
I'm creating a program that will show the application made by a certain resource. I'm planning to show all the application in a datagrid with grouping according to the month and year when did the ...
1
vote
0answers
80 views
Dojo Datagrid keep scrolling up on Chrome
How do I fix this issue where whenever there is a vertical scrollbar on the datagrid and I scroll down, it magically scrolls up automatically till the top. This happens in Chrome but theres no problem ...
1
vote
0answers
245 views
How to bind Combobox dynamically Inside a datagrid in silverlight?
I have a requirement to generate a combobox inside the datagrid and bind the selected item.
am binding the datagrid using a dictionary. the values are getting binded but not the selected item. here ...
1
vote
0answers
155 views
Data layout on WPF DataGrid when binding to Entity Framework
I am binding a WPF DataGrid to Entities through Entity Framework. I do not find a way to present data on the DataGrid the way I want to and I cannot/do not want to touch the source database data or ...
1
vote
0answers
156 views
UX: Working with large datasets using data grids
I've found similar questions here, but I'd like to extend it a bit.
I'm pretty struggling in grasping a proper UX concept (Windows Forms, .NET) for working with large data sets (10,000+ records, ...
1
vote
0answers
56 views
fast grid to handle specific operation (selecting and coloring cells)
I have a task to rewrite in c# a program made in delphi (lost sources).
The user creates a grid with a lot of columns and rows (10-200 of each) and paints the grid cells into red (by double clicking).
...



