Jump to content

On Mouse Move Event Veri Boş geliyor


Recommended Posts

Kullandığım version Trial 1559

function mousemove(sender, x, y, eOpts)
{
  ajaxRequest(sender, 'MouseMoveEvent', [ 'param0='+x, 'param1='+y]);
}

 

procedure TMainForm.UniPanel2AjaxEvent(Sender: TComponent; EventName: string;
  Params: TUniStrings);
begin
  if EventName = 'MouseMoveEvent' then
  begin
    UniLabel1.Caption := Params.Values['x'];
    UniLabel2.Caption := Params.Values['y'];
  end;
end;
 

 

x ve y Bilgisi boş geliyor

Link to comment
Share on other sites

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...