Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/12/20 in all areas

  1. Hello, my first impression of linux apache module was great! The FishFacts demo run excellent and very fast. I also ported a small application with calendar, calendarpanel and DB (something like scheduler). There were some small incompatibilities with images and icons which solved with the using of UniNativeImageList. The only that I couldn’t sorted out, was the SSL usage. reCaptcha died with “Could not load SSL library.” Does anyone have any experience on linux OpenSSL? uniGUI 1.90.0.1537 Delphi 10.3.3 Apache on Debian 10
    1 point
  2. You can try something like this: function window.afterrender(sender, eOpts) { var me=sender; me.dropTargetBody = Ext.create('Ext.dd.DropTarget', Ext.getBody(), { ddGroup: 'D1', notifyDrop: function(source, evt, data) { ajaxRequest(me, 'dropped', ['gridname='+source.view.grid.uname]); }, notifyEnter: function() { } }); } procedure TMainForm.UniFormAjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); begin if EventName = 'dropped' then begin //UniDBGrid1.SelectedRows.Delete; //Additional checks: is as ShowMessage((FindComponent(Params.Values['gridname']) as TUniDBGrid).Name) end; end;
    1 point
×
×
  • Create New...