ShowModalDialog - Urgernt Help !!!

Hi,
I have a page with a button called "showList". When i click on this button, i need to show a pop up window. The dialog window is meant to show a search result table with two columns "name" and "description". The search result could contain say 100 records.
I know that we can have a onClientClick attribute set for the button "showList" directing the click event to a javascript and then the javascript function opening the dialog box. The search result needs to be obtained by querying the database. I have a method in my action tier / business tier which queries the table and retrieves the data.
So my question is what should be the URL that needs to be passed to the showModalDialog call?. It cannot be the name of the target JSP because only when the data is fetched can i give the control to the JSP for it to display it.
In MVC frameworks like struts we give url as <something>.do which then redirects the control to the ActionServlet, Action, DAO etc. But in JSPDynPage how can i call the specific event handling method in the JSPDynPage from the JavaScript?.
Any help is really appreciated .Thankyou.

hi Sivarama,
for showModalDialog, if the page for dialog is stored in the same folder with the parent window, then you just parse the page name for the dialog window.
if the page is stored in the different folder with the parent window then you need to parse the url in the bsp url
for parsing the page parameter, just add " ?<parameter name> = '<value>' "
hopes it helps
cheers

Similar Messages

  • Urgernt help: Login Error

    I'm not sure if it is the right place, but I have a problem with my ORACLE Forms Builder Version 9.0.4.0.19 (Production). I'm a begginer and I have a problem. When I'm connecting to the database, it mentioned ORA-12154: TNS: Could not resolve service name.
    I just fesh install my computer using oracle 10g database and oracle developer 10g, and I have tested my setting on SQLPlus, Net Manager as well as on Jdeveloper; all af them can connect to my database. But only ORACLE Forms Builder produces the error I mentioned previously.
    Could someone help me. I need this ASAP. Thank's

    check your tnsnames.ora in the <%ORACLE_HOME_DEVELOPER%>\network\admin directory.
    I assume you have multiple oracle homes but tnsnames.ora will not be the same for both homes;
    see also TNS_ADMIN key in registry ;
    look for "network admin oracle regedit" on internet

  • Cannot launch 2004mx apps after CS5 trial install

    Urgernt help please.
    Running 10.5.8 and after recently downloading adobe cs5 suite can no longer launch my 2004mx apps. Uninstalled cs5 trial and now cannot reinstall 2004xmx as installer fails to launch.
    Suggestions greatly apprecaited

    Since this is the Installation and Setup forum for Mac OS X v10.6 (Snow Leopard), it isn't a good place to post questions about issues with OS X 10.5 (Leopard) & third party applications.
    I suggest you post to Adobe's support forums or check Adobe's FAQ's & such.

  • ShowModalDialog and "Unauthorized Access" for Item Help Tips - APEX 2.2.0

    Hi, all,
    Well, I have a popup that is displayed using ShowModalDialog, and that popup has help tips for some items. When I view it on my computer, regardless of whether or not I'm logged into APEX or not, and regardless of what authentication scheme I use to log into my application, I can see the help tips.
    When another user I have testing tries to view the help tip, she gets "Unauthorized Access." It doesn't matter what she is logged into or how. However, if I send her the link to the page displayed in the ShowModalDialog popup and she opens it in a regular window, she can see the help just fine.
    I did see mentions of this elsewhere in the forums. Is this Bug #5469015 : Authentication Fails On Popup Item Help Pages? If so, is there a workaround?
    Thanks!
    Don

    Thanks for all your help Scott
    I've added the -PORTAL_SSO- .....
    After this I've had a new problem same to this: Re: SSO Authentication Not Working
    "get the error below and it then directs me to http://hostx/htmldb/f? and the "p=" is missing"
    But after a lot of tests I discovered where was the problem: "The apache configuration for the proxy!!"
    This an extract from the installation doc :
    SetEnv force-proxy-request-1.0 1
    ProxyPass /htmldb http://127.0.0.1:8080/htmldb
    ProxyPassReverse /htmldb http://127.0.0.1:8080/htmldb
    ProxyPass /i http://127.0.0.1:8080/i
    ProxyPassReverse /i http://127.0.0.1:8080/i
    ProxyPass /sys http://127.0.0.1:8080/sys
    ProxyPassReverse /sys http://127.0.0.1:8080/sys
    where you replace 127.0.0.1 with the name OR ip address of your XE installation. 8080 is the default http port of your XE installation. "
    Well, I used the IP ADDRESS and in the @regapp > listener_token the NAME!!! (HTML_DB:servername.domain:80)
    I changed the IP ADDRESS with the NAME, restarted the httpd service and now all works fine.
    Emanuele

  • MSEG select performance problem - Please help me (URGERNT)

    I have the following SELECT stmt which is taking more time to execute......Kindly help me how to improve performance ...
    YOUR HELP IS HIGHLY APPRECIATED....
      SELECT  a~mblnr
                    a~matnr
                    a~werks
                    a~charg
                    a~lifnr
                    a~bualt
                    a~erfmg
                    a~ebeln
                    a~ebelp
                    b~budat
                   INTO CORRESPONDING FIELDS OF TABLE it_mseg_mkpf
                    FROM mseg AS a INNER JOIN mkpf AS b
                      ON amblnr EQ bmblnr
                   WHERE a~matnr IN s_matnr
                     AND a~werks IN s_werks
                     AND a~lifnr IN s_lifnr
                     AND a~bwart EQ p_bwart
                     AND ( aebeln NE ' ' AND aebeln IN s_ebeln )
                     AND b~budat IN s_budat.
      IF NOT it_mseg_mkpf IS INITIAL.
        SELECT matnr bismt zzshelf_life FROM mara INTO  TABLE it_mara
        *          FOR ALL ENTRIES IN it_mseg_mkpf*
        *          WHERE matnr = it_mseg_mkpf-matnr.*
      ENDIF.
      IF NOT it_mara IS INITIAL.
        SELECT matnr maktx FROM makt INTO TABLE it_makt
        *                         FOR ALL ENTRIES IN it_mara*
        *               WHERE matnr = it_mara-matnr.*  ENDIF.
    Thanks in advance,
    Regards,

    Hi Sam,
    Try this.
    SELECT a~mblnr
    a~matnr
    a~werks
    a~charg
    a~lifnr
    a~bualt
    a~erfmg
    a~ebeln
    a~ebelp
    b~budat
    INTO CORRESPONDING FIELDS OF TABLE it_mseg_mkpf
    FROM mkpf AS b INNER JOIN mseg AS a  (although result will be same by reversing this join it's better to keep header on left of the join)
    ON amblnr EQ bmblnr and amjahr EQ bmjahr
    WHERE a~matnr IN s_matnr
    AND a~werks IN s_werks
    AND a~lifnr IN s_lifnr
    AND a~bwart EQ p_bwart
    AND ( aebeln NE ' ' AND aebeln IN s_ebeln )
    AND b~budat IN s_budat.
    (if possible, give mjahr in you selection screen and specify in where condition)
    IF NOT it_mseg_mkpf [ ]  IS INITIAL. (previous condition will check header line only)
    SELECT matnr bismt zzshelf_life FROM mara INTO TABLE it_mara
    FOR ALL ENTRIES IN it_mseg_mkpf
    WHERE matnr = it_mseg_mkpf-matnr
    ENDIF.
    IF NOT it_mara[ ]
      IS INITIAL.
    SELECT matnr maktx FROM makt INTO TABLE it_makt
    FOR ALL ENTRIES IN it_mara
    WHERE matnr = it_mara-matnr.
    ENDIF.
    Regards,
    Mohaiyuddin

  • Urgent: Sessions problem pls help me

    Hi all,
    Its already late to post this problem.pls help me urgently.
    I have a servlet & two jsp's. first i request servlet, it processes something and forwards request to my first jsp. In that jsp on a button click, i'm displaying a new popup by calling showModalDialog. this dialog gets data from the same servlet but it forwards to my second jsp.(second jsp can be seen in dialog)
    Now if i submit form from my second(dialog) jsp, the servlet reports that session has expired. I tried a lot but invain. any one who helps me is appreciated well by all of our forum.
    waiting 4 u r reply,

    It could be that you have cookies turned off and you're not using URL Rewriting.
    In J2EE, the first time your browser makes a request to the server, the server responds and appends a SESSION_ID parameter to the request as well as storing a cookie with the SESSION_ID.
    The second time your browser makes a request, the server checks for the cookie. If it doesn't exist it checks for the parameter. If neither exist the server assumes its the first time your browser has made a request and behaves as describe in the previous paragraph.
    In your case when you submit the form if you have disabled cookies and the action attribute doesn't have the SESSION_ID paramter appended to the url, the browser will assume it's a first request. The user will not be logged in, hence your session has expired error.
    To fix this you need to encode the URL in your JSP. You can use the struts html:rewrite tag or the HttpServletReponse.encodeURL method, or if you're using JSP 2.0 the JSTL c:url tag.

  • SP.UI.ModalDialog.showModalDialog ms-dialogBody

    Where can I find any SDK-type advice, guidance on how best to use built-in SharePoint 2013 CSS classes such as ms-dialogBody in the aspx page that my Custom Ribbon Bar action launches via SP.UI.ModalDialog.showModalDialog?
    The rest of the application uses Twitter Bootstrap CSS classes, but I find that, when using showModalDialog, those classes fight with and conflict with the autoSize:true option of showModalDialog, which is why I am thinking that, in
    this one case, I should NOT use the Bootstrap classes on my <div> and other elements within the aspx page launched by showModalDialg but, instead, try to use some of the comes-with-SharePoint-2013 ones, like ms-dialogBody. The problem is, I have not
    found any documentation, tutorials, or other suitable forms of guidance on how to use them.
    If you think development is tough now, think how hard it was using punched cards :-)

    Hi,
    According to your post, my understanding is that you wanted to know the css classes about the built-in modal dialog in SharePoint.
    .ms-dialog applied to HTML element that is the start of the dialog box contents within the iFrame; child of the 'ms-dlgFrame' IFRAME element.
    Only used as a parent selector in descendent selector style statements.
    http://sharepointexperience.com/csschart/csschart.html
    There are two articles about the dialog box styling, you can have a look at them.
    http://www.broculos.net/2011/08/sharepoint-2010-branding-dialog-box.html#.U6JCSvmSzkI
    http://blog.sharepointexperience.com/2012/05/change-dialog-box-background/
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • ShowModalDialog - session lost

    Hi All,
    Using showModalDialog to open a pop up window the session value getting lost. How to resolve this?
    window.showModalDialog(url,"","resizable:no;help:no;dialogHeight:17;dialogWidth:14")- vignesh

    Hmmm...you may be using a per browser cookie that would disallow session from other browser instances/windows. To confirm, login using a browser and then access a book marked url using another window. If it does not work, that would confirm it.
    As a work around you can attempt to 'force rewrite' the url on the server side and use the rewritten url to open the modal dialog. Same for all requests originating from this window. How to achieve that depends on your server.
    ram.

  • F1 help for radio buttons

    Hello All,
       I am getting F1 help when the radio buttons are in display mode but i am not getting F1 help when the buttons are in input mode. what cud be the problem?
    can anyone please help me. required urgerntly
    Thanks & Regards
    Amarender Reddy B

    Hi,
        use  event
       at selection-screen on  HELP-REQUEST FOR 
       rb_radio                                                                               
    As with the addition ON VALUE-REQUEST the field psel_low_high  
    is either the name of a report parameter or of the form sel-LOW
    or sel-HIGH, where sel is the name of a selection criterion.   
    When the user presses F1 on the relevant field, the subsequent 
    processing block is executed. You can thus implement a         
    self-programmed help for the input/output fields of the        
    selection screen. If the program contains such an event and the
    user presses F1, the system processes this rather than         
    displaying the documentation of the Dictionary field - even if 
    the report parameter or the selection option with LIKE or FOR  
    points to a Dictionary field.                                  
    Regards
    amole

  • Questions about function ---- showModalDialog()

    <html>
    <head>
    <meta charset="UTF-8">
    </head>
    <body>
    <h1>This is indexHtml!</h1>
    <button onclick="clickMe()">click Me!</button>
    </body>
    <script type="text/javascript">
    function clickMe() {
    var paramObj = new Object();
    paramObj.parentWin = "1111";
    paramObj.showtype = "2222";
    paramObj.definedate = "33333";
    paramObj.valueColName = "5555";
    paramObj.nowDate = "666666";
    paramObj.oldEffDate = "77777";
    var url = "./test.html";
    var rtn = window.showModalDialog(url, paramObj);
    </script>
    </html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>test</title>
    </head>
    <body>
    <h2>This is testHtml!!</h2>
    <button onclick="clickMe()">click Me!</button>
    </body>
    <script type="text/javascript">
    window.onload = function() {
    var gParam = window.dialogArguments;
    alert(gParam);
    function clickMe() {
    var paramObj = new Object();
    paramObj.parentWin = "1111";
    paramObj.showtype = "2222";
    paramObj.definedate = "33333";
    paramObj.valueColName = "5555";
    paramObj.nowDate = "666666";
    paramObj.oldEffDate = "77777";
    var url = "./test2.html";
    var rtn = window.showModalDialog(url, paramObj);
    </script>
    </html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>test2</title>
    </head>
    <body>
    <h2>This is test2Html!</h2>
    </body>
    <script type="text/javascript">
    window.onload = function() {
    var aaa = window.dialogArguments;
    alert(aaa);
    </script>
    </html>
    Codes above are index.html,test.html,test2.html;
    When i run the 'index.html' in ie10,it runs correctly;
    but in ie11,it throws undefined, why?
    is something wrong with my ie11?
    please Help!!!!!
    thankyou!
    ----my email:[email protected]

    Some web application modal dialog boxes don't work correctly in Internet Explorer 11 after you install update 3008923 (17 Dec-14)
    http://support2.microsoft.com/kb/3025390/en-us
    ~Robear Dyer (PA Bear) MS MVP-Windows Client since 2002 Disclaimer: MS MVPs neither represent nor work for Microsoft

  • Htmlb is undefined!  help me !

    Hi Guys,
    I met a issue in JspDynpro development.
    my code :
    <%@ taglib uri= "tagLib" prefix="hbj" %>
    <jsp:useBean id="acceptBean" scope="session" class="com.ddd.AcceptBean" />
    <% String inputFieldId=null; %>
    <hbj:content id="myContext"  >
      <hbj:page title="PageTitle">
       <hbj:form id="myFormId" >
        <hbj:inputField id="returninput"
                        value="L"
                        type="STRING"
                        visible="false" jsObjectNeeded="true" >
                        <%  inputFieldId=myContext.getParamIdForComponent(returninput);%>
        </hbj:inputField>
               <script language="Javascript">
    var returnvalue = 'N';
    returnvalue = window.showModalDialog("<%=acceptBean.getUrl()%>","","dialogWidth:700px;dialogHeight:500px");
    document.all("<%=inputFieldId%>").value= returnvalue;
    alert("htmlbevent " +htmlbevent);
    htmlbevent.cancelSubmit=false;
    </script>     
       </hbj:form>
      </hbj:page>
    </hbj:content>
    the error is htmlbevent is undefined.
    Could you please tell me how to resolve that? Thank you!
    Best Regards,
    Hardy

    Hi Hardy,
    Check your portalapp.xml file to ensure you have the following in the right places:
    <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/> within the <application-config> and </application-config> tags
    <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/> within the <component-profile> and </component-profile>
    and remove the following:
            <property name="ComponentType" value="jspnative"/>
            <property name="JSP" value="pagelet/test.jsp"/>
    hope this helps...

  • Resolve error in F4 help (anyone from SAP??)

    Hi all,
      I tried with this code for F4 help, but i am getting an error. can anyone help me out solving the matter. Is there any way to do F4 help without using MVC and javascript directly in page with flow logic?
    <u><b>CODE</b>:</u>
    <htmlb:inputField id= "Partner"
                      width="100%"
                      showHelp    = "TRUE"
                      onValueHelp =
    "ShowF4KeyAndValueHelp2(<%= mpage_context->m_page_id %>_Partner, 'BUT000-PARTNER')"
                       value       = "//BuPaSearch/Partner " />
    <b><u>Error:</u></b>
    Exception Class CX_SY_REF_IS_INITIAL
    Error Name 
    Program CL_HTMLB_INPUTFIELD===========CP
    Include CL_HTMLB_INPUTFIELD===========CM00B
    ABAP Class CL_HTMLB_INPUTFIELD
    Method RESOLVE_MODEL_BINDING
    Line 95 
    Long text An attempt was made to execute a dynamic method callon an initial(NULL-) object reference. The reference must refer to an object.

    <b>parent.htm:</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <head>
    <script language="javascript">
    function ShowDialog()
    window.showModalDialog('wrapper.htm',window,'dialogHeight=420px,dialogWidth=600px');
    </script>
    </head>
    <htmlb:content design="design2003" >
      <htmlb:page title="Parent Page " >
        <htmlb:form id="form1" >
          <htmlb:tray id                = "tray"
                      width             = "100%"
                      hasMargin         = "false"
                      title             = "Enter Data"
                      hasContentPadding = "true" >
            <htmlb:label for      = "sales_org"
                         text     = "Partner"
                         required = "true"
                         design   = "HEADER1" />
            <htmlb:inputField id          = "partner"
                              showHelp    = "true"
                              onValueHelp = "ShowDialog()"
                              type        = "STRING"
                              doValidate  = "TRUE"
                              value       = "<%= partner %>" />
          </htmlb:tray>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Wrapper.htm</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title="Wrapper to cover " >
        <htmlb:form>
          <iframe  align="center"
                        id="iframe_body"
                        height="350"
                        scrolling="no"
                        width="100%"
                        frameborder="0"
                        name="body"
                        src="sales_org.htm" >
              </iframe>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Sales_org.htm  layout</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <head>
    <script language="JavaScript" type="text/javascript">
              function pass_data()
                   if (top.window.dialogArguments) {
                   if ( document.form1.row_sel.value )
                    top.dialogArguments.document.form1.sorg.value=document.form1.row_sel.value;
                    top.close();
              </script>
    </head>
    <htmlb:content design="design2003" >
      <htmlb:page title=" " >
        <htmlb:form id="form1" >
          <htmlb:tableView id              = "tab01"
                           table           = "<%= details %>"
                           visibleRowCount = "14"
                           width           = "100%"
                           design          = "ALTERNATING"
                           footerVisible   = "TRUE"
                           onRowSelection  = "my_event"
                           selectionMode   = "SINGLESELECT" >
       <htmlb:tableViewColumns>
                      <htmlb:tableViewColumn title      = "Business Partner "
                                             columnName = "partner"
                                             wrapping   = "True" >
                      </htmlb:tableViewColumn>
                   </htmlb:tableViewColumns>
          </htmlb:tableView>
          <htmlb:inputField id      = "row_sel"
                            value   = "<%= rowselected %>"
                            visible = "true" />
          <%
      if rowselected is not initial.
          %>
          <script type="text/javascript">
            pass_data(); </SCRIPT>
          <%
      clear rowselected.
      endif.
          %>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Oninitialization event:</b>
    select partner from zcrmm_buag into corresponding fields of table details.
    <b>Oninputprocessing:</b>
    DATA: tv TYPE REF TO cl_htmlb_tableview.
    tv ?= cl_htmlb_manager=>get_data(
                          request      = runtime->server->request
                          name         = 'tableView'
                          id           = 'tab01' ).
    IF tv IS NOT INITIAL.
      DATA: tv_data TYPE REF TO cl_htmlb_event_tableview.
      tv_data = tv->data.
      IF tv_data->selectedrowindex IS NOT INITIAL.
        FIELD-SYMBOLS: <row> LIKE LINE OF details.
        READ TABLE details INDEX tv_data->selectedrowindex ASSIGNING <row>.
       partner = <row>-partner.
      ENDIF.
    ENDIF.
    <b>Note: If i uncomment the above line, it gives error...field symbol has not yet been assigned.</b>

  • Want to hide titlebar in showmodaldialog()

    Want to hide or remove titlebar while using showmodaldialog()..
    Need help ....

    sir,
    Its need for my project ,need to populate an html file through this showmodaldialog("x.html",object,properties) using this i am getting the title bar ,want to remove the titlebar,As I am placing the close button in the HTML itself....need your help regarding this....

  • Safari crashed by showModalDialog

    Hi,
    Our web based application crashes in mac safari. I have narrowed down to modal dialog created using showModalDialog is the root cause.
    Trying a simple modal dialog given in the link below crashes the Safari.
    Crash occur when i click on the 'x' to close the showModalDialog popup. Basically, at this point the return value from the dialog is null
    https://developer.mozilla.org/samples/domref/showModalDialog.html
    Here is the trace (from my app)
    Process: Safari [179]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.3 (5531.9)
    Build Info: WebBrowser-55310900~1
    Code Type: X86 (Native)
    Parent Process: launchd [116]
    Interval Since Last Report: 375 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 308 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2009-09-12 10:07:49.687 -0400
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 3CB7F1EC-24D1-4B46-8111-69690122AFD4
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000004
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.JavaScriptCore 0x9048cfca ctiopeq + 122
    1 ??? 0x00791be8 0 + 7937000
    2 com.apple.JavaScriptCore 0x9037ff68 JSC::Interpreter::execute(JSC::ProgramNode*, JSC::ExecState*, JSC::ScopeChainNode*, JSC::JSObject*, JSC::JSValue*) + 552
    3 com.apple.JavaScriptCore 0x9036c409 JSC::evaluate(JSC::ExecState*, JSC::ScopeChain&, JSC::SourceCode const&, JSC::JSValue) + 377
    4 com.apple.WebCore 0x93b54ff4 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&) + 324
    5 com.apple.WebCore 0x93b54e21 WebCore::FrameLoader::executeScript(WebCore::ScriptSourceCode const&) + 161
    6 com.apple.WebCore 0x93c84866 WebCore::FrameLoader::executeScript(WebCore::String const&, bool) + 374
    7 com.apple.WebCore 0x93c370c5 WebCore::FrameLoader::executeIfJavaScriptURL(WebCore::KURL const&, bool, bool) + 213
    8 com.apple.WebCore 0x93c37275 WebCore::FrameLoader::urlSelected(WebCore::ResourceRequest const&, WebCore::String const&, ***::PassRefPtr<WebCore::Event>, bool, bool, bool) + 85
    9 com.apple.WebCore 0x93c3bd50 WebCore::HTMLAnchorElement::defaultEventHandler(WebCore::Event*) + 1472
    10 com.apple.WebCore 0x93b01a20 WebCore::Node::dispatchGenericEvent(***::PassRefPtr<WebCore::Event>) + 1328
    11 com.apple.WebCore 0x93b013ae WebCore::Node::dispatchEvent(***::PassRefPtr<WebCore::Event>, int&) + 222
    12 com.apple.WebCore 0x93c18780 WebCore::Node::dispatchMouseEvent(WebCore::AtomicString const&, int, int, int, int, int, int, bool, bool, bool, bool, bool, WebCore::Node*, ***::PassRefPtr<WebCore::Event>) + 656
    13 com.apple.WebCore 0x93c184b5 WebCore::Node::dispatchMouseEvent(WebCore::PlatformMouseEvent const&, WebCore::AtomicString const&, int, WebCore::Node*) + 165
    14 com.apple.WebCore 0x93c17c06 WebCore::EventHandler::dispatchMouseEvent(WebCore::AtomicString const&, WebCore::Node*, bool, int, WebCore::PlatformMouseEvent const&, bool) + 118
    15 com.apple.WebCore 0x93c26827 WebCore::EventHandler::handleMouseReleaseEvent(WebCore::PlatformMouseEvent const&) + 791
    16 com.apple.WebCore 0x93c26412 WebCore::EventHandler::mouseUp(NSEvent*) + 386
    17 com.apple.WebKit 0x91d9dd3f -[WebHTMLView mouseUp:] + 271
    18 com.apple.AppKit 0x9597e1d1 -[NSWindow sendEvent:] + 5539
    19 com.apple.Safari 0x000454b4 0x1000 + 279732
    20 com.apple.AppKit 0x9594acd9 -[NSApplication sendEvent:] + 2941
    21 com.apple.Safari 0x00030d6f 0x1000 + 195951
    22 com.apple.AppKit 0x958a862f -[NSApplication run] + 847
    23 com.apple.AppKit 0x95875834 NSApplicationMain + 574
    24 com.apple.Safari 0x00002c92 0x1000 + 7314
    Thread 1:
    0 libSystem.B.dylib 0x9075a46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90784dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x93a9cd84 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x93a98bb9 WebCore::IconDatabase::iconDatabaseSyncThread() + 185
    4 libSystem.B.dylib 0x90784155 pthreadstart + 321
    5 libSystem.B.dylib 0x90784012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x90753286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9075aa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9068e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9068ec78 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x90197298 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x90784155 pthreadstart + 321
    6 libSystem.B.dylib 0x90784012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x90753286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9075aa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9068e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9068ec78 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00025beb 0x1000 + 150507
    5 com.apple.Safari 0x00025914 0x1000 + 149780
    6 com.apple.Safari 0x0002589f 0x1000 + 149663
    7 libSystem.B.dylib 0x90784155 pthreadstart + 321
    8 libSystem.B.dylib 0x90784012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x907a26fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x90784155 pthreadstart + 321
    2 libSystem.B.dylib 0x90784012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x90753286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9075aa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9068e04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9068ec78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x97382530 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x9731ee0d -[NSThread main] + 45
    6 com.apple.Foundation 0x9731e9b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x90784155 pthreadstart + 321
    8 libSystem.B.dylib 0x90784012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x9075a46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90784dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x9034b5d1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.Safari 0x00115e6f 0x1000 + 1134191
    4 com.apple.Safari 0x00115f5d 0x1000 + 1134429
    5 com.apple.Safari 0x00040cbd 0x1000 + 261309
    6 com.apple.Safari 0x00040c3d 0x1000 + 261181
    7 libSystem.B.dylib 0x90784155 pthreadstart + 321
    8 libSystem.B.dylib 0x90784012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9075a46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x90784dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x9034b5d1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x93b05416 WebCore::LocalStorageThread::localStorageThread() + 294
    4 libSystem.B.dylib 0x90784155 pthreadstart + 321
    5 libSystem.B.dylib 0x90784012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x907532e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x907852af pthread_condwait + 1244
    2 libSystem.B.dylib 0x90786b33 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x90dc2d96 TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x90dc2b76 TSWaitOnSemaphoreCommon + 422
    5 ...ple.CoreServices.CarbonCore 0x90df39ac TimerThread + 74
    6 libSystem.B.dylib 0x90784155 pthreadstart + 321
    7 libSystem.B.dylib 0x90784012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x00791bbe ecx: 0x00000000 edx: 0x00000000
    edi: 0x0e1f6fc0 esi: 0x00000000 ebp: 0x0d5dc0c8 esp: 0xbfffecd0
    ss: 0x0000001f efl: 0x00010246 eip: 0x9048cfca cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000004
    Binary Images:
    0x1000 - 0x278ff2 com.apple.Safari 4.0.3 (5531.9) <bc4118cf33711aa425d1d0132bff092e> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d8000 - 0x2e7ffc SyndicationUI ??? (???) <41a700c51ee0df16399861e1417fca54> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x99c5000 - 0x9bccfef com.apple.RawCamera.bundle 2.0.15 (471) <557c94fbd7c15219746393464a79cf87> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xbb20000 - 0xbb21ff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xc1e9000 - 0xc1eeff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xddc3000 - 0xddc3ffe com.apple.JavaPluginCocoa 12.0.0 (12.0.0) <b006e0f18a7f657910d5f1e86e8dcc02> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0xddc9000 - 0xddd0ffd com.apple.JavaVM 12.0.2 (12.0.2) <60348890c8bd35fb66de58816157c904> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0xe059000 - 0xe078fed com.apple.audio.CoreAudioKit 1.5 (1.5) <585f5ec95dc8f1efe51d820be84d53a6> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0xe2b7000 - 0xe2c5feb libSimplifiedChineseConverter.dylib ??? (???) <2375d7a6fbb499c1155279b4a36fb29a> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xe2ca000 - 0xe2dcfff libTraditionalChineseConverter.dylib ??? (???) <5696ca04a2220f3a298ef68368c70bc2> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xedbf000 - 0xeddbfe7 libPDFRIP.A.dylib ??? (???) <f71505717634b5aaccbad540e36f3dde> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0xeed5000 - 0xf4f8fef +com.macromedia.Flash Player.plugin 10.0.22 (1.0.4f872) <860692a215f054b7b9474b410abeb530> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <e01a60bf8cf997a498edb8a075647ee0> /usr/lib/dyld
    0x90003000 - 0x90012fff libsasl2.2.dylib ??? (???) <2091a1973f23f66ea9b377d43daf50ea> /usr/lib/libsasl2.2.dylib
    0x90194000 - 0x90238fec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90239000 - 0x90245ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90246000 - 0x9027dfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9027e000 - 0x9027efff com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9027f000 - 0x9030bff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9030c000 - 0x9032afff libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x90337000 - 0x90337ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90342000 - 0x90342ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90343000 - 0x904d3fff com.apple.JavaScriptCore 5531 (5531.5) <3679fe16241dae6f730a39c16c04e30f> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x904d4000 - 0x9054eff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9054f000 - 0x9058dfff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9058e000 - 0x9061aff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9061b000 - 0x9074efef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90752000 - 0x908b9ff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x908ba000 - 0x908baffe com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x908bb000 - 0x908f1fef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x908f2000 - 0x90a44ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90a59000 - 0x90a71ff7 com.apple.CoreVideo 1.6.0 (20.0) <dd60118bac9aefaf88d9ab44558f05c4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90a72000 - 0x90a8dffb libPng.dylib ??? (???) <0d6b991afc831ea06f2958e5933d33dd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90a8e000 - 0x90a92fff libGIF.dylib ??? (???) <7714ae24eb64b48fa719fb99bcbe34f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90a93000 - 0x90aa9fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90aaa000 - 0x90be2fe7 com.apple.imageKit 1.0.2 (1.0) <c6dd88d87997153684f4aa468512c1a8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90bfb000 - 0x90d34ff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x90d35000 - 0x90d45fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90d95000 - 0x90d98fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90d99000 - 0x91073ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91074000 - 0x91107ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91108000 - 0x91159ff7 com.apple.HIServices 1.7.0 (???) <67988718780a0a367b1bde62f5a67c4b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9115a000 - 0x91194ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91195000 - 0x911befff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x911bf000 - 0x911eefe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x911ef000 - 0x912a9fe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x912aa000 - 0x9135afff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9135b000 - 0x91360fff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91361000 - 0x913e0ff5 com.apple.SearchKit 1.2.1 (1.2.1) <f28f8dd0f155a6453411a0c9b5702764> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x914ab000 - 0x914b2ff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x914b3000 - 0x914d2ffa libJPEG.dylib ??? (???) <b822342bcc764c83d4557a8b67fa0c1c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x914d3000 - 0x914d3ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91526000 - 0x9184cfe2 com.apple.QuickTime 7.6.2 (1327) <3754e41d846b7948f96c9ec4c690b520> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91880000 - 0x918c2fef com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x918c3000 - 0x91902fef libTIFF.dylib ??? (???) <d4bcc9b9c508e53849d2d46bb6900922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91903000 - 0x919b5ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x919b6000 - 0x919bdffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x919be000 - 0x91a75ff3 com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91a76000 - 0x91a81fe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91a82000 - 0x91a84ffd com.apple.CrashReporterSupport 10.5.7 (161) <dc6dfd99e332f53791f5c0a4e6889cb3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x91a85000 - 0x91aa2ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91aa3000 - 0x91c74ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91c75000 - 0x91d40fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91d7e000 - 0x91e59fe7 com.apple.WebKit 5531 (5531.9) <36112647223b999a033bc2f740277948> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91e71000 - 0x9222ffea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92230000 - 0x922a2fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x922a3000 - 0x922b2ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <182986b74247b459b2a67a47071bdc6b> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x922b3000 - 0x922bafff com.apple.agl 3.0.9 (AGL-3.0.9) <bc62de7d16827bd12a2cb1016aedfcdc> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x922c0000 - 0x9243ffff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92440000 - 0x92546ff7 com.apple.PubSub 1.0.4 (65.11) <ef090a992adb71fb01ddfef90754ca49> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92547000 - 0x92628ff7 libxml2.2.dylib ??? (???) <9a5d410de57c87f71e2d530a1859b897> /usr/lib/libxml2.2.dylib
    0x93605000 - 0x9360dfff com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9360e000 - 0x9360effd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9360f000 - 0x939acfef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x939ad000 - 0x93a0affb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x93a3b000 - 0x93a3bffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93a3c000 - 0x93a95ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93a96000 - 0x94322fff com.apple.WebCore 5531 (5531.9) <fdb731afe66ea9ae2f4580dead0b5b53> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x94323000 - 0x9462bfff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9462c000 - 0x9463affd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x9463b000 - 0x94685fe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94686000 - 0x94688ff5 libRadiance.dylib ??? (???) <82d606c49f5dc77231f9d0e2be9ed6ab> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94689000 - 0x946e3ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x946e4000 - 0x94716fff com.apple.LDAPFramework 1.4.5 (110) <0625b4f70c28b2f239ca088edaf9cf0f> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94717000 - 0x94718ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x94719000 - 0x947a3fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x947a4000 - 0x94960ff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94bca000 - 0x94be2fff com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94cd8000 - 0x94cdefff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94cdf000 - 0x950effef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x950f0000 - 0x950f0ff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x950f1000 - 0x95791fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95792000 - 0x957c3ffb com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x957c4000 - 0x957d4ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <bc7eb703ddc37bf85adf93e35efd3947> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x957d5000 - 0x957dafff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x957db000 - 0x957f0ffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x957f1000 - 0x9586efef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9586f000 - 0x9606dfef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9606e000 - 0x96092feb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x96099000 - 0x96099ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9609a000 - 0x960e9fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x960ea000 - 0x96117feb libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96118000 - 0x9625eff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <b407f06ff9b6893899e2e399cb65c953> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9625f000 - 0x962e6ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x962e7000 - 0x962ebfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x962ec000 - 0x9630aff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9630b000 - 0x9634bfff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x964e1000 - 0x964e3fff com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x964f1000 - 0x964f1ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x965d4000 - 0x966b4fff libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x966b5000 - 0x966effe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x966f0000 - 0x96719fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x9671a000 - 0x96727fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96728000 - 0x9678effb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9678f000 - 0x96836feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x96837000 - 0x96840fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96841000 - 0x96869ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9686a000 - 0x96895fe7 libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x96896000 - 0x96913feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96949000 - 0x96949ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9694a000 - 0x96e1bfbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96e1c000 - 0x96e78ff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96e79000 - 0x96f40ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96f41000 - 0x96f48fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x96f49000 - 0x96f8afe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96f8b000 - 0x97073ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97074000 - 0x970bdfef com.apple.Metadata 10.5.2 (398.25) <7eb2df3e510cd308e91a6cf6d8e9fba5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x970be000 - 0x970e2fff libxslt.1.dylib ??? (???) <6a58a8724941e8a0cfeb0cae28ea3f37> /usr/lib/libxslt.1.dylib
    0x970e3000 - 0x970efff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x97207000 - 0x97211feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x97212000 - 0x972a5fff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x97314000 - 0x97590fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x975d6000 - 0x975dbfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <da6fd0a6c621ca215d5067f0dcc13491> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <997aed2176bfae168cff75a2f4c047be> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <547c6466f72d7b3ae8a69ffb7780939d> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    I have a similar problem with the latest version of safari.When I use window.showModalDialog all works fine until I try to close the modalDialog.
    window.close() or parent.window.close() result in safari crashing EVERYTIME... Any ideas?
    this happens on mac and pc running the latest version of Safari.

  • Help with modal dialog returning a value to the calling page

    Greetings,
    Apex Version: 4.1.0.0.32
    What I am trying to do is to create a modal dialog that is called from a form page. The dialog will present the user with an IR report that will allow the him to select a row and return a value from that row to a field on the calling page. I have it working in Firefox, but I get an error using IE 8. I hope someone can show me why it is not working in IE.
    Here is how I am doing it:
    From the calling page:
    Created a button
         Action: Redirect to URL
         URL Target: javascript:var rc = window.showModalDialog('f?p=&APP_ID.:70:&SESSION.::&DEBUG.:::','','resizable:yes;center:yes;dialogWidth:1000px;dialogHeight:500px;');
    On the called page:
    The called page is an IR report where the query returns this as one of the columns:
    *(Note: I had to put a dot '.' in front of the onclick to get it to show in this thread. It is not there in my real code.)*
    select
    <a href="#" name="z" style="color:blue; text-decoration:underline;" .onclick="javascript:passBack(''' || LOT_NO ||''');">Select</a>' SelectThis
    , column1
    , column2
    from sometablename;This resolves the anchor to:
    <a .onclick="javascript:passBack('232158');"  href="#">Select</a>Here is the Javascript function that is called from the anchor onclick:
    function passBack(passVal1)
      opener.document.getElementById("P75_ITEM1").value = passVal1;
      close();
    }When I run this in Firefox, it works as expected. I click on the button on the parent page. The modal dialog is opened and the IR report is displayed. I click on one of the links in the report and it returns the correct value back to the calling page and closes the modal dialog.
    When I run it in IE8, it fails. I click on the button on the parent page. The modal dialog is opened and the IR report is displayed. I click on one of the links in the report and I get this error: “opener.document is null or not an object”.
    I hope that is clear and that someone can help.
    Thanks
    Larry

    A quick google search determines that window.opener doesn't exists when using window.showModalDialog
    Suggestions range from using window.open instead of window.showModalDialog to using dialogArguments instead of window.opener
    Try the following:
    In the parent page define a getPopupValue() function:
    function getPopupValue(){
       var dr =  window.showModalDialog('f?p=&APP_ID.:70:&SESSION.::&DEBUG.:::','','resizable:yes;center:yes;dialogWidth:1000px;dialogHeight:500px;');
        if ( (dr != undefined) && (dr != '') && (dr != false) ){
         $x("P75_ITEM1").value = dr;
    }Change the button url to call the function:
    javascript:getPopupValue(); On the popup page change the passback function to:
    function passBack(passVal1)
      returnValue = passVal1;
      close();
    }

Maybe you are looking for

  • Class not found error afer loading classes to oracle

    hi i have loaded quite a few jars into oralce 11g databse created a java stored function and executed it some times it works... and hits the java front end environment... we are hitting a servlet.. and recording some output statements .. in the funct

  • Stanza is not working since I updated

    I have Stanza, the book app on my iPhone 3GS, but ever since I updated my iPhone it now comes up with the following error message; Unhandled exception You can try to continue but the application may be unstable. Debug details follow: Signal 11 was ra

  • Created mailbox for new user in Exchange 2010, user not visible in AD.

    Hi everyone! This morning I created a mailbox for a new user on my Exchange 2010 box. Everything works fantastically but I am unable to view the new user in AD except by searching.  If I run a search the results say the user exists in my Users contai

  • Exception in thread main

    Hi, I have written a small program to retrieve info from a database, but continue to get an error when running the code. Exception in thread "main" Java.Lang.NoClassDefFoundError: TPMCConnection/class. Please assist. import java.sql.*; public class T

  • BI InfoObject Transformation / DTP

    Good day all - I haven't posted a question in awhile, so here goes...... We have an InfoObject that requires a new load defined from a Flat File Source.  We also have a DSO with the exact same technical name as the InfoObject. I defined the InfoObjec