I am using ICEPDF(open source java applet) Applet viewer for my pdf to view in my web without the use of adobe reader. Now i want to disable "Save-As" button from the toolbar available at top. I have extracted jar files and dont know which file to customize. Could any1 help me on the file to be edited so as to hide the save-as option from my toolbar. Please.. Thanks - Haan
ICEPDF Applet | Disable "Save-As" button from toolbar
1.4k Views Asked by hjaffer2001 At
1
There are 1 best solutions below
Related Questions in APPLET
- How to have Django serve an applet?
- How to let java applet download file
- Integration between Java Applets and .Net dll
- I made a function that uses graphics and I wanted to call it in the main it did not work
- java.lang.UnsatisfiedLinkError: Could not find library [libjsane.so]
- Troubles with applets in c# application
- Java Applet CookieManager not adding cookie to browser
- Should I migrate away from Applets and if so to what?
- how to test java applets with html?
- Load runner Java applet recording
- How to use panels in applets?
- Extract Files from Jar file in Java Applet
- How to launch an applet using chrome?
- java applet class not found exception in the chrome browser
- How to send a data array to my Applet and manipulation it by Applet and return new data in response apdu?
Related Questions in ICEPDF
- Get text from a section of a pdf page with IcePdf
- Image quality in pdf is not good
- ICEPDF Applet | Disable "Save-As" button from toolbar
- ICEPDF Printing Problem
- Disabling toolbar from icePDF viewer
- Error reading font file when using Icepdf
- icepdf-core maven install in Eclipse not working
- Search for sentences and get the line number using icepdf
- Settings for Bookmark in ICEPDF Java
- Change ICEPDF Look And Feel in Java
- How to remove ICEpdf temporary files after application has finished working?
- problem font in ICEpdf viewer when i m transform pdf document in image
- JAVA SWING ICEPDF pdf not showing whole content
- icepdf not render on linux instance in JFrame
- SwingController get page coordinate
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can work on
SwingViewBuilder. Personally, I did the customization by subclassing it and returning nulls for the things I wanted to disable.EDIT:
SwingViewBuilderhas many buildXYZ() methods. It is only required to make such a method return null for each button/menu item/toolbar that is not needed. The rest of the code is handling the nulls gracefully and skips over it.Specifically, for the "Save-As" feature, you need to change/override
buildSaveAsFileButton()andbuildSaveAsFileMenuItem().