-
I have seen! The type of Cell Data is always setted to decimal. So my problem is that I didn't handl the type convertion for decimal correctly.
It can be solved using Convert.ToXXX();.
2010-01-01 13:31:37 UTC by heromyth
-
Here is an example:
private void button1_Click(object sender, EventArgs e)
{
XPTable.Models.Table xpTable = table1;
xpTable.BeginUpdate();
NumberColumn adjustValueColumn = new NumberColumn("value", 80);
//adjustValueColumn.Format = "0.##";
adjustValueColumn.Increment = (decimal)5.0f;...
2010-01-01 12:11:40 UTC by heromyth
-
darkjedisleikas committed revision 172 to the XPTable - advanced data grid SVN repository, changing 26 files.
2009-12-10 15:56:14 UTC by darkjedisleikas
-
this bug was my fault: I forgot to assign the tablemodel of my table. So this bug can be deleted.
2009-11-26 20:35:55 UTC by schoetbi2
-
Hi,
in this method in this line:
this[0].InternalTableModel.Table.ClearAllRowControls();
Table might be null.
2009-11-26 10:02:12 UTC by schoetbi2
-
This patch adds a Name property to the Column class that behaves just like Control's Name property.
Its value it set to the "(Name)" value as specified in the Designer.
The patch provides the basis to implement runtime column reordering later. (I will provide another patch in case this one gets accepted)
Patch Changes in detail:
- Adds a property "Name" to the Column class
- Adds...
2009-11-17 20:47:58 UTC by now
-
Add RowContextMenuNeeded and CellContextMenuNeeded events like the DataGridView has.
2009-10-28 22:49:55 UTC by JamieGS
-
There is good reasons why TableModel is an interface in Java. Please consider developing XPTable's model in this direction.
2009-10-26 08:47:55 UTC by d_starke
-
1. Add rows to a table so that the vertical scroll bar becomes visible.
2. Use the scroll bar to scroll all the way to the bottom so that the last row is visible.
3. Delete all the rows. The rows have to be deleted one at a time to reproduce this bug e.g.
table1.TableModel.Rows.RemoveAt(i);
4. Add similar number of rows as in Step 1.
5. Use the scroll bar to scroll all the way to the top.
2009-10-12 04:37:12 UTC by sooyoongn
-
This is fixed in SVN revision 171, you can either use SVN to get the latest version or wait for the next version.
2009-10-03 09:26:49 UTC by daisydave