Search found 23 matches

by TheOtherPrefontaine
Thu Jul 31, 2025 7:02 pm
Forum: VCL / FMX
Topic: TeeGrid Colors
Replies: 3
Views: 1686

Re: TeeGrid Colors

Thanks so much Yeray !! That did the trick. :D

Anyone know can I get rid of that cyan frame around the selected row/cell?
by TheOtherPrefontaine
Sun Jul 27, 2025 2:50 am
Forum: VCL / FMX
Topic: TeeGrid Colors
Replies: 3
Views: 1686

Re: TeeGrid Colors

Teegrid1.Selected.format.Brush.color (bg color of the selected row)
by TheOtherPrefontaine
Thu Jul 24, 2025 8:22 pm
Forum: VCL / FMX
Topic: TeeGrid Colors
Replies: 3
Views: 1686

TeeGrid Colors

Great component! It would be useful to know how to change the color of two of the TeeGrid aspects. I know of: TeeGrid1.Back.Brush.Color the background color of the grid item TeeGrid1.Cells.Format.font.color the font color of the grid item I need to know how to set: The selected item brush color The ...
by TheOtherPrefontaine
Wed Jul 23, 2025 4:03 pm
Forum: VCL / FMX
Topic: Registered user - all downloads are 1k files
Replies: 4
Views: 837

Re: Registered user - all downloads are 1k files

Thanks Marc, will do!
by TheOtherPrefontaine
Wed Jul 23, 2025 1:17 pm
Forum: VCL / FMX
Topic: Registered user - all downloads are 1k files
Replies: 4
Views: 837

Re: Registered user - all downloads are 1k files

I would even be fine with buying it again, but I want to make sure I can download it ; )

-garry
by TheOtherPrefontaine
Wed Jul 23, 2025 12:11 pm
Forum: VCL / FMX
Topic: Registered user - all downloads are 1k files
Replies: 4
Views: 837

Registered user - all downloads are 1k files

Every timeI try to download TeeGrid, I get a little 1k file. This includes the registered version or the trial version.

I am a registered user. Surely I can get a copy of what I've paid for?

Name : Garry Prefontaine
Customer Number: B2393408
by TheOtherPrefontaine
Fri Nov 17, 2023 6:15 am
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 282109

Re: TeeGrid OnTap

I've attached a small screen shot. You can see the selected row, and also a light blue rectangle around the cell I just tapped on. So teegrid knows I tapped there since it painted the light blue rectangle, but its just not moving the selection. Hope this provides a clue to what's happening. I really...
by TheOtherPrefontaine
Mon Nov 13, 2023 11:45 am
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 282109

Re: TeeGrid OnTap

Amy ideas on this?
by TheOtherPrefontaine
Fri Oct 27, 2023 3:15 am
Forum: VCL / FMX
Topic: TeeGrid Swipe?
Replies: 2
Views: 61864

Re: TeeGrid Swipe?

That's good to hear!
by TheOtherPrefontaine
Fri Oct 27, 2023 3:15 am
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 282109

Re: TeeGrid OnTap

Hi Marc,

I'm using a Galaxy S10E.

-garry
by TheOtherPrefontaine
Tue Oct 17, 2023 1:57 pm
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 282109

Re: TeeGrid OnTap

So is this a bug?
by TheOtherPrefontaine
Fri Oct 13, 2023 7:09 pm
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 282109

Re: TeeGrid OnTap

I should clarify what I am trying to do.

This is for mobile only. I would like the user to be able to tap on the row they want to move to, and the selected row/record becomes the one tapped on.

Any help you can offer is appreciated.
by TheOtherPrefontaine
Wed Oct 11, 2023 10:27 pm
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 282109

Re: TeeGrid OnTap

Unfortunately TeeGrid1.Rows.RowAt only works to row 7. Past that it returns -1, even though there are several rows past that.
by TheOtherPrefontaine
Wed Oct 11, 2023 8:07 pm
Forum: VCL / FMX
Topic: TeeGrid Swipe?
Replies: 2
Views: 61864

TeeGrid Swipe?

Any way to swipe the grid so as to move to the next columns? Swipe left, see later columns, swipe right see earlier columns?
by TheOtherPrefontaine
Tue Oct 10, 2023 2:07 am
Forum: VCL / FMX
Topic: TeeGrid OnTap
Replies: 14
Views: 282109

Re: TeeGrid OnTap

This worked very well: procedure TFudleyMain.TeeGrid1Tap(Sender: TObject; const Point: TPointF); var myRow : Integer; myX, myY: single; hgt : single; begin myX := point.X; myY := point.Y; hgt := TeeGrid1.Height; myRow := TeeGrid1.Rows.RowAt(myY,hgt); TeeGrid1.Selected.Row :=myRow; end;