Forum Replies Created
Answer to: Best way to CompareRows with Folders/Children? It looks like custom sorting is broken when folder rows are present. I'm adding code to keep child rows under their parent row for the next update. I'll see if I can get that update out soon. I can se... |
In forum DataView |
1 month ago |
Answer to: How to set the Header Bold There is not a general property for all headers, but you can set the bold property for each column by accessing the ListColumn object for each column. for col as integer=0 to myDataView.columnCount-1 ... |
In forum DataView |
1 year ago |
Answer to: What's the trick to get 100,000 rows loaded quickly? The simplest way to see a speed up would be to set ListboxPathToFiles.count to the rowCount of the rowSet. Then you can loop through the rows and use ListboxPathToFiles.cell to set each column value. ... |
In forum DataView |
1 year ago |
RE: Editing behavior changed in 1.15.4.1? @alindsay Thanks, you're right. Saving and reopening is the key. Hopefully I'll be able to come up with a foolproof sequence for the next update. |
In forum DataView |
2 years ago |
Answer to: Editable Text Cell - Black Background When Clicked It looks like this behavior is seen in 2019r3.1+ From my experimenting, it looks like you can avoid this by saving and reopening the project. For whatever reason, pasting the dataview code doesn't cau... |
In forum DataView |
2 years ago |
RE: Editing behavior changed in 1.15.4.1? Do me a quick favor since you have the source version. Look in the supporting files folder of the dataview folder. Click the CellEdit object and click the text area and textfield. My theory is that c... |
In forum DataView |
2 years ago |
Answer to: Editing behavior changed in 1.15.4.1? Yes, I did see this. I have a fix in place and will try to get the update posted today. |
In forum DataView |
2 years ago |
RE: Editable Text Cell - Black Background When Clicked @merriweather It looks like this has to do with 2019r3.1 not updating the backgroundcolor of the cell editor when it gets pasted in from the master project. I'm just going to have to remember to manua... |
In forum DataView |
2 years ago |
RE: Editable Text Cell - Black Background When Clicked @merriweather I'm taking a look. What OS/Xojo version are you seeing this on? |
In forum DataView |
2 years ago |
RE: compilation fail @stam Strange. Does it resolve if you do "Clear Caches" under the "Building" section of Xojo preferences? |
In forum CalendarControl |
2 years ago |
RE: compilation fail @stam Hi Stam, what version of Xojo is this with are what platform are you targeting? Also, what optimization setting are you using? |
In forum CalendarControl |
2 years ago |
Answer to: Cell Selected SelectedCells() is not writeable but I could change that... You can use me.selected(5,5)=true |
In forum DataView |
2 years ago |
Answer to: Is there a way to check if the selected Cell is in edit mode? You may want to take a look at the CellWillEdit event. That will fire whenever a cell goes into editing mode. You can also check for ActiveCell<>nil and use FocusedCell to get the Row:Column |
In forum DataView |
2 years ago |
Answer to: Multiline listbox? Hi, this can be done relatively simply with DataView. If you look in the demo download at the Contact List example, you'll see the use of CellContainer (a subclass of containerControl). You can layout... |
In forum DataView |
2 years ago |
Answer to: Header and Setting InitalValue by Code Currently the InitialValue property only loads from the inspector value in the IDE. It would make sense to allow setting at any time. I'll see if I can get that added for the coming update. Should be ... |
In forum DataView |
3 years ago |