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

Similar Messages

  • Facing issue while handling faults using fault-policies.xml

    Hi All,
    Scenario: One Asynchronous Bpel is trying invoke the webservice. When the status of the webservice is "Down", the BPEL will throw "System fault : remoteFault"
    This fault will be handled by the fault-policies.xml.
    CustomFaultHandler.java : basically it will print data to audit-trail and send data to the JMS Queue.
    I am facing some issues , when i am trying to handle faults using fault-policies.xml.
    Issue1: Display warning message at time of deployment : Warning: Schema validation failed for fault-policies.xmlXML-24506: (Error) Identity constraint validation error: 'Key sequence not found in key reference'
    Issue2: CustomFaultHandler.java is able to print data to audit-trail but unable to send data to the Queue. and why the policy file getting executed at time of "Start of Invocation" and then it's showing "Invocation faulted" ?
    Audit-Trail Message:
    *===========*
    Started invocation of operation "process" on partner "RemoteService".Started invocation of operation "process" on partner "RemoteService".
    [Fault Recovery] Invoked handleBPELFault on custom java action class "com.CustomFaultHandler".
    Invoke1
    190002190002
    default/TestjavaAction!5.0*soa_fcb2a5dd-06a7-47f9-bb88-cab14d343856/TestBPEL
    190002
    Faulted while invoking operation "process" on provider "RemoteService". Faulted while invoking operation "process" on provider "RemoteService".
    fault-policies.xml:
    *==========*
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy">
    <faultPolicy version="2.0.1" id="ErrorHandlingModelr"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Conditions>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:remoteFault">
    <condition>
    <action ref="ora-java"/>
    </condition>
    </faultName>
    </Conditions>
    <Actions>
    <Action id="ora-java">
    <javaAction className="com.CustomFaultHandler"
    defaultAction="ora-terminate">
    <returnValue value="Manual" ref="ora-abort"/>
    </javaAction>
    </Action>
    <Action id="ora-abort">
    <abort/>
    </Action>
    </Actions>
    </faultPolicy>
    </faultPolicies>
    fault-bindings.xml:
    *===========*
    <?xml version="1.0" encoding="windows-1252" ?>
    <faultPolicyBindings version="2.0.1"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <component faultPolicy="ErrorHandlingModelr">
    <name>TestBPEL</name>
    </component>
    </faultPolicyBindings>
    Warning Message when trying to deploy the composite to the server :
    =============================================
    Warning: Schema validation failed for fault-policies.xmlXML-24506: (Error) Identity constraint validation error: 'Key sequence not found in key reference'
    Error Message from server:
    *==============*
    Message handle error.
    error while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the reported exception is: Fault not handled.
    failure to handle a fault thrown from a scope, by any blocks in the scope chain.
    This exception occurred because the fault thrown in the BPEL flow was not handled by any fault handlers and reached the top-level scope.
    A top-level fault handler should be added to the flow to handle faults not caught from within the flow.
    This error contained an exception thrown by the message handler.
    Check the exception trace in the log (with logging level set to debug mode).
    ORABPEL-05002
    Message handle error.
    error while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the reported exception is: Fault not handled.
    failure to handle a fault thrown from a scope, by any blocks in the scope chain.
    This exception occurred because the fault thrown in the BPEL flow was not handled by any fault handlers and reached the top-level scope.
    A top-level fault handler should be added to the flow to handle faults not caught from within the flow.
    This error contained an exception thrown by the message handler.
    Check the exception trace in the log (with logging level set to debug mode).
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:205)
    at com.collaxa.cube.engine.dispatch.BaseDispatchTask.process(BaseDispatchTask.java:88)
    at com.collaxa.cube.engine.dispatch.BaseDispatchTask.run(BaseDispatchTask.java:64)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at com.collaxa.cube.engine.dispatch.Dispatcher$ContextCapturingThreadFactory$2.run(Dispatcher.java:850)
    at java.lang.Thread.run(Thread.java:662)
    Please help..
    Thanks in Advance
    Edited by: Sharmistha Ghosh on May 16, 2012 12:37 PM

    My SOA suite version is 11.1.1.7 and i was getting the same warning  while compiling the Composite in JDeveloper. To fix it update your fault-policy.xml
    Change it to
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <faultPolicy version="0.0.1"
                     id="BPELProcessV1_Faults"
                     xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
                     xmlns:xs="http://www.w3.org/2001/XMLSchema"
                     xmlns="http://schemas.oracle.com/bpel/faultpolicy"
                     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    And it will solve the issue.

  • 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

  • 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!
    >

  • How to handle Lov event from Advanced Table

    hi all,
    I have requirement like I need to return 5 items from lov RN and need to bind them with curresponding 5 coloumns in advanced table which is diplaying fine,
    but once clicked on 'Add New Row' button values from the privious row is getting null/disappearing. All the items in advanced table are binded with proper view Attribute.
    Please let me know why it is behaving so? and kindly give the solution also how can I handle this.

    Hi,
    The columns on which you are returning the values must be messageStyledTexts Right??
    If yes, then you should know that read only fields are not able to hold values and hence the lov mappings gets lost when you click on Add New Row button.
    To avoid this.
    For 5 columns, create 5 form Values and bind the same View Attribute to them as to the columns.
    Now in the LOV also create 5 mappings for form values same as you have created for table columns.
    This way it should work.
    Thanks,
    Gaurav

  • Issue while handling the functional ack(CONTRL) through B2B

    Hi,
    My requirement is to handle the incoming CONTRL message through B2B and send the data to SOA/AIA application and update the CONTRL data in table. For that i have done the following settings in oracle B2B.
    Functional Ack handled automatically : false
    Functional Ack internal properties : false
    Notify Inbound Receipt Acks     : false
    Notify Inbound Functional Acks : false
    I am able to update the data successfully in the table for the successful scenarios. But if the transaction is failed in SOA/AIA application due to some error then it is creating 2 entries of MSG_ERROR in reports tab in B2B where as it is creating only one entry for MSG_COMPLETE state.
    Please guide me if i am missing anything here. I am getting below 2 errors for 2 separate entries at the same time.
    1)
    Error Code     B2B-52325
    Error Description     Machine Info: (elb1cn14.statoilfuelretail.com) Description: Error in the SOA Composite {0}
    Error Level     ERROR_LEVEL_COLLABORATION
    Error Severity     ERROR
    Error Text     Error in the SOA Composite
    2)
    Error Code     B2B-52325
    Error Description     
    Error Level     
    Error Severity     
    Error Text     Error -: B2B-52325: Error in the SOA Composite {0}
    Edited by: 901994 on Aug 22, 2012 3:36 AM

    But if the transaction is failed in SOA/AIA application due to some error then it is creating 2 entries of MSG_ERROR in reports tab in B2B where as it is creating only one entry for MSG_COMPLETE state.Are you really sure that you are seeing three report entries for SAME transaction?
    I guess B2B listening channel is trying to retry the same file in case of error.App message delivery is not retried in B2B rather failed messages are delivered to the IP_IN_QUEUE. Please enable the logging for B2B engine in TRACE 32 mode and run a test to reproduce the behaviour. Post the log here or mail across to my id (in my profile).
    Regards,
    Anuj

  • 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

  • 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;

  • EDI batching issue while handling the exception.

    I am trying to batch the inbound IDOC message coming throught external release as the requirement is to batch the EDI messages
    for every IDOC having multiple BGM's. For eg if the 1st IDOC has 4 BGM's and second Idoc has 3 BGM's there should be 2 different batches
    of EDI each for 1 idoc.
    Achived this using external release trigger and delay mechanism, however if suppose the 1st Idoc fails to process in the 3rd message due to mapping
    issue then the previous 2 BGM's and already sent to the messagebox and subscribed by the batching orchestration. And when the second message is arriving
    with suppose 3 BGM's, the 2 BGM's are getting batched with them..
    For eg : 1st IDOC -  4 BGM repeating record -- 3rd is failed in orchestration looping but previous 2 are already sent to messagebox and subscribed by batching orchestration
    2nd IDOC -  with 3 BGM are processed successfully and then releasing an external trigger making the previous 2 also to get batched with the 2nd IDOC.
    My requirement is if there is any mapping issue then the previous BGM's which are sent should not get batched by the batching orchestration.
    Could anyone please suggest on the same?

    If third message fails, what do you want to do with previous messages? I think your batching orchestration should deal with incomplete batch after a period of time. You anyways won't be able to retrieve idoc second time.
    Secondly, It looks like you want to build create atomatic type of solution, for this you need to have one buffering place where you keep all successfully mapped messages intermediately. Again you need control message mechanism to notify batch complete etc.
     (Perhaps you need to explore more on batching orchestration itself).
    Another thing, if sap doesn't send single batch into multiple idocs, then you can probably create an orchestration to create whole batch and send control message to trigger edi batching.
    If this answers your question please mark it as Answer and if this post is helpful, please vote as helpful. Thanks !

  • 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!
    >

  • LOV Event Capturing

    Hi OAF Gurus,
    We have requirement to capture LOV events progammatically but on the way I am facing one issue while capturing LOV event.
    Actually lovValidate event works as per its functionality and it gets captured when user enter value into th efield and tabs out but lovPrepare event doesn't get captured when I clicked on a torch icon and same is what happening with lovUpdate means both these events doent gets captured.
    I have tried in many ways,also by setting Disable Validation Property:true and Use for Validation property:yes but stuck with same issue as before.
    Could you please help me on this issue..Its on priority,..
    Any pointers would be of great help.
    Thanks in Advance.

    Hi,
    lovPrepare fires only when you click on the torch button. It is responsible for passing row level variable to LOV popup page.
    Whereas when you (quick) select any value, lovValidate gets fired which is responsible for populating the variables from LOV page back to main page.
    When you type a valid value in the field, we dont need to send data from main page to LOV page so there is no need to fire lovPrepare. At the same time, since its a valid value, we need to get other columns values and populate them in other formValues/fields in the row. Hence lovValidate even is a must.
    What exactly is your requirement?
    May be u can try having a look into Controller file linked to LOV Page (if it is present)
    Thanks,
    Hrishikesh

  • Firefox 4 download. Since, Windows start button options changed. Should be browser agnostic, can you please tell me how to fix this? While I love Firefox, this has me livid! (1 irony, Firfox is no longer in my Start button menu.)

    I first noticed an issue when looking for something normally located in the Accessories folder of MS programs. What I found upon clicking on "All Programs" was not the program file/folder tree I expected but rather a direct list of all files in the Program Files folder. I then went to open a new session of Firefox to research that issue and noticed my basic Start button options were also changed. Now, even focus for event-driven events is not working correctly. Again, while I love Firefox, this needs to be fixed immediately or I will be forced to uninstall the product just to function.

    Unfortunately I tried that and it didn't work. Thanks for the help though. I tried to uninstall and it said I couldn't because the file is corrupt or something, but I think I finally got it uninstalled and/or deleted or whatever, but now I try to reinstall/download it again from the beginning and I can't. No matter what I do I can not get Firefox working again. No matter how many times I try to redownload it. Any other suggestions?

  • How can we handle browser settings while dealing with the security ?

    Hi ,
    how can we handle browser settings while dealing with the security ?When we configured security in web.xml , during the first request the container is asking for the authentication credentials once they are provided it go's on. but when the user gives a fresh request from the second window within the same browser that time it is not asking for authentication. How can we overcome this.Is there anything to do with server configurations?
    How can we make the container no to keep the things or act like session?

    Ya... I am taking a small example need not happen always but a kind of possibility i am thinking off.
    once the user sign out and just left without closing the browser and a friend (suppose not a good friend ... just kidding...) of that user may open the same jsp or file .This time the security is breached. If that feature or property exists....
    I know what you might say ... the user will log-out before leaving where a programer might invalidate the session at the time of log out.
    Consider the case of a bad Programing or just a programer might forget to invalidate,At that time as a application administrator how can he solve that issue.
    Thanks.......
    Edited by: user8483670 on Jun 6, 2011 1:08 AM
    Edited by: user8483670 on Jun 6, 2011 1:09 AM

  • Cross Browser/OS issue?

    Hi there,
    This website belongs to our school project and we are getting reports from the teacher assistance and the professor that the website is not funcationing properly. They are saying the menu on the bottom of the page is not showing so they cant navigate the site.
    http://tvbw.businesscatalyst.com/
    Can someone direct me on how we can solve this issue? I have done cross browser check and on some site it doesnt show while on other site they are showing the menu!
    Thank you for your help in advanced.

    that fixed the issue...which is weird since i was getting response from freind with both mac or windows tell me different things...

Maybe you are looking for

  • Can I use an iMac to control a mac pro

    I have a 2008 Mac pro that's working well. Since I'm doing a lot a video creation that needs to go to DVD I'm not ready to give it up. but I see the need for a more modern machine for some of the newer software I would like to use. so here is the que

  • How to select a particular node in a tree?-want suggestions urgent

    i've to make a tree showing "c:\" folder structure of the system. Initially i'm adding the folders in c:\ only tothe tree. And i'm adding the subfolders when ever i select a particular folder. I'm opening the subfolders and inner subfolders of it and

  • Taxpayer Identification Number

    Hi! I live in Sweden, I´m a individual person, not a company. I want to publish my app on the App Store. I need a Taxpayer Identification Number according to the "tax information and banking" part. How do I get it? And do i choose "Exempt Payee" or "

  • Template creation for appraisal

    Hi Experts, Can the end user be able to create appraisal templates with varying points as per their requirement? Is it possible to upload the appraisal templates used in legacy system ? Regards, RK.

  • MIDP for Palm on OS 4.0?

    Hi, The ea version of the palm midp says it is for Palm OS 3.5. Has anyone tried this with OS 4.0? (such as the Sony Clie 610?) Thanks! Rob [email protected]