We are using TMSFMXLiveGrid Version 2.3.4.1 under RADStudio 11.3 Patch 1.
Grid is bound to DB Table using LiveBindingsand and we render the data using TMyQuery and
TMyDatasource.
When the form is opened under IOS 64bit, SDK Version 16.4, the grid does not display any data.
Sometimes displays data under wrong columns.
Sometimes displays only 1 or 2 columns.
Displays only 1 row.
Issue with formatted and Calculated Columns too.
It does not display when scroll horizontally / Vertically too.
But there is no issue with the same grid under Android SDK Version 25.2.5.
There was no such issue under the previous versions. (RADStudio 11.2)
Kindly check the issue and update at the earliest as it is critical for the release.
The above are the attached gif files showing both IOS and Android versions respectively depicting the rendering issue under the grid based on the Department Selection under Stock and Date under ZReport.
Under Android, there is no issue with the rendering, where as under IOS it shows blank / few records while scrolling. You could find the total records it is supposed to show under the footer or could refer to the Android for actual records.
The grid is bound to the DB Table using LiveBindings. As mentioned earlier there was no issue under earlier versions.
We are using TMSFMXLiveGrid Version 2.3.4.1 under RADStudio 11.3 Patch 1.
Grid is bound to DB Table using LiveBindingsand and we render the data using TMyQuery and
TMyDatasource.
We do not use any update mechanism to render the data under the grid.
When the form is opened under IOS 64bit, SDK Version 16.4, the grid does not display any data.
Sometimes displays data under wrong columns.
Sometimes displays only 1 or 2 columns.
Displays only 1 row.
Issue with formatted and Calculated Columns too.
It does not display when scroll horizontally / Vertically too.
But there is no issue with the same grid under Android SDK Version 25.2.5.
There was no such issue under the previous versions. (RADStudio 11.2)
We have mentioned the above under Support forum and also sent them gif files to demonstrate the same.
We have been waiting for you to fix this issue as all our applications use this TTMSLiveGrid in almost all the forms.
Also we are not able to upload to the store due to SDK issue.(To use the latest SDK) Hence we cannot upload the changes from old version though we have no issue under that.
Kindly check the issue and update at the earliest as it is critical for the release.
We are waiting for some solution for this issue.
Also we are not able to upload to the store due to SDK issue.(To use the latest SDK) Hence we c
cannot upload the changes from old version though we have no issue under that.
Kindly look into it and update us at the earliest as it is very critical for release
Please understand that this takes time. We need to setup the environment, try to recreate the same circumstances and then try to pinpoint the issue, if we are able to reproduce this. We have meanwhile tested this here and couldn't reproduce the issue.
This is a simple Live Binding to TMSFMXLiveGrid using TMyQuery and
TMyDatasource.and a requery to rerender to the grid.
In order to reproduce the issue go thru the following steps
Drop a TTMSFMXLiveGrid, TMyQuery (QSelect) and TMyDatasource on the form.
Place a Button call to refresh the Query.
Bind the Grid using LiveBindings to the Datasource.
On Refresh Button click give the following
with QSelect do
begin
Close;
SQL.Clear;
SQL.Add('select * from Books');
Open;
end;
where Books is the Table Name. (Bound to the Grid).
Run the app.
Click on Button to show the data and Scroll
Click on Button to Refresh again
You will be able to produce the issue.
You can view the issue in the following sample app.
I am herewith attaching the Sample.zip source file. You could compile under RAD 11.3 Patch 1 and check for the issue.
MacOS Ventura Version 13.4.1
Xcode Version 14.3.1 (14E300c).
We have given the connection directly under TMyConnection component (CnnToShopping).
Kindly check and let us know if you need any other info with regard to this.
Kindly let us know if you are able to recreate it. We are unable to release our application due to this issue. If you need any assistance let us know. Awaiting reply asap.
We have tested your sample and could not reproduce an issue here in RAD Studio 11.3 in iOS. the records are loading as expected. We tried multiple times to click the refresh button but could not see an issue displaying data. We suspect that this is a one off issue related to a combination of components, iOS Version & RAD Studio version. What you could do to try and pinpoint the exact reason is rebuild the application in a new project, and start by dropping the grid directly on the main form instead of embedding it inside Layouts.