Jump to content
Software FX Community

Highlighting event not fired?


Pieter

Recommended Posts

I'm unable to create a handler for the "Highlighting" event in javascritp, I use the .Net control with the clientloader set to false, enabled full-trust, but the event doesn't seems to be fired. Some other events work fine (like the "MouseClick" in the code below) so I guess it has nothing to do with security settings. I also updated to the latest version, same result.

 Is this a bug, or is it by design?

 

<script for="Chart1" event="MouseClick(sender,args)" type="text/javascript">  var chart = document.getElementById('chart1');   // If the client loader is used (UseClientLoader Property)   // we need to access the inner object   if (chart.Chart)   chart = chart.Chart;   chart.View3D.Enabled = !chart.View3D.Enabled;</script><script for="Chart1" event="Highlighting(sender,args)" type="text/javascript">  var chart = document.getElementById('chart1');   // If the client loader is used (UseClientLoader Property)   // we need to access the inner object   if (chart.Chart)   chart = chart.Chart;   chart.View3D.Enabled = !chart.View3D.Enabled;</script>

RightClickIssue.zip

Link to comment
Share on other sites

  • 1 month later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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