delphi ios grid bug
Posted lypzxy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi ios grid bug相关的知识,希望对你有一定的参考价值。
BindSourceDB4.DataSet :=nil;
BindSourceDB4.DataSet :=FDMemTable1;
grid绑定后显示数据正常,第二次赋值BindSourceDB4.DataSet就报错了。RAD berlin 存在此问题。
error in ios
windows平台下正常,IOS下报错。
Data.Bind.DBScope.pas,edit file add to current project,compiler that\'s ok!
function TCustomBindSourceDB.CreateSubDataSource: TDataSource; begin Result := TSubDataSource.Create(Self); Result.Name := \'SubDataSource\'; // Do not localize Result.SetSubComponent(True); end; procedure TCustomBindSourceDB.SetDataSet(const Value: TDataSet); var LDataSource: TDataSource; begin if Value <> DataSet then begin if Value <> nil then begin if (FDataSource = nil) or (not (csSubComponent in FDataSource.ComponentStyle)) then begin LDataSource := CreateSubDataSource; LDataSource.DataSet := Value; Self.DataSource := LDataSource; end; end else DataSource := nil; if FDataSource <> nil then begin FDataSource.DataSet := Value; SetLinks(FDataSource); end; end; end;
DataSource := nil;
change to
if DataSource<>nil then
DataSource.DisposeOf;
DataSource := nil;
用query的EnableControls、DisableControls两个方法实现数据断开连接,依然会报错,所以还是用BindSourceDB4.DataSet=nil来断开。
以上是关于delphi ios grid bug的主要内容,如果未能解决你的问题,请参考以下文章
Ext Js 6.2.1 classic grid 滚动条bug解决方案
[Grid Layout] Use auto-fill and auto-fit if the number of repeated grid tracks is not to be def(代码片段
Delphi 2010 里公开的 Midas.dll 的源代码!!Delphi 2010 V14.0.3449.21988 的Midas.dll 修正了上一版本的大BUG!