Bug: Context menu operations on multiple selection of uix-nodes do not work

Hi,
when i select multiple .uix files in the navigator and then chose "Check XML Syntax", "Validate" or "Auto Indent XML" from the context menu, the selected operation is only done for the first file in the selection.
This is a nice Bug because this works for Make and Rebuild context menuitems, even if those items display the filename even for multiple selection ("Make AFile.uix).
Would be nice if those operations would work on the "HTML Sources" node or a subfolder.
Regards, Markus

thanks. we'll try to fix this in an upcoming release.

Similar Messages

  • Multiple selection in the ALV is not possible after system upgrade

    Hi Colleague,
    I had been using an ALV, which was performing as desired before, but recently we had a system upgrade to NW7.0 and after that in this ALV multiple selection of records/rows is not allowed.
    The colleagues who upgraded the system suggested that this may be because this ALV is instantiated at many places. I would request you to kindly provide a solution for the same ASAP, as I am not able to proceede ahead.
    Warm regards,
    Roopesh

    Hi all,
    Thanks for your replies, I had figured out the actual problem. The reason was, the referance of the selected rows was lost as I was doing bind elements to the context after moving to wddomodify.
    So I figured out an alternative solution to avoid binding on selection of records.
    Best regards,
    Roopesh
    Edited by: Roopesh Dolle on Apr 14, 2011 7:04 AM
    Edited by: Roopesh Dolle on Apr 14, 2011 7:05 AM

  • Drag n Drop selected Text from Safari, chrome not working on indesign CC

    In CS6 If we drag drop any selected text from any app on layout it work but in indesign cc it is working only with some app like TextEdit, notes etc. I knew that very few people have such use case but same is also not working from one of my cocoa app.
    while  debugging if i drop content from TextEdit and Notes app on some sample app I found that TextEdit & Notes App registered for this Extra Pasteboard type "com.adobe.indesign-import-ustl" and "com.adobe.indesign-import-styl" where as chrome and safari are not. similarly my app is registered only for "NSPasteboardTypeString" type. Is this is the limitation or bug of indesign?

    Similar bug(#3710667) was exist in CC before 9.2.2 update as you can see in release notes of 9.2.2(CC last update) here. before fix simple selected text drag & drop did not work from any application except TextEdit .I have also spent hours before this update to find out bug I used ClipBoardViewer sample App to find out current Drop flavour and its content it may help you and before fix I find some workAround first is add flavour in your drop which Indesign understand even if you are not adding any data for that flavour so that you start receiving couldAcceptType() and under this call parse your actual data from PasteBoard and remove all data from pasteBoard so that another next helper will not consume it. as you mention even after adding text flavour your couldAcceptType() not hit so may be this WorkAround not work for you but it worked for me.
    second is just a finding  i.e before doing drag and drop on indesign create one new document (from Indesign UI not programmatically ) save it on disk close it and reopen it after it every drag & drop will start working work .

  • He menu button of the ipod touch (4th generation) is not working and the service center of ipod is asking us to pay for the fixation of the said item even though it's still on warranty. this is the case number 215866894. And the service center said that t

    he menu button of the ipod touch (4th generation) is not working and the service center of ipod is asking us to pay for the fixation of the said item even though it's still on warranty. this is the case number 215866894. And the service center said that they don't cover that center part of the ipod so they're asking us money before they can fix it. We bought the ipod last december 8, 2010 and we brought it to the service center last april, 2011 here in the philippines. And until now they're not fixing it because they're asking us to pay half the price of the item which is 8,040 pesos..

    As advised, you need to call Apple about this.
    http://support.apple.com/kb/HE57
    No one here works for Apple (no one who will reply, anyway) so there's nothing anyone here can do to help you with this issue.
    Good luck.

  • Transaction SE16: Field selection (User-Specific Settings) is NOT working for ALL tables

    Hi Guru’s,
    I have an issue in Transaction SE16, Field selection (User-Specific Settings) is NOT working in Tables (ALL tables).
    Following is the screenshot attached for your kind reference,
    That is in the initial screen of transaction SE16 if I choose Filed Name or Filed Label only the technical details (Field Names) are appearing and not the descriptions like Client, Purchasing Doc, and Company Code Doc. Category Document Type etc…
    Right now I am using ECC6 and EHP7 SAP system.
    Please help me to resolve this issue by implementing any OSS note or User Role creations or any technical changes required in system.
    Hope the requirement is clear and in case need any clarification please revert back.
    NOTE: Right now in Development System we don’t have any successful user to compare the settings.
    Regards,
    Kumar.S

    Thanks Patra.
    Even I searched in SAP portal and couldn't able to find the relevant OSS note.
    Following is my BASIS team response,
    "Only you can view Table Field values from higher release"
    Can you suggest / guide on this comment as well.
    Looking forward to your speedy response.
    Regards,
    Kumar.S

  • Convert select traditional or simplified chinese not working

    After upgraded mountian lion,
    convert select traditional or simplified chinese not working,
    it works fine in lion.
    Please help!
    Thanks

    Please use the search function about this. This has been discussed many times.

  • Storing Data in Context from a table (multiple selection)

    Hi,
    I have created a node called cauverynode, which contains cauName and cauClient as its attribute. I have bound that node with the table. Now i have to store the selected clients into a context. How can i do that? Please help me out. i am unable to store the clients in a string context. Kindly solve it. Below is the code, which will store the selected item and put into a string variable.
    public void supplyCauveryNode(IPrivateSampleComponent.ICauveryNodeNode node, IPrivateSampleComponent.IContextElement parentElement)
    //@@begin supplyCauveryNode(IWDNode,IWDNodeElement)
    IPublicSampleComponent.ICauveryNodeNode cauNode =
    wdContext.nodeCauveryNode();
    ArrayList selectedcauClients = new ArrayList(cauNode.size());
    for (int i = 0, n = cauNode.size(); i < n; ++i) {
    if (cauNode.isMultiSelected(i) || i == cauNode.getLeadSelection())
    selectedcauClients.add(cauNode.getElementAt(i));
    String strSelcaucli = null;
    for (int i = 0, n = selectedcauClients.size(); i < n; i++) {
    strSelcaucli = strSelcaucli + selectedcauClients.get(i);
    wdContext.currentContextElement().setStrCauveryClient(strSelcaucli);
    //@@end
    Multiple selected data is been stored in this selectedcauClients arraylist, which is not working.  Kindly help  me out.
    Thanks & Regards,
    Dhana

    What is the following code supposed to do?
    String strSelcaucli = null;
    for (int ix = 0, n = selectedcauClients.size(); ix < n; ix++) {
    strSelcaucli = strSelcaucli + selectedcauClients.get(ix);
    wdContext.currentContextElement().setStrCauveryClient(strSelcaucli);
    I guess you want to create a string containing the names(?) of all selected elements.
    Then you should use something like
    StringBuffer sb = new StringBuffer();
    for (Iterator it = selectedcauClients.iterator(); it.hasNext(); )
      ICauveryNodeElement e = (ICauveryNodeElement) it.next();
      sb.append(e.getName());
      if ( it.hasNext() ) sb.append(",");
    String csv = sb.toString();
    This gives you a comma-separated list of the names of the selected elements.
    Armin

  • InfoPath 2010 - Multiple Selection List Box - Rule Does Not Run When Unchecking Value

    I have a multiple selection list box on a form. I have a rule that sets the value of another field. There is not condition. Just any time item is checked or unchecked the value of the other field should
    change. This works when checking an item in the list box but not when unchecking the item in the list box. My question is - do rules not fire for a multiple selection list box when unchecking an item?

    Hi,
    I have tested in my lab environment, the rules seemed only fire for the latest checking action, and it did not fire when uncheck multiple-selection list box. Here is a workaround for your reference:
    http://www.infopathdev.com/forums/p/17850/62269.aspx
    However, I’d recommend you use check box instead, since it is much easier to set rule according to value of it. We can set it as true when we check the box, and set it as false when we uncheck it as below:
    Then it is simple and clear to make rule according to the value of check box.
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety,
    or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Bulk Select and FOR ALL update not working

    Hi
    I am trying to run this but it does not work. I get this error
    PLS-00430: FORALL iteration variable I is not allowed in this context
    declare
    cursor c is
    select employee_number, national_identifier,
    last_name, first_name
    from per_all_people_f;
    type en_tab is table of per_all_people_f.employee_number%type;
    type ni_tab is table of per_all_people_f.national_identifier%type;
    type ln_tab is table of per_all_people_f.last_name%type;
    type fn_tab is table of per_all_people_f.first_name%type;
    en en_tab;
    ni ni_tab;
    ln ln_tab;
    fn fn_tab;
    begin
    open c;
    loop
    fetch c bulk collect into en, ni, ln,fn;
    forall i in 1..en.count
    update xxdl_hr_people_interface
    set first_name = fn(i),last_name = ln(i),national_identifier = ni(i)
    where employee_number = en(i);
    exit when c%notfound;
    end loop;
    close c;
    end;
    But if I dont try to update first_name ,last_name, national_identifer at the same time and modify the block to be like this, it runs
    declare
    cursor c is
    select employee_number, national_identifier,
    last_name, first_name
    from per_all_people_f;
    type en_tab is table of per_all_people_f.employee_number%type;
    type ni_tab is table of per_all_people_f.national_identifier%type;
    type ln_tab is table of per_all_people_f.last_name%type;
    type fn_tab is table of per_all_people_f.first_name%type;
    en en_tab;
    ni ni_tab;
    ln ln_tab;
    fn fn_tab;
    begin
    open c;
    loop
    fetch c bulk collect into en, ni, ln,fn;
    forall i in 1..en.count
    update xxdl_hr_people_interface
    set first_name = fn(i)
    where employee_number = en(i);
    exit when c%notfound;
    end loop;
    close c;
    end;
    Any pointers on why this does not work?
    Thank you
    Kumar

    If per_all_people_f has a PK or unique index on employee_number, then you can do:
    UPDATE (SELECT pi.first_name, pi.last_name, pi.national_identifier,
                   pf.first_name pffirst, pf.last_name pflast,
                   pf.national_identifier pfnat
            FROM xxdl_hr_people_interface pi, per_all_people_f pf
            WHERE pf.employee_number = pi.employee_number)
    SET first_name = pffirst,
        last_name = pflast,
        national_identifeir = pfnatIf not, you can do:
    UPDATE xxdl_hr_people_interface pi
    SET (first_name, last_name, national_identifier) =
                (SELECT first_name, last_name, national_identifier
                 FROM per_all_people_f pf
                 WHERE pf.employee_number = pi.employee_number)
    WHERE EXISTS (SELECT 1
                  FROM per_all_people_f pf
                  WHERE pf.employee_number = pi.employee_number)Note that if there might be more than one row in per_all_people_f for an employee_id, then you need to modify the select sub-query to add a predicate to make sure it only returns one row for each employee_number.
    John

  • Google documents - 'select files to upload' does not work with v 3.6.8 Firefox - several users have noticed this.

    Until Friday, I could upload documents using google's facility within Firefox . Suddenly, the 'select files to upload' stopped working. Internet Explorer does this ok.
    I noticed on the Google forum that several users have reported this and someone suggested it should be reported to Firefox as it works with other browsers. I am using Windows XP on a laptop.

    It is an issue that Google are aware of and are working on a solution. See [http://www.google.com/support/forum/p/Google+Docs/thread?tid=4f0369bdcf6fd7ff&hl=en "Select files to upload" not working in Firefox - Google Docs Help]
    (Thanks to Joolsa for the link)

  • Combination of Submit report with SELECTION-SET and WITH is not working

    I tried all possibilities to make the additional parameter also pass to the report along with variant but it just does not work. Anybody faced this issue before?
    Code snipped which is not taking pernr parameter along with variant 'Report Dis'.
    SUBMIT H99CWTR0 USING SELECTION-SET 'REPORT DIS'
           WITH pernr = pernr-low
           EXPORTING LIST TO MEMORY
    AND RETURN.

    Hi,
    THis sample code worked for me
    data:params type rsparams.
    data:it type table of rsparams.
    params-low = '2003'.              "In variant ZSURESHPAGA the actual value is 2004, but it got executed for 2003.
    params-kind = 'P'.
    params-option = 'EQ'.
    params-sign = 'I'.
    params-selname = 'P_YEAR'.
    append params to it.
    CALL FUNCTION 'SUBMIT_REPORT'
      EXPORTING
        report                 = 'Z12256_TASK1'
       VARIANT                = 'ZSURESHPAGA'
       SKIP_SELSCREEN         = 'X'
    TABLES
       SELECTION_TABLE        = it
    EXCEPTIONS
       JUST_VIA_VARIANT       = 1
       NO_SUBMIT_AUTH         = 2
       OTHERS                 = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SUBMIT H99CWTR0 USING SELECTION-SET 'REPORT DIS'
    WITH pernr = pernr-low       "<----check this statemnent
    EXPORTING LIST TO MEMORY
    AND RETURN.
    Edited by: Keshav.T on May 13, 2010 4:07 PM

  • TS1702 Selection handles in pages app not working.I am only able to select. Not able to expand .What should I do?

    Selection handles in Pages App is not working suddenly. I can select a word or cell,but I am not able to drag it.What to do?

    Hi mafiose15,
    Thanks for visiting Apple Support Communities.
    Restoring your iPod to factory settings is the best way to try and get it back to working order. You can use the instructions below to restore it:
    How to restore iPod
    Verify that you have an active Internet connection, because you may need to download new versions of the iTunes and iPod Software.
    Download and install the latest version of iTunes if necessary.
    Open iTunes. Connect your iPod to your computer using the USB or FireWire cable that came with your iPod.
    After a few moments, your iPod will appear in the Source panel in iTunes.
    Select your iPod in the Source panel. You will see information about your iPod appear in the Summary tab of the main iTunes window.
    Click Restore.
    If you are using a Mac, you will be asked to enter an administrator’s name and password.
    A progress bar will appear on the computer screen, indicating that stage one of the restore process has begun. When this stage is done, iTunes will present one of two messages with instructions specific to the iPod model you are restoring.
    Disconnect iPod and connect it to iPod Power Adapter (typically applies to older iPod models).
    Leave iPod connected to computer to complete restore (typically applies newer iPod models).
    During stage two of the restore process, the iPod displays an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remain connected to the computer or iPod power adapter during this stage.
    Note: The progress bar may be difficult to see, because the backlight on the iPod display may be off.
    After stage two of the restore process is complete, the iTunes Setup Assistant window will appear. It will ask you to name your iPod and choose your syncing preferences, as it did when you connected your iPod for the first time.
    You can find the instructions in this article:
    Restoring iPod to factory settings
    http://support.apple.com/kb/ht1339
    All the best,
    Jeremy

  • Quick select tool hangs and will not work

    All of a sudden the quick select tool will not work/hangs up has a mind of its own and wanders/ after installing an upgrade to Nik software Color Efex Pro 4. I put that in the trash as I could not find a way to unistall. Probably still part of it in other areas?
    Still did not work. Then I uninstalled PS 5.5 extended. Reinstalled to find it the same as before. All preference etc the same and a blank cach document show up in Bridge, did this before too. It is like I never uninstalled it.
    What gives. How do I get a clean copy of PS?

    You're welcome. 
    hiking11 wrote:
    …do you know how to find the installer on a Mac so I can uninstall some of the Nik software…
    There is no such thing as a system wide uninstaller on a Mac.  Only a few select applications, like some of Adobe's, install an application-specific Uninstaller, e.g. in the Utilities folder of your root level ./Applications folder.  I have no idea if Nik provides such an uninstaller or not.
    hiking11 wrote:
    …Where you are have a Great Christmas season…
    Well, thank you.    Actually, I'm not that far from you in Northern California, some 100 miles NE of San Francisco.  My user ID, Tai Lao, is just a phrase that means Too Old in Mandarin, and my signature, Wo Tai Lao Le, 我太老了, just reads I am Too Old in Mandarin too,    Happy holidays to you too/
    Wo Tai Lao Le
    我太老了

  • Running Windows 7 Home Premium, Firefox 7.0.1, File/Print won't work (doesn't open print dialog box) nor does control+ p nor will right click context menu ever highlight Print selection option after selecting part of a page, ie no printing whatsoever.

    Previous versions of Firefox all printed. All other browsers, programs - Word, Outlook, IE 9, Live Mail, Excel, Adobe files/documents, etc. print. Have more Add-ons than list of plugins below. Can email jpg. screenshots of all printer settings in about:config. Can't paste them here or below.

    See this: <br />
    http://kb.mozillazine.org/Problems_printing_web_pages

  • TLN hover menu enabled - can't select 1st level node

    Hi,
    I've enabled the hover menu for TLN, but now I can't select a 1st level node, only 2nd level ones. When I click on something on the first level, it just ignores it.
    Is this how it's supposed to behave, and can I change it?
    Many thanks
    Jane

    SAP have said this is how it is meant to work, but in some cases it makes the TLN harder to use.
    How would I go able making the first-level tabs act the same way in the hover menu as they do normally?
    Any help would be greatly appreciated!
    Regards
    Jane

Maybe you are looking for

  • How to connect Apple TV (2g) HDMI to HDTV with only component video input.

    Trying to connect Apple TV (2g) HDMI to HDTV with only component video input.  Can I use a simple cable or do I need a converter box/plug? Is the HDMI signal coming from ATV encrypted or HDCP enabled? The TV is HD, but only has a component input and

  • Error message when trying to open PDF files:

    I get an error message that says: Before viewing PDF documents in this browser you must launch Adobe Reader and accept the End User License Agreement, then Quit and relaunch the browser.

  • HDV to Mpeg-2?

    I am working with HDV 23.98 progressive footage in Final Cut Pro. Its final output will be an SD DVD. I exported my sequence to compressor for a Mpeg-2 Widescreen SD (60 minutes) output. Next, I am imported to DVD Studio Pro for the build. I simulate

  • Built-in functions

    Hi, I am new in scripting Illustrator. I am trying to create a clipping mask with javascript. If I understood correctly, I have to take every single object to put it in a group at higher level. I wonder if there is a way to use directly the built-in

  • English language booklet

    I was given a Lumia 930 as a gift but the booklet that came with it is in Viet Namese (the buyer lives in Saigon) - Can anyone let me know where I can obtain an English language version either hard copy or on the web ? Thank you for any info/help, Jo