Jump to content
  • 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

User Feedback

Recommended Comments

BauerSoftware

Active subscription

Any news about this bug?
When will it be fixed?

  • Administrators

Изменено Статус на Fixed

Изменено Резолюция на Fixed

Изменено Версия с исправлением на 1.12.0.0

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.