WWWLOOKUP UNBOUND

Comments

1 comment

  • Roy Woll

    If you are using it on mobile and it is dropping down, you can refer to the lookup value property after it closes up.

    var val: strings;

       val:= wwlookupcombozip.LookupValue;

    If instead you are using the popup dialog then you can uses the OnCloseDialog event.

    procedure TLookupDialogDemoForm.wwLookupComboZipCloseDialog(Sender: TObject;
      LookupDialogForm: TwwLookupDialogForm; Accept: Boolean;
      var CanClose: Boolean);
    var val: string;
    begin
      if Accept then
      begin
         val:= fdzip.FieldByName('Zip').AsString;
      end;

    end;

    0
    Comment actions Permalink

Please sign in to leave a comment.

Powered by Zendesk