Search found 25 matches
- Fri Oct 05, 2018 9:47 am
- Forum: VCL / FMX
- Topic: assign TBitMap to TExpanderRender
- Replies: 0
- Views: 23809
assign TBitMap to TExpanderRender
Delphi version: Seattle TTeeGrid version: VCL & FMX Registered version-1.06 Multidevice Application (FMX) Platform: WIN32 Good Morning, Basically what I need would be a TExpanderRender, but to show an image (in this case with three points, but it could be any other), instead of one of the three pred...
- Fri Oct 05, 2018 9:02 am
- Forum: VCL / FMX
- Topic: Calculation of totals (incorrect examples)
- Replies: 1
- Views: 19180
Calculation of totals (incorrect examples)
Delphi version: Seattle (Not tested in Tokyo) TTeeGrid version: VCL & FMX Registered version-1.06 Multidevice Application (FMX) Platform: WIN32 The examples contained in Tee.Grid.Totals are not compilable, they seem developed for older versions of TTeeGrid. In both examples the compiler gives the fo...
- Fri Oct 05, 2018 8:10 am
- Forum: VCL / FMX
- Topic: TWideMemoField and TMemoField AsString
- Replies: 1
- Views: 19215
TWideMemoField and TMemoField AsString
Delphi version: Seattle (Not tested in Tokyo) TTeeGrid version: VCL & FMX Registered version-1.06 Multidevice Application (FMX) Platform: WIN32 DataSet:TFDQuery Good Morning, When a TField (associated with a TDataSet) belongs to one of these TWideMemoField or TMemoField classes, when calling the TVi...
- Mon Jul 09, 2018 5:32 pm
- Forum: VCL / FMX
- Topic: Control the location of the selected row, within the visible
- Replies: 1
- Views: 17196
Re: Control the location of the selected row, within the visible
This is a possible solution: type TGridAccess = class (TCustomTeeGrid); procedure RestoreScroll (Grid:TTeeGrid, x, y: double); begin // Return the scroll to the original position TGridAccess (Grid). ChangeVertScroll (Y); TGridAccess (Grid). ChangeHorizScroll (X); end; var // Read the ...
- Mon Jul 09, 2018 5:22 pm
- Forum: VCL / FMX
- Topic: When sorting, the size of all the columns changes and the gr
- Replies: 9
- Views: 56130
Re: When sorting, the size of all the columns changes and the gr
You can see an alternative solution, in this post, "Problem with the order when you have to scroll with a column"
- Mon Jul 09, 2018 5:19 pm
- Forum: VCL / FMX
- Topic: Problem with the order when you have to scroll with a column
- Replies: 4
- Views: 22760
Re: Problem with the order when you have to scroll with a column
Gracias Marc, This workaorund, solves the problem discussed in this thread, and additionally, it solves other problems related to a TTeeGrid, associated with a TDataSet: .- After modifying the contents of a cell, scroll to the first page .- After calling TFDataSet.RefreshRecord, scroll to the first ...
- Sat Jul 07, 2018 11:45 am
- Forum: VCL / FMX
- Topic: Control the location of the selected row, within the visible
- Replies: 1
- Views: 17196
Control the location of the selected row, within the visible
Delphi version: Seattle and Tokyo TTeeGrid version: VCL & FMX Registered version-1.04 Multidevice Application (FMX) Platform: WIN32 Hello, For example, if there are 20 rows but only 5 can be displayed in the TTeegrid window, how can I get that pe. row 15 is displayed as the first visible, currently ...
- Thu Jul 05, 2018 8:47 am
- Forum: VCL / FMX
- Topic: Incorrect disable Esc key
- Replies: 2
- Views: 17863
Re: Incorrect disable Esc key
Thanks Marc.
- Thu Jul 05, 2018 8:43 am
- Forum: VCL / FMX
- Topic: DisplayText for Header.Text
- Replies: 4
- Views: 23410
Re: DisplayText for Header.Text
Thanks for your reply Marc, At the moment and since I am using your TTeeGrid associated with a TDataSet, I prefer to search the column using TColumn.TagObject that I have observed that keeps a pointer to the TField In case anyone could find it useful, I'll give the example with TDataGrid, which is a...
- Wed Jul 04, 2018 11:41 am
- Forum: VCL / FMX
- Topic: Incorrect disable Esc key
- Replies: 2
- Views: 17863
Incorrect disable Esc key
Delphi version: Seattle TTeeGrid version: VCL & FMX Registered version-1.05 Multidevice Application (FMX) Platform: WIN32 Hello, The Key variable should not always be assigned to 0, in any case, if you want to solve a problem with a specific platform, you should enclose it in the corresponding defin...
- Thu Jun 14, 2018 8:14 am
- Forum: VCL / FMX
- Topic: DisplayText for Header.Text
- Replies: 4
- Views: 23410
DisplayText for Header.Text
Delphi version: Seattle TTeeGrid version: VCL & FMX Registered version-1.05 Multidevice Application (FMX) Platform: WIN32 Hello, There is some possibility (or workaround), of changing the text of the header of the column, without modifying TeeGrid1.Columns ['id']. Header.Text, the problem is that if...
- Wed Jun 13, 2018 11:38 am
- Forum: VCL / FMX
- Topic: Cell validation (with a TDataSet desdendant)
- Replies: 0
- Views: 18066
Cell validation (with a TDataSet desdendant)
Delphi version: Seattle TTeeGrid version: VCL & FMX Registered version-1.05 Multidevice Application (FMX) Platform: WIN32 Good afternoon, When for example in a numerical cell an invalid value is entered eg: "6666666666666666666666666666666666", and enter is pressed, the exception is shown (value 666...
- Tue Jun 12, 2018 4:55 pm
- Forum: VCL / FMX
- Topic: Problem with the order when you have to scroll with a column
- Replies: 4
- Views: 22760
Re: Problem with the order when you have to scroll with a column
Good afternoon Yeray, Most of the problems that I am finding I am evaluating in the form contained in the file that I attach, also includes the data in xml format. The problem discussed in this post, has as workaround, for FMX.Win32.Seattle, forcing all the numerical columns to be aligned to the lef...
- Tue Jun 12, 2018 4:35 pm
- Forum: VCL / FMX
- Topic: Edit mode in on cell click
- Replies: 0
- Views: 17219
Edit mode in on cell click
Delphi version: Seattle TTeeGrid version: VCL & FMX Registered version-1.05 Multidevice Application (FMX) Platform: WIN32 Good afternoon Yeray, It would be possible to put the row in edit mode when clicking on a cell, what I intend to achieve is that the control associated with the column of the ce...
- Tue Jun 12, 2018 4:02 pm
- Forum: VCL / FMX
- Topic: When sorting, the size of all the columns changes and the gr
- Replies: 9
- Views: 56130
Re: When sorting, the size of all the columns changes and the gr
Thanks Yeray, at the moment that workaround serves me.