aurelioset Posted September 22, 2020 Posted September 22, 2020 how to make unigui send status to vcl Quote
Sherzod Posted September 23, 2020 Posted September 23, 2020 Hello, 7 hours ago, aurelioset said: how to make unigui send status to vcl Please explain more. And, can you please specify, which edition and build of UniGUI are you using? Quote
aurelioset Posted September 24, 2020 Author Posted September 24, 2020 I'm using version 1.90.0.1530, I need to receive a result in the VCL application Quote
Sherzod Posted September 24, 2020 Posted September 24, 2020 2 hours ago, aurelioset said: I'm using version 1.90.0.1530, If you are not using the trial version please adjust your forum email address first: 2 hours ago, aurelioset said: I need to receive a result in the VCL application Sorry, not enough information. Quote
x11 Posted September 25, 2020 Posted September 25, 2020 http://forums.unigui.com/index.php?/topic/9892-unimdblistgrid-button-onclick/&do=findComment&comment=78441 in UniEvent function afterCreate(sender) { Ext.getCmp(sender.id).bodyElement.addListener('click', function(event, target) { if (target.getAttribute('class').includes('btnPopup')) { ajaxRequest(sender, "eventPopup", ['objId=' + target.getAttribute('data-id'), 'typeId=' + target.getAttribute('type-id')]); //console.log('typeId=' + target.getAttribute('type-id')); } }, null, { delegate: 'table button' }); } in Event OnAjaxEvent if EventName = 'eventPopup' then begin objId := StrToIntDef(Params.Values['objId'], 0);// files/fmmSearchResults.dbgRes.afterCreate.js id_type := StrToIntDef(Params.Values['typeId'], 0); ... Quote
x11 Posted September 25, 2020 Posted September 25, 2020 On 9/23/2020 at 1:10 AM, aurelioset said: send status to vcl http://forums.unigui.com/index.php?/topic/9406-call-procedure-within-javascript/ Quote
aurelioset Posted September 27, 2020 Author Posted September 27, 2020 very interesting, thank you !!! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.