kyle
- Total activity 40
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 10
Activity overview
Latest activity by kyle-
kyle commented,
I found a workaround to default to today's date when Text = '' and dataset not put into edit problem. In TwwCalendarEdit.DropDown, comment out the following lines (3606 - 3610): // if DateTime...
-
kyle created a post,
TwwCalendarEdit changing value when user doesn't & failing to notify binding
Given an empty wwCalendarEdit, i.e. blank text value, the behavior of the calendar is to set the date when dropping down the selector, before a date is selected by the user. The calendar continues ...
-
kyle created a post,
Delphi 11 & FirePower X2 - BeginScene not invoked.
I have a project I just took to Delphi 11 version 28.0.42600.6491 and FirePower X2 14.0.0.5. Everything seems OK except sometimes when scrolling in a grid I receive this error... I found a referen...
-
kyle commented,
Better than the code above is... lDoDefaultSort := True;if assigned(fOnCustomSort) then fOnCustomSort(lDoDefaultSort);if lDoDefaultSort then DoDefaultSort;
-
kyle commented,
Your understanding is correct. Grid sorting performs exactly the same except the actual sorting is decided to do default sorting or call an OnCustomSort event. Grid source would be something like ....
-
kyle created a post,
TwwDataGrid: Custom title button sorting of some fields.
Given a dataset attached to a grid, how can I manually sort fields the grid has determined to be not sortable while maintaining usual sorting look? If an event passes the field name, I can adjust d...
-
kyle commented,
Thanks so much. I was looking for everything starting with Title & had no luck. Long day
-
kyle created a post,
Grid group header title height
When using a Windows 10 FMX theme included with Delphi, the grid header looks like when grouping is used. I tried various properties to the correct the height. No go. Which property can I used to ...
-
kyle created a post,
FirePower X Observations
I installed Delphi 10.4, FirePower X, and rebuilt my project as is. Everything installed & built smoothly. This is my out of box experience. 1. Error when opening a dataset attached to wwDataGrid ...
-
kyle commented,
My final resolution is close visually and behaviorally identical to dgEditing off. Set dgEditing on and set the columns to ReadOnly True. Close enough. It'll do.