- Status: Fixed
- Priority: Normal
- Resolution: Fixed
- Platform: iOS
- Affects version: 1.11.5.0
If I open dialog from collapsed menu in TfgNavigationBar, it does't show dialog.
procedure TFormMain.btnNewEntryTap(Sender: TObject);
var
LDialog : TfgDialog;
AItem : TfgItemWrapper;
begin
LDialog := TfgDialogs.CreateDialog (Self, True);
LDialog.Message := 'Eintrag löschen?';
LDialog.PositiveButton.Init (mrYes, 'Ja');
LDialog.NegativeButton.Init (mrNo, 'Nein');
LDialog.OnCloseCallback :=
procedure (const AResult: TModalResult)
begin
if AResult = mrYes then begin
dec (FCount);
fgCollectionView1.ReloadItems ();
end;
end;
LDialog.Show;
end;
Fix version: 1.12.0.0
Recommended Comments
Create an account or sign in to comment