kyle
- Total activity 42
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 11
Comments
Votes on activity by kyle-
Thanks so much. I was looking for everything starting with Title & had no luck. Long day
-
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...
-
Better than the code above is... lDoDefaultSort := True;if assigned(fOnCustomSort) then fOnCustomSort(lDoDefaultSort);if lDoDefaultSort then DoDefaultSort;
-
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 ....
-
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.
-
You're right. I didn't notice the demo was using a CustomControl. I saw the button in the grid and the assigned TwwDataGrid.OnButtonClick assigned and assumed it was automatically created. I found ...
-
You understood correctly. OnAfterCreateControlForItem works perfectly. I didn't see it before because I had my object inspector splitter cutting it off, so it looked like the event was TwwRecordVie...
-
Yes. One of the issues fixed in the update you sent me. Thanks. https://woll2woll.zendesk.com/hc/en-us/community/posts/360041965693/comments/360011116793
-
I found a workaround. Assign the events in the BeforeInsert of attached dataset or state change of the datasource. OnCreate or form's OnShow is too late. Event handlers will be nil'ed. I'll use thi...
-
1. FIXED: AV error in child grid when selecting value in a LookupCombo. 2. FIXED: First record in master grid disappearing when child grid expanded. 3. FIXED: Invalid cast when adding item to a Loo...