1
I Use This!
Inactive

Commits : Listings

Analyzed about 2 hours ago. based on code collected about 10 hours ago.
Apr 30, 2023 — Apr 30, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fixed bad edit in RowStyle More... over 13 years ago
Background Paint by Scrollbar Fix - fixes an issue where the background color of a grid row wouldn't extend to where the vertical scroll bar would be painted, if the scrollbar is not currently displayed. [kbomb987] More... almost 14 years ago
Auto-edit cell upon keypress - adds new EditStartAction to control properties. In addition to double-clicking a cell to edit, this allows you to simply begin typing on a selected cell to go into edit mode. Works for Text fields and ComboBox fields. [kbomb987] More... almost 14 years ago
DateTimeComparer was only checking the cell.Data property, so if your grid has text fields for entering dates, the sort would not work properly (cell.Text would hold the date value, but cell.Data would be null, resulting in no sort). More... almost 14 years ago
Added a new Column property, AutoResizeMode, which determines the behaviour when calculating the auto column widths. The default is Any, which preserves backwards compatibility. If the value is Grow, then the column will only ever automatically be made wider, and if it is Shrink, it will only ever automatically be made narrower. More... almost 14 years ago
From kbomb987 on CP - Fix for painting grid lines on parent rows and columns. There was already a nice selection of choices for displaying grid lines in the XPTable rows or columns, via the GridLines option. I've added one more option to paint grid lines on parent rows (between families) and also on the parent columns, but no grid line columns on the sub-rows More... almost 14 years ago
From kbomb987 on CP - Fix for painting grid lines on parent rows and columns. There was already a nice selection of choices for displaying grid lines in the XPTable rows or columns, via the GridLines option. I've added one more option to paint grid lines on parent rows (between families) and also on the parent columns, but no grid line columns on the sub-rows More... almost 14 years ago
From kbomb987 on CP - Fix for ToolTips not displaying on cut-off cell text. I noticed tooltips were not displaying for cells with text longer than the column width. I modified the method IsTextTrimmed() with the following fix. The original code only checked if the fitted characters were less than the display (chars < text.Length), but did not take into account text being wrapped to the next line (lines > 1) More... almost 14 years ago
Horizontal and Vertical alignment can now be set per Cell, using Cell.LineAlignment and Cell.Alignment. If set, then these values supercede the values on the Row and Column. More... about 14 years ago
Text in cells that Colspan could be 'erased' by moving another window over the text. There was an issue with detecting which cells to re-paint. More... about 14 years ago
Changed to fix scrolling bug (ID - 2848790) reported by Tom Nolan ( lordicarus ), Visible but disabled cells are now included in FindNextVisibleCell. More... over 14 years ago
Added CollapseAllSubRows and ExpandAllSubRows to RowCollection (NOTE this only works outside calls to BeginUpdate/EndUpdate, within these calls the vertical scroll bar is not updated correctly). More... over 14 years ago
Fixed vertical scrollbar update error when collapsing subrows (the code did not account for hidden rows before the current row). More... over 14 years ago
With FamilyRowSelect = true, the SelectionChanged event was being fired twice when any cell was clicked. Now it fires only once. More... over 14 years ago
Draw a grid line under the final row (if it is visible). More... over 14 years ago
Fixed errors caused when updating Table.NoItemsText (mouse move caused crash, then clicking table caused crash). More... over 14 years ago
Fixed crash in GetRenderedCellIndex when mouse is over a column when that particular row does not have a cell for that column. More... almost 15 years ago
Added support for getting columns by name: More... almost 15 years ago
Fixed Scrolling Issues with DragDrop functionality. More... almost 15 years ago
Fixed crash during DateTime formatting when CurrentUIThread is set to a Neutral Culture, by using CurrentThread value instead (which can not be set to a Neutral Culture). More... almost 15 years ago
Changed HeaderRenderer property to be IHeaderRender (shouldn't be a breaking change) More... almost 15 years ago
Reformatting More... almost 15 years ago
Added a missing comment More... almost 15 years ago
Reformatting More... almost 15 years ago
Added support for flat buttons. Use Button.FlatStyle = true; More... almost 15 years ago
Added AutoCalculateRowHeights and TotalHeight. AutoCalculateRowHeights: If true then all WordWrapped cells will have their Height properly calculated after each EndUpdate. TotalHeight: This gives the total height of all the content and border etc of XPTable. More... almost 15 years ago
EditStartAction can now be a combination of key and mouse actions (i.e. both will work, separately). More... almost 15 years ago
Just reformatting More... almost 15 years ago
Fix for error when clicking on a NumberCell button when the edit event has cancelled the edit More... almost 15 years ago
Fixed null reference error introduced in revision 148 More... almost 15 years ago