Default buttons on save dialog

Hi all,
I am working with one application and it has a save dialog box which is implemented using JFileChooser. On the Save dialog box, I see four buttons on the right. First of them is to go up a level, second is to go to home, third is for a new folder and the forth is to display file details. The first three are working fine, but the fourth one does not give any results. It I take my cursor on the button, the tool tip says "details", but when I click on that button, nothing happens. Do I need to do something special in my code to activate "details"??
Any help would be greatly appreaciated.
Thanks,
Namrata

I posted the same question more than one year ago. No answer yet.

Similar Messages

  • Pointer does not move to the default button in the dialog box

    example: when cleaning out trash the pointer does not go to the default button in the dialog box, you have to manually go there.
    This happens all the time.

    Hi Abhishek,
    In SAP this job shows completed till the 3rd step. and no error in the job log. but it does not execute the 4th and the 5th steps. And in Redwood, it shows completed for 1st and 2nd steps, 3rd step is in Error but has no error log. The 4th and 5th steps are in chained status. I have not amended the job chain after import. I have just scheduled it as it was running in the SAP system.
    Let me know if you need some further information on this.
    Regards
    madhu

  • How to bring mouse cursor to the default button of a dialog, like in windows

    Anybody know how to achieve this in LV?
    Please see the attached screenshot.
    - Partha
    LabVIEW - Wires that catch bugs!
    Attachments:
    Automatically move mouse pointer to the default button.PNG ‏34 KB

    Dear partha,
    1) You can be able to trace out the location of the button
    2) You can be able to move the cursor to that location
    3) You can be able to automatically generate a click on that button
    Use user32.dll to achieve all this. when u use it in CLN(Call Library Node), u can c functions 4 that.
    Try and ask if further help needed!!!!!
    Thanks,
    Mathan

  • How to get my Logitech Trackball to automatically move pointer to the default button in a dialog box while using Firefox?

    It does it for Internet Explorer but doesn't do it for me on Firefox.

    Dear partha,
    1) You can be able to trace out the location of the button
    2) You can be able to move the cursor to that location
    3) You can be able to automatically generate a click on that button
    Use user32.dll to achieve all this. when u use it in CLN(Call Library Node), u can c functions 4 that.
    Try and ask if further help needed!!!!!
    Thanks,
    Mathan

  • Pointer won't move automatically to default button in dialog box in firefox 4

    Since I installed firefox 4, the pointer won't automatically snap to the default button in a dialog box. For example, when I delete trash in yahoo mail, there is a dialog that ask if I want to delete files, but the pointer is not on the default button.

    Thanks StephenB. Yes, it is now obvious that the default button has been selected without the cursor jumping to it, and as you say, hitting "Enter" does the job. Still not as natural a process as just clicking the cursor key and as your hand is already on the mouse it is probable faster to still move the cursor to the button.
    Maybe Mozilla will fix it in the future so that the cursor jumps once more.
    Regards

  • Shortcut for selecting non-default button in dialog boxes

    I seem to remember that there was a keyboard shortcut many OSs ago. I can't seem to find it or replicate it. Particularly, I would like to choose the non-default button in a dialog box in Acrobat Pro for productivity's sake.
    Thanks, Jon

    Hi Jon, and a warm welcome to the forums!
    No way to tell if Adobe follows the standard, but TAB generally moves through the Dialog buttons & Space Bar selects that choice where Enter/Return chooses the default blue button. Sometimes the CMD key + the first letter of the button selects it iirc. Sometimes the esc key passes for Cancel.
    If it's not, in Sys Prefs change if the “Full keyboard access” under keyboard shortcuts is set to use text boxes and lists only, switch it to “All controls”.
    http://forums.macnn.com/90/mac-os-x/401945/keyboard-shortcuts-for-dialog-pop-ups /

  • Snap mouse pointer to default button doesn't work

    Dear Community,
    I own a W520 with W7professional. My mouse is the ThinkPad bluetooth Laser Mouse.
    In the mouse properties window, I've activated the "Automatically move pointer to the default button in a dialog box" option but unfortunately it seems not working.
    Any idea?
    Best Regards,
    Marco

    hey calza_mc,
    try uninstalling the mouse drivers and reinstall it.
    also, do an update on your bluetooth drivers while you're at it
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • Strange behaviour on default button

    Hi,
    I have a frame which has a default button (the button which automatically gets triggered when enter key is pressed. And I am popping up a modal dialog on the JFrame which also has it's own default button.
    The tester kept pressing the enter key for about 10 seconds without taking the finger off the enter key on the modal dialog and randomly the JFrame's default button is getting invoked.
    I am setting the dialog as modal, but yet this happens. Do I have code anything else to avoid this thing from happening.
    Thank you.

    What happens when the user selected the default button on the dialog? Does that hide the dialog and give the main frame focus? If so, then you would extect the enter key press to go back and forth.
    If that is not the problem, one option would be to disable the default button when you are processing a selection.

  • Set default filename for file save dialog on Save button click

    Hi,
    I am using AxAcroPDF (version 9.0) control to view pdf files in windows forms (C#). The pdf loads into the viewer in the form. Now, when I click on the Save button in the viewer, a Save dialog pops up with a default filename having complete path info.
    If I have loaded the pdf file into AxAcroPDF viewer with filename:
    "C:\Documents and Settings\KB_Kravi\My Documents\CustomerList.pdf"
    then in the save dialog, the default filename will be:
    "C_Documents_and_Settings_KB_Kravi_My Documents_CustomerList.pdf"
    Is there any option to set the default filename in the save dialog to some short name, instead of this lengthy name?
    Thanks,
    Ravi.

    Hi,
    I've found a solution.
    public void Open(string filePath)
    axAcroPDF.LoadFile(filePath);
    //this will set the correct name in the save file dialog.
    axAcroPDF.src = filePath;
    Thanks for your help.
    Freedon

  • How to set a default button in a JFileChooser dialog?

    How do I set the default button in a JFileChooser dialog?
    Thanks in advance!
    Thomas

    public static JButton searchByText(Component comp, String[] texts) {
        if (comp instanceof JButton) {
            JButton btn = (JButton) comp;
            String text = btn.getText();
            for(int j=0; j<texts.length; ++j)
                if (text.equals(texts[j]))
                    return btn;
            return null;
        if (comp instanceof Container) {
            Container cont = (Container) comp;
            for(int j=0, ub=cont.getComponentCount(); j<ub; ++j) {
                JButton result = searchByText(cont.getComponent(j), texts);
                if (result != null)
                    return result;
        return null;
    }You can call this method, passing it your JFileChooser and:
    String[] approves = {"Open", "Save"};

  • BEx Web - Open/Save dialog - Set Default Type

    Hi All,
    In the BEx Open/Save dialog (accessed thru New Analysis button), shows "Views" in the Type drop down as default. Is there a way to set this type to Query by default?
    Thanks & Regards,
    Sree

    Option is available in the XML code where the type of dataprovider can be selected as "QUERY" or "VIEW" or "INFOPROVDER".

  • Set default filename for file save dialog

    Hi,
    I am using AxAcroPDF control to view pdf files in windows forms.
    Is there any option to set the default filename in the save dialog?
    Thanks for your help.
    Freedon

    Hi,
    I've found a solution.
    public void Open(string filePath)
    axAcroPDF.LoadFile(filePath);
    //this will set the correct name in the save file dialog.
    axAcroPDF.src = filePath;
    Thanks for your help.
    Freedon

  • Open/save dialog boxes stuck at (too small) default size

    I've been having a relatively small issue with Mountain Lion that has become a big hassle. In past versions of OS X, whenever I'd resize an open/save dialog box in an application, it would be that size the next time I went to open/save. In Mountain Lion, however, those dialog boxes always default to the smallest possible size (which is too small to read a filename longer than a few characters). so I have to resize the dialog box — every time! I open and save a lot of files, so this gets pretty tedious. This doesn't seem to happen in apple programs, but it definitely does in the Office Suite and the Adobe Creative Suite, especially in CS4 Photoshop and Illustrator. Might be I can fix it by myself but I can't imagine where I may dig it.

    You might try looking here for the Adobe products:
    Adobe Help and Support
    Try Microsoft support for the Office Products:
    http://www.microsoft.com/mac

  • Need help adding a default file name in a file chooser of save dialog type

    I need to create a file chooser with save dialog type, how can I add a highlighted default file name into the File Name textfield? As in Microsoft Word, when you want to save a document, a default file name Doc1.doc will appear in the File name text field of the file chooser even when you change to other directories.

    For JRE 1.4.0 you can use this fix:
    public class FileChooserFix implements PropertyChangeListener {
      private String fileName;
       * @see PropertyChangeListener
      public void propertyChange(PropertyChangeEvent ev) {
        JFileChooser chooser = (JFileChooser)ev.getSource();
        if (JFileChooser.FILES_ONLY == chooser.getFileSelectionMode()) {
          if (JFileChooser.SELECTED_FILE_CHANGED_PROPERTY.equals(ev.getPropertyName())) {
            File selectedFile = (File)ev.getNewValue();
            if (selectedFile != null) {
              // remember fileName of selected file
              fileName = selectedFile.getName();
          if (fileName != null &&
              JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(ev.getPropertyName())) {
            // reset selected file
            File directory = (File)ev.getNewValue();
            chooser.setSelectedFile(new File(directory, fileName));
       * Convenience method to create a fixed file chooser.
       * @return      fixed file chooser
      public static JFileChooser create() {
        JFileChooser chooser = new JFileChooser();
        chooser.addPropertyChangeListener(new FileChooserFix());
        return chooser;

  • Set default filename in JFileChooser (Save Dialog)

    Hi,
    how can i set a default filename in a JFileChooser-Save-Dialog?
    The file does NOT exist, so setSelectedFile(new File("FileName")); does not work.
    Thanks in advance.
    Filo

    Did you test this? It works fine for me.

Maybe you are looking for

  • Oracle 9i Internet  Application Server running on HP-UX  11i v1.6Itanium R2

    Hello everybody, I have a customer migrating from IAS R1 to IAS R2, we are to recommend the hardware platform and i would like to know if someboby knows if IAS Realease 2 is fully running on HP-UX 11i version 1.6 and Itanium release 2. Is the IAS R2

  • Bookmarks drop down menu order

    Since upgrading to Firefox 6 the bookmarks menu order has changed slightly vs 3.6. I would prefer the previous order of Bookmark this page Subscribe to this page Organise / show all bookmarks What needs adding to userChrome.css to get this to work

  • Installment plan and Participation group  Assignment to contraact

    Hello Experts I have 2 questions: 1 My client has developed a certain residential stand for sale . They have set up an installment plan to individuals who needs to buy the stands ,upon completion of the installments the relationship of my client and

  • Client reconnect takes long when first node is not available

    Hi guys, I am looking for a way how to "speed up" client reconnect in following scenario: I have two brokers running in HA cluster configured against a DB2 database as storage for messages. I configured JNDI with a connection factory pointing to both

  • Moving an iMovie Project to an External HD

    I want to move my iMovie project to a new external HD as I am running out of space on my internal drive. I am currently working with two iMovie projects, one in DV format and one in MPEG4 format. The MPEG4 format project opens and edits fine once tra