Jump to content

Recommended Posts

Posted

Hi,

 

For now maybe like this (a partial solution):

 

MainForm->ClientEvents->UniEvents:

function window.beforeInit(sender, config)
{
  var focusHandler = function(event) {
    if (uniVars._actCnt && uniVars._actCnt.uname) {
      setTimeout(function(){
        ajaxRequest(sender, 'actCnt', ['actCntName=' + uniVars._actCnt.uname])
      }, 0)
    }  
  };
  document.body.addEventListener('focus', focusHandler, true); //Non-IE   
  document.body.onfocusin = focusHandler; //IE
}

MainForm->onAjaxEvent:

procedure TMainForm.UniFormAjaxEvent(Sender: TComponent; EventName: string;
  Params: TUniStrings);
begin
  if (EventName = 'actCnt') then
  begin
    //
    Caption := Params.Values['actCntName']
  end;
end;

Best regards.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...