Search found 3 matches

by MTG
Tue Feb 20, 2024 8:48 am
Forum: VCL / FMX
Topic: change font of cell when editing
Replies: 1
Views: 1124

Re: change font of cell when editing

Found it - very easy! This is a code snippet which copies all cell font settings equally to the column properties: procedure TMainForm.TeeGridCellEditing(const Sender: TObject; const AEditor: TControl; const AColumn: TColumn; const ARow: Integer); begin if Assigned(AEditor) then begin (AEditor as TE...
by MTG
Mon Feb 19, 2024 8:05 pm
Forum: VCL / FMX
Topic: change font of cell when editing
Replies: 1
Views: 1124

change font of cell when editing

Hi again,

Does anybody know how to change the cell font if user edits the cell. I cannot find font properties in edit mode similar to those in other property categories.

Probably someone has a clue for this?
thank you in advance for your help!
by MTG
Mon Feb 19, 2024 7:33 pm
Forum: VCL / FMX
Topic: TeeGrid cell edit and scrolling with fixed columns
Replies: 1
Views: 1243

TeeGrid cell edit and scrolling with fixed columns

Dear community, I face a problem in the representation of a TeeGrid with two left-side fixed columns. If I click on a editable field (only selected) and then scroll horizontally, then the selected field is drawn over the fixed columns until it leaves the canvas. So my questions are: a) How can I kee...