Atalasoft
Welcome to Atalasoft Community Sign in | Join | Help
in

Browse by Tags

All Tags » JavaScript » WebAnnotationViewer
  • Custom Triangle Annotation

    I have checked the Custom Triangle Annotation in the windows application. I would like to have the Triangle Annotation in the Web Application. I copied the Custom Triangle annotation related file to the Web Application and made changes as per the Hilite custom annotation, but it does not work. Please let me know how to achieve this.
    Posted to ASP.NET Imaging Discussion (Forum) by Rupesh on March 17, 2008
  • Re: conditional contextMenuShow() when AnnotationRightClicked()?

    You could use an if - else block and a tooltip to do this: On the server side, set all redaction tooltips to ''redaction'', and on the client side: function OnAnnotationRightClicked(e){   if (e.annotation.getToolTip() != 'redaction'){      // show menu   }   else{     ...
    Posted to ASP.NET Imaging Discussion (Forum) by David Cilley on March 11, 2008
  • Re: ZoomChanged Event affects annotations

    The WebAnnotationViewer needs to bind to the parent WebImageViewer's ZoomChanged event, setting this to a function of your own instead of using atalaEventAdd will cause it to break all annotation specific operations (such as automatically resizing annotations) This is the recommended way to attach to this ...
    Posted to ASP.NET Imaging Discussion (Forum) by David Cilley on December 2, 2007
  • Re: Simple Server-Side Annotation

    How are you trying to ''identify'' these annotations? Also, it is recommended that you use the WebAnnotationViewer's AnnotationClicked event if you are trying to execute a function when an annotation is clicked.  Here is a sample: atalaInitClientScript('OnPageLoad();'); function OnPageLoad(){   ...
    Posted to ASP.NET Imaging Discussion (Forum) by David Cilley on June 28, 2007
  • Re: anotation id for javascript

    Unfortunately there is no way to identify annotations by ID or Name on the client side.  These are only accessible on the server side. For a detailed list of available JavaScript properties, you can use this reference:http://www.atalasoft.com/products/dotimage/docs/Client%20Scripting%20in%20ASP.NET.html Tha atalaAnnotation object is ...
    Posted to ASP.NET Imaging Discussion (Forum) by David Cilley on May 31, 2007