Get symbol by Element

Is there any way to get a reference to the Symbol object using a DOM element?

There is a CSS property called 'pointer-events' which allows you to specify which areas of an object are clickable.
This is particularly useful for vector based applications but doesn't work in IE (on objects other than SVG).
I've been looking at using the Document.elementFromPoint (along with display:none) to let clicks pass through certain objects, this all works until I get to triggering the click, which doesn't get recieved by the Edge trigger handlers.
I haven't looked into modifying edge to use svg elements instead of image/div elements, it seems like a longer shot but could result in better performance.

Similar Messages

  • How to get selection screen elements and its table reference of a report ?

    halo experts
    How can I get selection screen elements and its table reference of a report ? . I tried rs_refresh_from_select_options. But I am unable to get the table and field it is referring to
    For eg if my selection screen 1000 is
    parameters: p_carrid type spfli-carrid,
    select-options :s-_connid type sflight-connid.
    is there any Fm or method which gives me what are the screen elements( p_carrid and s_connid ) and what table( splfi and sflight ) and field ( carrid and conid )it is referring to ?

    The following code is an example of how you might dynamically determine all your PARAMETERS and SELECT-OPTIONS variables at run time.  The PARAMETERS and SELECT-OPTIONS only point to a dictionary element--not a specific table.  Even though you may say "spfli-carrid" or "sflight-connid", the data type really references the dictionary type and not a specific table/structure.
    REPORT  ZTEST_PROG.
    TABLES sflight.
    DATA:
           screen_tab TYPE STANDARD TABLE OF screen,
           wa_screen TYPE screen,
           scrn_nm TYPE string,
           scrn_leftover TYPE string,
           l_type TYPE REF TO cl_abap_typedescr,
           typ_nm TYPE string,
           typ_pre TYPE string.
    FIELD-SYMBOLS <fs_data> TYPE ANY.
    PARAMETERS p_carrid TYPE spfli-carrid.
    SELECT-OPTIONS s_connid FOR sflight-connid.
    INITIALIZATION.
      LOOP AT SCREEN.
        IF screen-group3 = 'PAR'
          OR screen-group3 = 'LOW'.
            APPEND screen TO screen_tab.
        ENDIF.
      ENDLOOP.
    START-OF-SELECTION.
      LOOP AT screen_tab INTO wa_screen.
        ASSIGN (wa_screen-name) TO <fs_data>.
        l_type = cl_abap_typedescr=>describe_by_data( <fs_data> ).
        IF wa_screen-group3 = 'LOW'.
          SPLIT wa_screen-name AT '-' INTO scrn_nm scrn_leftover.
          TRANSLATE scrn_nm TO UPPER CASE.
        ELSE.
          scrn_nm = wa_screen-name.
        ENDIF.
        SPLIT l_type->absolute_name AT '=' INTO typ_pre typ_nm.
        WRITE:
                 / 'Screen Name:  ', scrn_nm,
                 / 'DDIC Type:    ', typ_nm.
      ENDLOOP.
    When you get into defining internal tables you can determine those at run time with cl_abap_structdescr.  The following is an example of how you might do that.  You can loop through the "components_table" and evaluate each field of the structure in this way.
    DATA: structure_reference TYPE REF TO cl_abap_structdescr,
          components_table TYPE abap_compdescr_tab,
          components_structure LIKE LINE OF components_table.
    structure_reference ?= cl_abap_structdescr=>describe_by_data( any_structure ).
    components_table = structure_reference->components.
    I don't know if this answers any of your questions but I hope that some of it is useful.

  • Why do I continue to get this message-elements 9 organizer has stopped working?

    Why do I continue to get this message - elements 9 organizer has stopped working? 

      The Organizer preferences may have become corrupted, needing to be automatically re-built on a re-start.   Close Elements.
    Navigate to:John > AppData >Roaming >Adobe >Photoshop Elements >9.0 >Organizer
    Delete the PSA file (with key symbol) and delete Status.dat
    Re-start the program
    N.B. replace John with your own user name or click the start button and select your user name above documents.
     

  • No Symbols and Elements in Webgallery

    I try to do a web gallery, but when I choose web gallery I can see all my photos but no symbols to edit the web gallery. Just two of them one for the viewer and one to protect the viewer.
    Where and how can I do some changes to the template and design of the web-gallery? Where are the symbols and elements to control it?
    Message was edited by: minbo

    I mean how do you get to a screen like this->
    http://www.oreillynet.com/digitalmedia/blog/images/webgallery3.jpg
    From this one ->http://www.oreillynet.com/digitalmedia/blog/images/webgallery3.jpg
    I only got the list "all Projects" and the thumbnails but the screen part with the theme stock and columsn and rows I don't have.
    How to create them?
    Message was edited by: minbo

  • How get all child elements from XML

    Hi
    I have one xml i tried to parse that xml using dom parser and i need to get some child elements using java
    <Group>
    <NAME>ABC</NAME>
    <Age>24</AgeC>
    ---------some data here......
    <Group1>
    <group1Category>
    <NAME>ABCTest</NAME>
    <age>27</Age>
    ----Some data here
    <group1subcategory>
    <subcategory>
    <NAME>ABCDEF</NAME>
    <age>28</Age>
    my intention was
    get group name (here ABC) i need all other name value from group1category ,group1 subcategory but pblm that
    my xml contains any number of Group nodes...but only i want name contains ABC
    i wriiten code like this
    DocumentBuilderFactory factory = DocumentBuilderFactory
    .newInstance();
    DocumentBuilder builder = factory.newDocumentBuilder();
    Document document = builder.parse(xmlFile);
    NodeList nodeList = document.getElementsByTagName("*");
    for (int i = 0; i < nodeList.getLength(); i++)
    Element element = (Element) nodeList.item(i);
    what is next step i need to do..please help

    964749 wrote:
    Sorry for inconvenience caused..i only asked if any ideas i not ask any body to spent time for me...
    This is simple code developed using xpath..i not know how i proceed further
    public class Demo {
    public static void main(String[] args) {
    DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
    try {
    DocumentBuilder builder = domFactory.newDocumentBuilder();
    Document dDoc = builder.parse("hello.xml");
    XPath xpath = XPathFactory.newInstance().newXPath();
    javax.xml.xpath.XPathExpression expr = xpath.compile("//Group/NAME");
    Object Name= expr.evaluate(dDoc, XPathConstants.STRING);
    System.out.println(Name);
    } catch (Exception e) {
    e.printStackTrace();
    i need get group name (here ABC) i need all other name value from group1category ,group1 subcategory but pblm that
    ..how i done in XPATH and also do manipulation of remining result...
    i also try with DOM like
    NodeList nodeList = document.getElementsByTagName("GROUP");
    for (int i = 0; i < nodeList.getLength(); i++)
    Element element = (Element) nodeList.item(i);
    if (element.getNodeName().matches("ECUC-MODULE-DEF"))
    String str=((Element) nodeList.item(i)).getElementsByTagName("NAME").item(0).getFirstChild().getNodeValue();
    if(str.equalsIgnoreCase("abc")){
    NodeList children = element.getChildNodes();
    for (int k = 0; k < children.getLength(); k++) {
    Node child = children.item(k);
    System.out.println("children"+children.getLength());
    if (child.getNodeType() != Node.TEXT_NODE) {
    if(child.getNodeName().equalsIgnoreCase("Group1"))
    how iterate for particular ABC name to group1 and subcategoryFew things
    1. Use code tags to format code
    2. Explain the problem statement clearly. Take time to formulate your question. Explain what you expect from your code and what you are getting along with any exceptions that are being thrown

  • How to get the last element of a structure in a textfield in DesignStudio

    Hello,
    how can I get the last element of a structure within a bex query?
    Within the structure we are working with dates that dynamically are buiId (input date - offsets for several months).
    I have to show the last value in a single textfield within DesignStudio.
    Regards
    Frank

    Hi Frank,
    in DS 1.3 you can use forEach function to get the last element of BEx structure (or n-th element in general using if condition)
    var array = DS_CROSSTAB1.getMembers("DHGY5D6XEFO1K45SB00BXFH7A",10);
    var lastMember="";
    array.forEach(function(element, index) {
           lastMember = element.text;
    TEXT_1.setText("Last structure element: "+lastMember);

  • How to get Focused UI element on the Window in 7.01

    HI,
      We were on 7.00 and recently upgraded to 7.01. we have a problem with the upgrade.. The window object no more holds the Focus . Here is the code ...  lo_curr_window->focus is blank all the  times.. This was working fine till 7.00 and now it stopped working..
    data:lo_window_manager      type ref to if_wd_window_manager,
            lo_api_component       type ref to if_wd_component.
      data: lo_clnt_appl type ref to cl_wdr_client_component,"CL_WDR_CLIENT_APPLICATION,
              ls_view_mgrs type wdr_viewman_line,
              lo_curr_window type ref to cl_wdr_window,
              ls_focus type wdr_focus,
              lo_uielem type ref to cl_wd_uielement,
              lv_path type string,
              lo_selected_elem type ref to if_wd_context_element,
              lt_strtab type table of string,
              lv_colname type string,
              lv_tablen type int4.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      lo_clnt_appl ?= lo_window_manager.
      read table lo_clnt_appl->view_managers_for_window
                  into ls_view_mgrs with key name = `ZWD_TEST`.
      if sy-subrc = 0.
      get the window in which this interface view is embedded
        lo_curr_window = ls_view_mgrs-view_manager->get_window_recursive( ).
        if lo_curr_window is initial.
          lo_curr_window = wdr_task=>application->application_window->get_active_modal_window( ).
        endif.
        if lo_curr_window is not initial.
          ls_focus = lo_curr_window->focus.
          lo_uielem ?= ls_focus-view_element.
       endif.
      endif.
    Thanks
    Mahesh

    You seem to be utlitzing SAP internal APIs - so a change in behaviour between releases certainly seems possible. Refer to the online help to find out which APIs are safe to use:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/64/be5b4150b38147e10000000a1550b0/frameset.htm
    What exactly are you trying to acomplish?  From your code you seem to be trying to get the UI element that has the current focus. Is that correct?  To what purpose?
    Perhaps you should review the online help section on Focus Handling:
    vhttp://help.sap.com/saphelp_nw70ehp1/helpdata/en/c0/800f02bb734dd9977a64a8a7e87fe3/frameset.htm

  • My hard drive's gone, I did repair it and now I'd like to get my 'photoshop Elements 7 back, but got a message saying that the serial number is incorrect and it's not. can you help me, please?

    My hard drive's gone, I did repair it and now I'd like to get my 'photoshop Elements 7 back, but got a message saying that the serial number is incorrect and it's not. can you help me, please?

    Mseixas you can try running the CC Cleaner Tool located at Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html and then reinstalling.

  • How to get the context element of a F4 help of a column in ALV table?

    Hello!
    I know to get the context element of the current row normally through
    lo_el = WDEVENT->get_context_element( 'CONTEXT_ELEMENT' ).
    or: lo_el = lo_nd->get_element( index = r-parm->index ).
    But this time, I have a F4 help on the cell of a column. After clicking on the F4 help I need to get the current context element. Do you have any idea, to help me?
    Many thanks!
    regards
    Meer

    Hello,
    Kindly close the thread if your query is resolved now.
    Thanks
    Pradeep

  • New Adobe Photoshop elements 11-can not share pictures. I do use AOL email. Get error of "Elements 11 Organ. has stopped working,  I have looked into sharing tab and my only option is Adobe email settings.  I do have outlook set up to work on computer run

    New Adobe Photoshop elements 11-can not share pictures. I do use AOL email. Get error of "Elements 11 Organ. has stopped working,  I have looked into sharing tab and my only option is Adobe email settings.  I do have outlook set up to work on computer running windows 8.1  Please help, Mainly use to share pictures.  Thanks!

    One thing puzzles me:
    RedClayFarmer wrote:
    I then found one suggestion that the problem might involve permissions. The suggestion was to right click PhotoshopElementsOrganizer.exe in its installation folder (which on my computer is at at D:\Photo\Elements 11 Organizer) and run Organizer as an administrator. This also failed.
    I don't understand why running the exe from the installation folder would have worked.
    I would have simply tried to run that exe from its real location :
    Sorry, I can't help you more about permissions...

  • My Photoshop 9 Stopped working I get the message "Elements 9 Organizer has stopped working"

    My photoshop 9 program stopped working after using Adobe Premiere 9 to generate a slide show using Adobe Photoshop 9 organizer to place photos. The program crashed as I was attempting to burn a DVD. After this happened, I no longer could access the organizer in Photoshop 9. I get the message "Elements 9 organizer has stopped working" " A problem caused the program to stop working correctly, windows will close the program and notify you of a solution is found"
    I tried unistalling Photoshop 9 and the problem remains.

    Thanks for your suggestion.  I checked the Epson web site and also their technical help, they gave me their latest driver (which didn't work) but also said there were some issues with Apple's Mavericks (OS X 10.9.4) and said I should get back to Apple.  Not sure were this leaves me with Adobe Elements though - perhaps I should reinstall?  Thanks again for your suggestion.

  • Getting next XML Element in a document

    Hello,
    I have an xml JDom Document and I need to get, given the name of an element, the next element in the document.
    For example, with this document:
    <ROOT>
        <APPLE></APPLE>
        <GRAPE></GRAPE>
        <PEAR></PEAR>
        <ORANGE></ORANGE>
        <GRAPE></GRAPE>
        <MELON></MELON>
    </ROOT>I get a string like "ORANGE" and I need o get the next element in the document (GRAPE).
    And if I get "GRAPE", I have to get "PEAR" and "MELON".
    Is there anyway to get the following element without checking all the document elements?
    Thank you

    Is there anyway to get the following element without
    checking all the document elements?Obviously not. But why is "not checking all the document elements" a requirement?

  • Copy text from a PDF to word. Just get Symbols

    Hello,
    I have a public PDF with no Copying Restrictions. When I try to copy text from the PDF highlighted text to WORD I only get unreadable garbage.
    I can select the desired text and copy it into word but when I paste the text it is pasted like symbols and lines.
    I tried Special Paste and does not works. It says the font is a Gill Sans something (with numbers and so on), no really a font it seems but when i change it to Arial i still get symbols.
    Any help or ideas,
    Cheers,
    Sebastian

    I have this exact same problem.  It is very frustrating.  How is it not possible to "grab" onto the text in the pdf ??!!
    I am looking at it.  I can see it.  I can read it.
    I can highlight the individual letters and words with the mouse pointer. (So it's not just a "picture")
    With a pdf editor, I can even make the text bold, italic, or increase the font size.
    SO WHY CAN'T I COPY THE TEXT!   AAARGH!
    No, the file is not protected.
    Yes, I have tried saving as different formats.  (The "save as tiff file workaround" idea is  very time consuming and greatly degrades the quallity.)
    The font is shown as being: "Arial083.313"
    Something in the pdf program is recognizing the text, translating the 1's and 0's (that make up all computer files) into the letters that display on the screen that I can read and select with the mouse. So why can't that same "something" allow me to copy it?  So frustrating.
    Somebody please help.  If you can solve this problem you are awesome.

  • Function module to get the wbs element by entering Assignment No.

    Is there any Function module to get the wbs element by entering Assignment No.???????
    Thanks and regards
    Manish Thakur

    hi Manish,
    Just look at this function module.
    function wbs_assignment_check.
    ""Lokale Schnittstelle:
    *"  IMPORTING
    *"     REFERENCE(I_COMPONENT) LIKE  RESBDGET STRUCTURE  RESBDGET
    *"     REFERENCE(I_PSPEL) LIKE  RESB-PSPEL
    *"     REFERENCE(I_RFPNT) LIKE  AFVC-RFPNT
    *"  EXPORTING
    *"     REFERENCE(E_PSPEL) LIKE  RESB-PSPEL
      e_pspel = i_pspel.
    endfunction.
    hope this helps u
    REWARD IF USEFUL
    thanks and regards
    suma sailaja

  • Which PO and PR table can be used to get the WBS element field.

    Which PO and PR table can be used to get the WBS element field. Thanks.

    HI,
    In the PO the concerned field for WBS element shall be tracked in the Item details and the account assignment tab in PO.
    It shall be checked from EKKO table with PS_POSI feld.
    The same shall also be tracked in PR from EBAN table .please refer the account assignment tab in the PR item details.
    Hope this helps.
    Regards,
    Prasanna
    Award pls if helpful.

Maybe you are looking for

  • Podcast Account Photo won't update

    I have tried several times since my podcast account was approved to replace the photo for my account. When I go into settings it shows the new photo but the podcast page still shows the old one. I have cleared my brower cache and no luck. Advice?

  • Submit pdf form data to sql database

    Where I can find detailed information on the process of sending data from pdf form stored on the website to the sql database stored on web server ?? Where I can find some samples I could use to build my form and related script(s). Thanks for advice.

  • Photos into iMovie without using Aperture or iPhoto?

    Is there a way of accessing photos to bring into iMovie 08 without having to use Aperture or iPhoto? I use Lightroom (although I have both iPhoto and Aperture) and would rather not create new catalogs of my images.

  • Beginning in Oracle Report

    hello to all: good newly I am beginning to use the whole technology of Oracle, beginning with the JDeveloper that not wise anything and now you something, good now what I would like that they help me it is like I can begin to carry out reports to be

  • Where in the JTextArea code is line/word wrapping handled?

    Hi all-- I was making a custom renderer using a JTextArea, and was looking in the source code for JTextArea trying to figure out how it determines when to break a line given it's width and the current font...but I can't find it anywhere. I can find t