Cross browser issue using ajax report pull

Hi,
I have an application working using ajax report pull.
Entire application is based on ajax and its currently released.
Its performance is good. It works fine with mozilla but in ie,
links and buttons are not working.
my code is as follows:
var container = document.getElementById("divlayer");
     container.innerHTML="";
     var l_Val = document.getElementById('P15_ID').value;
     var l_Val1 = document.getElementById('P15_REGION').value;
     var l_Val2 = document.getElementById('P15_COUNTRY').value;
var get = new htmldb_Get(null,html_GetElement('pFlowId').value,null,10);
     get.add('P15_GSI_PARTY_ID',l_Val);
     get.add('P10_ID',l_Val);
     get.add('P10_REGION',l_Val1);
     get.add('P10_COUNTRY',l_Val2);
     get.add('P10_ROWS',l_Val3);
     get.add('P15_REGION',l_Val1);
     get.add('P15_COUNTRY',l_Val2);
     get.add('P15_ROWS',l_Val3);
     gReturn = get.get(null,'<htmldb:BOX_BODY>','</htmldb:BOX_BODY>');
     get = null;
document.getElementById("divlayer").style.visibility='visible';
document.getElementById("divlayer").style.display='block';
var elem = document.createElement('div');
     elem.id='d1';
elem.innerHTML=gReturn;
     container.appendChild(elem);
The links with doSubmit is not submitting to the same page in ie.
Please help me.
Thanks,
Niveditha

Hello Niveditha,
There're some differences in browsers... so yes it's possible that it doesn't work with the same code in another browser. The good news is that most of time there're workaround.
When I look at your code, you could already change document.getElementById() by $x(), which is doing the same, but comes from the APEX framework.
Do you have an idea where it fails in IE? Are you using the Developer Toolbar? Maybe that gives you more insights. You could also put some alert('hello 1'); in your code to see what's happening and how far it comes.
If you put it on apex.oracle.com we can have a look into more detail.
Dimitri
-- http://dgielis.blogspot.com
-- http://apex-evangelists.com

