Search found 13 matches

by badger
Fri Jun 05, 2015 3:33 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Hi Loic,

Any chance you were able to see that same problem using the XMP I pasted? The XMP is built using standard GDPicture and saved. Then loaded into the DocuVieware.

BTW, the fixes for the showing and hiding the annotations is working great. Thanks!

-Tom
by badger
Mon Jun 01, 2015 5:11 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

sorry, looks like the xmp was clipped. Putting it in code PD94cGFja2V0IGJlZ2luPSfvu78nIGlkPSdXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQnPz4NCjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iPg0KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4NCiAgICAgIDxyZGY6RGVzY3JpcH...
by badger
Mon Jun 01, 2015 5:10 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Hi Loic, I have been doing some more testing. I found that the control seems to display the same annotations on pages 1 and 2 of a multi-page document even though there aren't any annotations in my xmp file that I generate from regular GDPicturePDF controls. When I decode the xmp base64 data, I can ...
by badger
Mon May 11, 2015 7:03 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Hi Loic,

That's great that it will be fixed. I can live with waiting till the next version. I just need to make sure my code has all the features in place and I don't have to go live with these for a couple of months so the timing will workout great.

Thank you!
by badger
Mon May 11, 2015 5:17 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Just checking if anyone has had a chance to look into the problem?

Thanks
by badger
Fri May 08, 2015 9:23 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Hi Loic, I was editing the javascript in Chrome to see if I could solve it. It was pretty easy: for the removeAnnot procedure I did this change..... d.annotApp.pageNo==b&&(a.dom.viewerArea.removeChild(d.canvas) to this: d.annotApp.pageNo==b&&d.annotApp.visible==true&&(a.dom.v...
by badger
Fri May 08, 2015 7:38 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Hi Loic, I have traced it down to this javascript section that is failing when I turn the annotations back on for(var c=0;c<a.cache.Annots.length;c++) { var d=a.cache.Annots[c]; d.annotApp.pageNo==b&&(a.dom.viewerArea.removeChild(d.canvas),a.cache.Annots.splice(c,1),c--) } When debugging, I ...
by badger
Fri May 08, 2015 5:09 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Hi Loic, To get around the javascript exception error, I am doing a postback when I want to make the annotations visible again. Now the problem is my thumbnails look like they are stuck trying to reload. If I close the thumbnail viewer and open it again it the images come up correctly. Any chance th...
by badger
Thu May 07, 2015 8:41 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Hi Loic, I am getting closer. In the code below, I toggle the visible value when I click a button on the screen using ajax from true to false and back again. Note that on the screen the thumbnail does draw correctly in either direction. When going through the annotations and it will hide them proper...
by badger
Thu May 07, 2015 6:10 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Sorry, I miss read your email, so I can just go through the annotations and turn on or off the can move etc. Got it.

Thanks!
by badger
Thu May 07, 2015 6:08 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Hi Loic, I am getting closer. I am using the Ajax code. I have it mostly working, I was indexing by 0 instead of 1 and my annotations were on page 2 of a two page document so that was causing my problem. So I am now getting my annotations to display and when I click on a button and hide as well by r...
by badger
Thu May 07, 2015 3:01 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

Hi Loic, Basically I need to be able to do things with annotations. I need to have the ability to display them and hide them as well as control whether the user can make changes or have the screen as read only. The code I provided essentially takes one of the demos called image_cleanup.aspc.cs and t...
by badger
Wed May 06, 2015 11:50 pm
Forum: DocuVieware
Topic: DocuVieware ASP.Net Annotation
Replies: 20
Views: 24416

Re: DocuVieware ASP.Net Annotation

I am trying to do something similar but it's not working. Essentially what I want to do it be able to show and hide annotations and I want to be able to enable and disable the ability to edit the annotations depending upon users permissions. I can't find anyway to hide annotations so I thought I wou...