Tagged Questions
The cell-formatting tag has no wiki summary.
1
vote
2answers
91 views
CellFormatting event in C# is really slow
I have been struggling with CellFormatting event, and it sounds cool, but...
It's so slow I have a DataGridView sth like this
I have written a function it fires when you click the checkbox in ...
1
vote
1answer
904 views
DefaultCellStyle format is not applied when DataGridView is bound
I have a code that binds datagridview to datatable through a binding source:
_bind.DataSource = Table;
lGrid.DataSource = _bind;
In DataBindingComplete event i set the DefaultCellStyle for some ...
1
vote
3answers
11k views
How to format radgrid cell programmatically
I have to format (backcolor, forecolor, font style) a radgrid's cells depending on the value of the cell.
For example
If the value is negative set the fore color of that cell as red.
Can any one ...
1
vote
2answers
1k views
format cell of datagridview to show substring of column text in vb.net
i have a column item-code, inside my database which i have bound to a datagrid view. The item-code comes in this format "A-B-C", i wish only to show the "B" part of the code, i have bound this column ...
0
votes
0answers
40 views
rails - export xls with cell format (for Time)
I am trying to export a list of something (with Time- and text-entries) to an Excel sheet.
I've tried it with the gem to_xls but it converts everything to an integer (or float?!).
How can I configure ...
0
votes
2answers
28 views
How do I implement DataGridView column that can display in different units?
I have a DataGridView (.NET winforms) bound to a collection. One of the fields is a distance stored in feet. But, the grid needs to be able to display in feet or meters (but always store as feet) ...
0
votes
1answer
152 views
JQGrid: How to set a cell style based on content
I want to set a cell's background color based on the contents of the cell.
My first question: is there a way to set a cell's background color from within the xml data?
If not, here is my grid ...
0
votes
2answers
257 views
DataGridView.CellFormatting doesn't work when the grid is sorting
I have a datagridview control that where I need to color the rows based on a value in one of the cells in each row. I'm using the CellFormatting event like so:
Private Sub ...
0
votes
1answer
547 views
How to set Excel cell format in iReport
I'm trying to export a report as xls, but when i open my exported file i notice that all cell formats are Number and all data are wrote with ' like text data (integer fields and double fields also...) ...
0
votes
1answer
211 views
Formatting Cell in WPF DataGrid
Say I have a DataGrid with its ItemsSource binding to a data table(whose columns are various). One column of the table is double type with several NaN values. While on the display part, I want to ...
0
votes
3answers
600 views
NPOI create cell containing bold and non bold text
I'm using NPOI to output excel from Asp.Net MVC app and works very well with plain text but have now been requested to add formatting and am having problems where I need to have a single cell with ...