Similar Messages

  • Browser hanging when using AJAX report pull.

    Any particular reason why a browser would hang while its pulling data off?
    What debugging can I do to try and find what is causing the problem.

    Hi Carl,
    Merry Xmas & happy new year. Thanks again for another year of great support.
    Sorry I should have put more details into my original query.
    When I said hangs I meant it hangs and after an extremely long time i get the following error message:
    Error Code 1460: Timeout
    Background: The gateway could not receive a timely response from the website you are trying to access, a DNS server, or another gateway server. This might indicate that the network is congested or that the website is experiencing technical difficulties.
    The page is working with the other AJAX calls I have except when it is calling the shadow page.

  • Ajax Report Pull APEX_ITEM.DATE_POPUP  issue

    Hi all,
    I am trying to use something similar to Carl's Ajax Region Pull
    http://htmldb.oracle.com/pls/otn/f?p=11933:48:1222899842354681::NO:::
    So I have 2 pages. My LOV on Page 4 has an onchange event to trigger an Ajax call to page 5 which then displays the results in a region on Page 4.
    Now I am using apex_item calls to allow entry into the report on page 5. Problem is, when I have a date entry item where I have to use apex_item.date_popup then I get a javascript error similar to "genCalf01_0 is not defined" when I click on the date icon to popup the calendar.
    On my instance at work this error is only with the second date field but the first is fine. However on apex.oracle.com, both date icons trigger the problem.
    Any ideas? I have put a sample on http://apex.oracle.com/pls/otn/f?p=38748:4:2006073124664781:::::
    workspace: abots
    username: test
    password: apex_test.
    Cheers
    Kofi

    Hello,
    Using the built in form items pulled from ajax can cause alot of problems and is discouraged. In most cases when you pull a form item from one page into another page it will break your page when you try and submit it.
    Now with the date pickers there is an even bigger issue because there is also embedded individual javascript's associated with each datepicker and when you pull them into the page the page DOM will not pick them up.
    Regards,
    Carl
    blog : http://carlback.blogspot.com/
    apex examples : http://apex.oracle.com/pls/otn/f?p=11933:5

  • Ajax Report Pull from another Page Pagination override

    We are on a time crunch and need to get this application working in a timely manner, any help would greatly be appreciated..
    *[History leading up to problem]*
    We followed the code from this example http://apex.oracle.com/pls/otn/f?p=11933:48:4441142106394445 which pulls a report from another page using AJAX so we could update a report (in this case a tabular form). Since Tabular Forms cannot update past 30-40 records we had to turn on pagination to prevent errors when trying to submit it.
    Since Pagination on the bottom of the report/tabular form links to the other page the report is on, I decided to attempt to override next> href link to instead call a javascript with the url from next> (Report/Tabular Form Pagination) with Jquery the following code {the override is working} {comments added here for clarification}...
    var oldhref =$("a.t20pagination").attr("href"); //get Apex Pagination a href link location
    $("a.t20pagination").attr('href', "javascript:return false"); // change the Apex Pagination a href llink location to do nothing
    $("a.t20pagination").click(function () {   // Create an onclick for Apex Pagination a href that calls a javascript function
    get_report_page(oldhref); // This function is needed because I am grabbing the report from another page, I hope to
    }); // get this javascript working [the reason why I am asking this question here]
    $("a.t20pagination").removeClass("t20pagination"); // Removed the pagination class just in case it was causing issues.
    The function I am working on below... {I figured I have to do the htmldb_get function {I am still new to Apex so I am not totally clear on it, but learning}, to get the report again from the other page, but I need to add pagination.. So I figured I could split the link location based on the : and go through the array for the parts I need to pass in the htmldb_get}, with alerts to help diagnose the problem...
    function get_report_page(curUrl) {
    alert ('Hello how are you today?');
    var temp = new Array();
    temp = curUrl.split(':');
    alert ('I like the number '+temp.length);
    for ( var i=0, len=temp.length; i<len; ++i ){
    alert (i+":"+temp); // Square brackets actually used, changed to squiggly here to show
    var get = new htmldb_Get(null,$x('pFlowId').value,null,205,null, null, temp{4}); // Square brackets actually used, changed to squiggly here to show
    gReturn = get.get(null,'<htmldb:BOX_BODY>','</htmldb:BOX_BODY>');
    get = null;
    $x('ReportDrop').innerHTML = gReturn;
    *[Actual Problem]*
    Since the report is on another page (in this case 205) and is being pulled onto Page 200 where the user is, when the user clicks on the Next> for the report/tabluar form pagination, the user is automatically thrown to page 205 {I want to keep the user on page 200 and pass the pagination, then pull the report/tabular form again}
    I looked at the link http://apex.oracle.com/pls/otn/f?p=11620:63:834860992188521::NO::: but I am not sure where to stick the report pagination{I thought it would be queryString {above you see I am setting temp[4] in the queryString parameter}..
    I know the function is working since I get the alert messages, after that where the report would be it gives the following error...
    Bad Request
    Your browser sent a request that this server could not understand.
    mod_plsql: /pls/apex/wwv_flow.show HTTP-400 Signature Mismatch or Missing '='
    Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server Server at nysastst.senate.state.ny.us Port 7778
    Can I simply splice the url like I am doing above and pass it to htmldb_get (or is there anyway to pass the report pagination using htmldb_get)?
    If so, what am I doing wrong?
    Also, does this seem like a decent solution or is there a better solution for this issue?
    - Thanks in advance,
    - Brian
    Edited by: brheitner on Dec 10, 2009 8:09 AM
    Edited by: brheitner on Dec 10, 2009 8:11 AM
    Edited by: brheitner on Dec 10, 2009 8:13 AM

    Thanks cb... it worked like a charm..
    but at first, I Could not get it to work because in my report that was being pulled from another page did not have Enable Partial Refresh set to Yes under Report Attributes > Layout and Pagination.. When it was off the a href link of the pagination was showing a standard link. Once Enable Partial Refresh was set to Yes, the pagination then showed a link to javascript:$a_report(...); which meant you can now override it with the javascript function.
    Here is the thread I found it in
    Call Process Through AJAX

  • Oracle 10g olap cube connectivity issue using Crystal Reports 2008

    Hi
    Kindly help me out with a solution. I have created a cube in oracle 10gR2 database using Oracle Analytic Workspace Manager. I am trying to connect to this cube using Crystal report Olap datasorces. But I am only getting 4 options to connect to Hyperion Essbase, HOLOS Cube, Microsoft OLEDB, Microsoft OLAP Analysis Services 8.0 and 9.0.  I am not getting any option for connection to Oracle OLAP. How do I do that or if it does not support kindly let me know.
    Thanks in advance
    Troyee

    Hi Troyee,
    I have discussed the issue with OLAP engineer and he told me that connectivity to OLAP cube is not supported.
    and please next time address OLAP questions to the following category:
    Expert Forums » Business Objects » Other Business Objects Products
    (see the relevant category description)
    Vitaly Izmaylov
    Crystal Reports Design forum moderator

  • Performace Issue using Crystal Report For enterprise and BEx Queries

    Hi all;
        We are generating the following error stack when trying to build a report on top of a BEX query using Crystal Report for Enterprise :
        |7C4F8ECE44034DB897AD88D6F98B028B3|2011 12 12 17:24:21.277|+0100|>>|E| |crj|20380|  56|ModalContext    | |2|0|0|0|BIPSDK.InfoStore:query|CHVXRIL0047:20380:56.174:1|-|-|BIPSDK.InfoStore:query|CHVXRIL0047:20380:56.174:1|Cut2PbOe3UdzgckPBHn8spEab|||||||||com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects||Assertion failed: Java plugin for CommonConnection is not loaded.
    java.lang.AssertionError
         at com.businessobjects.foundation.logging.log4j.Log4jLogger.assertTrue(Log4jLogger.java:52)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects.newInfoObject(InfoObjects.java:576)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects.continueUnpackHelper(InfoObjects.java:548)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects.continueUnpack(InfoObjects.java:489)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects.startUnpack(InfoObjects.java:464)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore$XRL3WireStrategy.startUnpackTo(InternalInfoStore.java:1484)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore$XRL3WireStrategy.startUnpackTo(InternalInfoStore.java:1464)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.unpackAll(InternalInfoStore.java:910)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.queryHelper(InternalInfoStore.java:944)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.queryHelper(InternalInfoStore.java:929)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.query_aroundBody24(InternalInfoStore.java:798)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.query(InternalInfoStore.java:1)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStore.query_aroundBody20(InfoStore.java:175)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStore.query_aroundBody21$advice(InfoStore.java:42)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStore.query(InfoStore.java:1)
         at com.businessobjects.mds.securedconnection.cms.services.olap.OlapCmsSecuredConnectionService.getConnectionObject(OlapCmsSecuredConnectionService.java:125)
         at com.businessobjects.mds.securedconnection.cms.services.olap.OlapCmsSecuredConnectionService.getOlapSecuredConnection(OlapCmsSecuredConnectionService.java:191)
         at com.businessobjects.mds.securedconnection.loader.internal.SecuredConnectionLoaderImpl.getOlapConnectionFromSecuredConnection(SecuredConnectionLoaderImpl.java:83)
         at com.businessobjects.mds.securedconnection.loader.internal.SecuredConnectionLoaderImpl.getConnectionFromSecuredConnection(SecuredConnectionLoaderImpl.java:60)
         at com.businessobjects.dsl.services.workspace.impl.DirectOlapAccessDataProviderBuilder.loadSecuredConnection(DirectOlapAccessDataProviderBuilder.java:193)
         at com.businessobjects.dsl.services.workspace.impl.DirectOlapAccessDataProviderBuilder.loadSecuredConnection(DirectOlapAccessDataProviderBuilder.java:176)
         at com.businessobjects.dsl.services.workspace.impl.DirectOlapAccessDataProviderBuilder.provideUniverseFromCms(DirectOlapAccessDataProviderBuilder.java:63)
         at com.businessobjects.dsl.services.datasource.impl.AbstractUniverseProvider.provideUniverse(AbstractUniverseProvider.java:41)
         at com.businessobjects.dsl.services.workspace.impl.AbstractDataProviderBuilder.updateQuerySpecDataProvider(AbstractDataProviderBuilder.java:119)
         at com.businessobjects.dsl.services.workspace.impl.AbstractDataProviderBuilder.updateDataProvider(AbstractDataProviderBuilder.java:106)
         at com.businessobjects.dsl.services.workspace.impl.AbstractDataProviderBuilder.addDataProvider(AbstractDataProviderBuilder.java:49)
         at com.businessobjects.dsl.services.workspace.impl.WorkspaceServiceImpl.addDataProvider(WorkspaceServiceImpl.java:56)
         at com.businessobjects.dsl.services.workspace.impl.WorkspaceServiceImpl.addDataProvider(WorkspaceServiceImpl.java:45)
         at com.crystaldecisions.reports.dsl.shared.DSLTransientUniverseServiceProvider.createSessionServicesHelper(DSLTransientUniverseServiceProvider.java:72)
         at com.crystaldecisions.reports.dsl.shared.DSLServiceProvider.createSessionServices(DSLServiceProvider.java:428)
         at com.businessobjects.crystalreports.designer.qpintegration.DSLUtilities.getServiceProvider(DSLUtilities.java:279)
         at com.businessobjects.crystalreports.designer.qpintegration.InitializeDSLRunnable.run(InitializeDSLRunnable.java:82)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121)
    Here seems to be that a plugin is not loaded : com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects||Assertion failed: Java plugin for CommonConnection is not loaded.
    could this affect the performance of Crystal Reports for Enterprise and how could I fix this ?
    Best Regards
    Anis

    Venkat,
    Thanks for your response. Please note, however, the transaction RAD1 does not exist. Let me provide more details about the current settings of the InfoObject.
    The Characteristic is 'Item' (0CS_ITEM) and upon going to RSA1 >  Modeling > InfoObjects > Item (0CS_ITEM) > Right Click > Display > Business Explorer (tab) > Text Type is set to 'Long Text' and BEx description is set to 'Long description' already.
    When I run/execute the query with this Item characteristic, the results in BEx Analyzer is showing appropriate long text, however, Crystal Report for Enterprise shows short text only
    K
    Edited by: Kumar Pathak on Feb 3, 2012 6:18 PM

  • Reg : Cross browser issue while handling LOV event on KeyFlexFeild

    Hi OA Gurus,
    We are encountering issues on R12.0.6, JDev 120Rup6.
    We have the following test case and code changes.
    Requirement:
    We have OA page where we have one KeyFlexFeild item and a normal LOV. Page items are part of one AM and LOV is in another AM.
    The requirement was to make LOV dependent on keyFlexfeild. Test case is mentioned as per following flow.
    1.     User changes cost center segment of Accounting Flex(Key flex) using Cost center LOV.
    2.     Another LOV in the same page should be dependent on new value of cost center as modified in step 1.
    Solution Implemented:
    Describing in the 3 steps
    1) Here the KeyFlexFeild is expense account. Whenever User changes any segment, we handle
    ‘lovValidate’ and ‘lovUpdate’ events on KeyFlexFeild in processFormRequest of controller.
    2) Retrieve the value of cost center segment using getSegmentsQualifiedBy(), Update corresponding VO attribute of the LOV query parameter.
    3) Forward the request to current page so that LOV will have modified value with updated query.
    4) Forwarding to current page is must because LOV is built with another AM and will loaded only when page is built.
    Issue:
    This works fine on internet explorer. When trying to run the same in Mozilla we have following issue
    1) User modifies one of the segments of expense account and make a tab – out
    2) Now the page refresh happens
    3) Now in the same page no other LOV or no other button works. He can’t click on any button for submit or cancel.
    LOVs will not open even after clicking on it.
    Code changes:
    //Step1 – Handle LOV events
    String source = pageContext.getParameter(SOURCE_PARAM);
    String eventType = pageContext.getParameter(EVENT_PARAM);
    if(source !=null && eventType != null) {
    if(source.startsWith("Acct") && eventType.equals("lovUpdate") || eventType.equals("lovValidate") ) {
    KeyFlexfield flex = (KeyFlexfield)lkff.getAttributeValue(OAWebBeanConstants.FLEXFIELD_REFERENCE);
    // Step -2 Updating the corresponding VO attribute for LOV to get the modified the value
    Segment[ ] segmentL = flex.getSegmentsQualifiedBy(FA_COST_CTR");
    CostCenterValue = segmentL[0].getValue().getValue();
    if(CostCenterValue != null ){
    sampleViewObject.getCurrentRow().setAttribute("ToCostCenter",CostCenterValue);
    OAFormValueBean formValueBean = (OAFormValueBean)webBean.findIndexedChildRecursive("ToCostCenter");
    if(formValueBean != null)
    formValueBean.setValue(pageContext, CostCenterValue);
    OAMessageLovInputBean formValueBean1 = (OAMessageLovInputBean)webBean.findIndexedChildRecursive("ReceivingApprover");
    if(formValueBean1 != null)
    formValueBean1.setValue(pageContext, null);
    else
    sampleViewObject.getCurrentRow().setAttribute("ToCostCenter",null);
    //Step 3 – Forward the request Current Page again
    pageContext.setForwardURLToCurrentPage(null, true, ADD_BREAD_CRUMB_YES, (byte)0);
    We have following questions.
    a)     Solution implemented by us is correct ? or we have to implement it in another way ?
    b)     Is OA version mentioned above supported on Mozilla browser version 3.x ? This issue is not occurring on Mozilla 1.x while running from JDev.
    Please let us know if any additional details required.
    Thanks for help in advance.
    Edited by: user774130 on Dec 15, 2009 2:27 AM

    Hi,
    It seems that you have not noticed that this forum is not for posting product-related questions/problems....
    So , this might be the correct forum....
    Java Server Pages (JSP)
    Sim

  • Css cross browser issue

    i have laid out my template using css, but notice that one of
    my columns will bump down under another one if the screen is
    resized in IE (on pc, v.6). can someone take a quick look at my
    code and css and let me know what i can do to ensure that
    everything will stay where it is supposed to be located, while
    still using width equal to a % so that it will resize with screen
    resize.
    my template can be found at: www.thedunch.com/template.html
    my css can be founds at: www.thedunch.com/css/dunch.css
    thanks in advance for any help

    If you enabled "View Source" it might be easier to figure
    out.
    "bmilesp" <[email protected]> wrote in
    message
    news:gh9k9l$j87$[email protected]..
    > hello,
    >
    > I have a flex image app here:
    http://brandonandpatty.com/?page_id=6.
    Works
    > fine in firefox 3.0.4 and Opera 9.27. However, there is
    a strange issue in
    > IE
    > and Chrome - the thumbnail images show up fine, but when
    you click one to
    > display a larger image it gives a broken image link
    icon.
    >
    > I have no idea why the browser would have influence in
    how the flashplayer
    > accesses remote image files, but it does in this case
    somehow. Any ideas
    > on how
    > to fix this issue, or has someone had a similar problem?
    Thank you in
    > advance!
    >

  • CSS Help/Cross Browser Issues

    Nevermind

    Embedding the fonts should solve that issue. You might want to make sure that the browser is not using a cached version of the project. You may have fixed it, but not seen it due to browser displaying an older copy. I will add a small version number on-screen in a corner while developing to make sure that browser is behaving correctly.
    You also might to make sure that font can be embedded. Flash Catalyst only supports TrueType and OpenType font formats.
    Hope this helps,
    Chris

  • SAP System Log on issue using Crystal Reports:

    Hi All,
    I have installed Crystal reports, Business Explorer and Business Objects XI  Integration. But when I tried to create a new report using SAP Table, Cluster or Functional, I couldn't able to select SAP System since it shows SAP System Log on selection was blank.
    Note: I have undergone the following trials:
             1) All the trials are done after connecting to the Internal Vpn.
             2) Re-installed the Crystal reports, Business Explorer and Business Objects XI. But result was the same.
             3) Compared all the setting parameters with another System which works fine.
             4) Only difference seems to be that I am using Win Vista and other one is Win XP OS.
             5) Tried in the net for Win Vista specific patches or software to run the crystal report but couldn't helped.
    Did any one come across similar experience or is there any idea why it could be? Thank you in advance.
    Best Regards,
    Sujith
    Edited by: Sujith Kumar Naithalath on Jun 22, 2009 8:29 PM
    Edited by: Sujith Kumar Naithalath on Jun 22, 2009 8:30 PM

    Hi Don,
    Thank you very much for your reply. I was wondering from where we could download XI R2 ( 11.5 ) SP 2. I have tried downloading Software Forces .rpt Inspector 3 Professional suite (for CR XI R2) . But this doesn't seems to be the right one. Also I have cheked in sdn Crysal Report 2008 download (https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm ). But no luck. Thanks again.
    Best Regards,
    Sujith.

  • Cross browser issue?

    hello,
    I have a flex image app here:
    http://brandonandpatty.com/?page_id=6.
    Works fine in firefox 3.0.4 and Opera 9.27. However, there is a
    strange issue in IE and Chrome - the thumbnail images show up fine,
    but when you click one to display a larger image it gives a broken
    image link icon.
    I have no idea why the browser would have influence in how
    the flashplayer accesses remote image files, but it does in this
    case somehow. Any ideas on how to fix this issue, or has someone
    had a similar problem? Thank you in advance!

    If you enabled "View Source" it might be easier to figure
    out.
    "bmilesp" <[email protected]> wrote in
    message
    news:gh9k9l$j87$[email protected]..
    > hello,
    >
    > I have a flex image app here:
    http://brandonandpatty.com/?page_id=6.
    Works
    > fine in firefox 3.0.4 and Opera 9.27. However, there is
    a strange issue in
    > IE
    > and Chrome - the thumbnail images show up fine, but when
    you click one to
    > display a larger image it gives a broken image link
    icon.
    >
    > I have no idea why the browser would have influence in
    how the flashplayer
    > accesses remote image files, but it does in this case
    somehow. Any ideas
    > on how
    > to fix this issue, or has someone had a similar problem?
    Thank you in
    > advance!
    >

  • Style sheet cross browser issues

    Hi I am having a couple of issues with a test site i am producing
    The URL is above.
    All works ok in I.E.8
    but in IE7 the links on the header are no longer in-line causing them to dissapear from view in some cases.
    And in IE6 the header size appears doubled ?? and the right hand news div drops out of line??
    Probably something simple, but please advise.
    Many thanks
    Mark
    [Subject line edited by moderator to remove URL]

    Markcronin123 wrote:
    Hi Nancy
    http://www.epproductions.co.uk/katebellingham/
    here is the link :-)
    Make a backup of the page and stylesheet, ie copy them so you have an original to go back to.
    What happens to the links in the header if you change the 'header' css to exactly as below. Delete ALL and I mean ALL references to any 'header' css in your current css file and replace it with the selectors below:
    #header {
    height: 95px;
    background-image: url(header.jpg);
    padding-bottom: 5px;
    overflow: hidden;
    #header ul {
    margin: 0;
    padding: 0;
    #header li {
    list-style-type: none;
    float: right;
    margin: 0;
    padding: 0;
    #header ul li a {
    text-decoration: none;
    color: #FFF;
    font-size: 15px;
    float: right;
    padding: 70px 22px 0 0;
    text-align: center;
    font-weight: bold;
    #header ul li a:hover {
    font-size: 17px;
    As for your news <div> dropping try floating it left instead of right as its a much more stable structure. If it still drops take out the innernews <div> and see if it goes back into line.
    #frontnews {
        float: left;
        height: 355px;
        width: 260px;
        background-color: #FFF;
        padding: 20px;
        text-align: center;
        background-image: url(news.jpg);
        background-repeat: no-repeat;
        background-position: center center;

  • Cross-Browser Issues

    I am having trouble with a current web site I am designing
    for a local Culligan dealer. The site, as usual, looks fine in
    Safari, however, looks a mess in Internet Explorer and Firefox.
    Here is the link:
    http://www.culliganwatertown.com
    – I would TRULY appreciate any helpful info... Thanks!

    One of the worst mistakes you can make is to build pages that
    force quirks
    mode rendering by not having a valid and complete doctype.
    Yours is doing
    that -
    <html>
    <head>
    You should add this doctype to your page -
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    The next worst mistake you can make is to build your layout
    in a single
    table with oodles of colspans and rowspans. Since you have
    used ImageReady
    to write your HTML, this is exactly what you have got -
    <!-- ImageReady Slices (index.jpg) -->
    I'm afraid that there is not an easy answer for you there.
    But before you
    start rebuilding, read this -
    http://apptools.com/rants/spans.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "RachStG" <[email protected]> wrote in
    message
    news:fmlvoc$h6s$[email protected]..
    >I am having trouble with a current web site I am
    designing for a local
    >Culligan
    > dealer. The site, as usual, looks fine in Safari,
    however, looks a mess in
    > Internet Explorer and Firefox. Here is the link:
    >
    http://www.culliganwatertown.com
    ? I would TRULY appreciate any helpful
    > info...
    > Thanks!
    >

  • Safari Browser issue on Mac with crystal report viewer JSP

    Safari Browser issue with crystal report viewer JSP
    This is my configuration:
    Operating System : Mac X
    Browser : Safari Browser 3.1.4
    Crystal Report : XII Release 2
    Application Server : Jboss 4.2.0
    I am using the following code to view the crystal report in jsp.
    <%@ page import="com.crystaldecisions.report.web.viewer.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.application.ReportClientDocument" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSource" %>
    CrystalReportViewer theViewer = null;
    ReportClientDocument document = null;
    IReportSource reportSource = null;
    theViewer = new CrystalReportViewer();
    reportSource = document.getReportSource();
    reportSource.refresh();
    theViewer.setReportSource(reportSource);
    theViewer.setOwnPage(true);
    theViewer.setHasExportButton(true);
    theViewer.setHasPrintButton(true);
    theViewer.setHasRefreshButton(true);
    theViewer.setHasLogo(false);
    theViewer.setEnableParameterPrompt(true);
    theViewer.refresh();
    theViewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
    theViewer.dispose();This code is working fine when the browser is IE or Firefox on Mac X.
    But it is giving me error message when the browser is Safari on Mac X.
    If there is no parameter in the report then the error message is:
    Null Totaller
    If there is parameter in the report then the error message is:
    Parameter prompting is not supported
    Please Help.
    Thanks
    Edited by: VINCEJOHNSON on Jul 30, 2008 7:11 AM

    I am having this exact same issue, only on an ASP.NET page. I can print the report, but it does not display at all.

  • Issue Regarding Cyrstal Report Server 2008

    Hi,
    I've found some issue using crystal report server 2008 V1. The followings are my information for your reference.
    Could you kindly please let me know what you can help.
    -              My client has bought crystal report server 2008 V1 and deploy on the production server (window server 2008).
    -              We've developed the crystal report with command object.
    -              When we tested on printing report with 2 or 3 login user, report is successfully come out.
    -              When concurrent users to print the same report are about 100 or 200, then we faced Load Report Failed error.
    -              I've found that the Server Intelligence Agent service is stopped.
    -              When installing crystal report server, we've used the same database with our application to install report server's database connection.
    My questions are,
                    1. Cyrstal Report Server 2008 V1 can handle how many concurrent users?
                    2. Is crystal report can run without running Server Intelligence Agent service?
                       Or this service is stopped because of too many concurrent user printing crystal report?
                    3. What is your suggestion on the Load Report Failed when too many access to print report?

    Out of the box, the Crystal Report Server only comes with 5 named user license. So hitting it with 100+ users would result in all kinds of issues. I'm actually surprised you can hit it with anywhere close to 100 users. In order for you to be able to get to the high number of hits required, you will have to obtain more licenses. These are available in 5 concurrent user packs and you can add up to 4 of these packs. Any more than that, you're lookign at BO Enterprise.
    Some resources worth looking at:
    https://websmp106.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000713358&_SCENARIO=01100035870000000202
    http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/crystalreportsserver/featuresfunctions/index.epx
    Now, yo have posted to the .NET developer support forum,  but it looks like you are not using any of the CR Server APIs. If that is the case, I'd recommend posting any further queries to the Business Objects Enterprise Administration forum:
    BI Platform
    Ludek
    Follow us on Twitter
    http://twitter.com/SAPCRNetSup

Maybe you are looking for