DISQUS

Olaf's thoughts about Delphi, IntraWeb and other dev stuff : Advanced IntraWeb Async Event Handling

  • Oliver Schulte · 1 year ago
    Hallo, die Datei AdvancedAjaxEvents.zip ist leider nicht downloadbar. Könnten Sie das beheben ? Wäre supertoll :)
    Besten Dank
    Oliver
  • Olaf Monien · 1 year ago
    Thanks Oliver,

    the file should now be downloadable!

    Regards,
    Olaf
  • General Tackett · 1 month ago
    what other things can you do with registercallback? How do you know what items you can use as arguments?
  • Olaf Monien · 1 month ago
    RegisterCallBack tackes just 2 params:
    1: CallBackName:string - will be used as name to identify the callback function. This name needs to be unique.
    2: A method reference of type method of object(EventParams: TStringList).

    On the client side you can then call processAjaxEvent(event, null,"CallBackName",false, null, true); to call the newly registered server-side method.