Value of the parameter is not displayed when moving from page of the dialog box

Hello

The question I face, is that I have a backup button with the logic in the PFR in which I call a page of dialogue that has an OK button. I give the floor to press ok another page. I need to capture a XXParty parameter that I put in the CO LIC key but is not displayed in the central of the PR of the other page that is called when you press the OK button. Probably I'm missing something very small. Any help would be greatly appreciated. Thank you


SAVE BUTTON controller LIC... (Call the dialog box and the parameter)
=============================================
If (SaveButton! = null)
{am.invokeMethod ("addNotes", params);  Transaction record.
System.out.println ("save backwards");
Try to build your own Page of dialogue here...
String MainUrl = "OA.jsp?page=xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG & retainAM = Y;
OAException descMesg = new OAException ("XXTSA", "XX_KSMS_SAVED_NOTES");
OAException instrMesg = new OAException ("FND", "FND_CANCEL_ALERT");

DialogPage OADialogPage = new OADialogPage (OAException.INFORMATION, descMesg, null, MainUrl, null);
OK button to send back the values of the PartyID for CO of the ShipperOverview Page.
System.out.println ("The party ID is" + left); It is displayed.
dialogPage.setPostToCallingPage (true);
java.util.Hashtable formParams = new java.util.Hashtable (1);
formParams.put ("XXParty", out); Part definition ID in XXParty.
dialogPage.setFormParameters (formParams);
pageContext.redirectToDialogPage (dialogPage);


Partial code in the process asks in the called ShipperOverview Page of the dialog box's OK button
====================================================
super.processRequest (pageContext, webBean);
Am = (OAApplicationModule) pageContext.getApplicationModule (webBean) OAApplicationModule;
String XXId = pageContext.getParameter ("XXParty"); Try to recover part ID here of page of the dialog box.
System.out.println ("The PartyID is" + XXId);

Salvation;

Try one of these two options.

1. pass the value of the part directly in the URL & get it 2nd co:
String MainUrl = 'OA.jsp?page=xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&XXParty="+Party;

2. After selecting the button ok in the dialog box get the parameters in CO 1 himself then using URL forward, send them to CO 2

If (SaveButton! = null)
*{*
* //Your code... *.
*//..............*
*//............*

Default OAException = new OAException ("XXABCD", "XXABCD_GNO_DELETE_WARNING");
DialogPage OADialogPage = new OADialogPage (OAException.WARNING, default, null, "","");
dialogPage.setOkButtonItemName ("DeleteYesButton");
dialogPage.setOkButtonToPost (true);
dialogPage.setPostToCallingPage (true);
String lineId = pageContext.getParameter ("lineId");
Hashtable ht = new Hashtable();
HT.put ("lineId", lineId);
HT.put ('actor', actor);
HT.put ("empId", empId);
dialogPage.setFormParameters (ht);
pageContext.redirectToDialogPage (dialogPage);

*}*

* combination else if (pageContext.getParameter ("DeleteYesButton")! = null) {*}
String lineId = pageContext.getParameter ("lineId");
String = pageContext.getParameter ("actor") actor;
Var empId = pageContext.getParameter("empId");
HashMap formParams = new HashMap (1);
formParams.put ("lineId", lineId);
formParams.put ('actor', actor);
formParams.put ("empId", empId);
pageContext.forwardImmediately ("OA.jsp?page=/xxx/oracle/apps/xxabcd/appraisal/webui/DrillDownPG",
NULL, KEEP_MENU_CONTEXT,
NULL, formParams, true,
ADD_BREAD_CRUMB_NO);
*}*

--
GsrC

Tags: Oracle Applications

Similar Questions

  • Consult the Page element values in the dialog box confirm dynamic action

    Hello

    I can return values to the Page item in the dialog box confirm dynamic action.

    I have a dynamic Action and I using the Action - confirm to display the confirmation message. I'm trying to refer point Page P1_EMP_NO say in the Confirmation box as shown below.

    Action - confirm
    Text - * & P1_EMP_NO.* "test123".

    When I have to run so that a dynamic action, confirmation shows only 'test123', the value for P1_EMP_NO is not displayed.

    My question is that we can refer such values as described above OR is there any other way to do it.

    ----
    Thank you
    Deepak

    Hi Deepak,

    You can see no elements in the confirm dialog box.
    You will need to write your own javascript and refer to elements such as dialog box

    $v('P1_EMP_NO') 
    

    Kind regards
    Kees Vlek
    -----
    Company: http://www.orcado.nl
    Blog: http://www.orcado.nl/blog/blogger/listings/69-kvlek
    Twitter: http://www.twitter.com/skier66
    If the answer to question please change replied and mark the appropriate post as correct / helpful.

  • Retrieve the value of the dialog box

    Hello

    I have a class that extends the dialog box. A few Radiobuttns are added. I want to get the value of the RadioButton selected the actual class of the screen, call the dialog box by clicking the Dialog.OK button. The code I tried is as follows:

    My class of the screen:

                    XXXDialog clScrn = new XXXDialog ();
                    if (clScrn.doModal() == Dialog.OK) {
    
                        // I click Ok, but this is never shown
                        Dialog.alert("Closed & here");
                        Dialog.alert("Selected = " + clScrn.getSelectedItem());
                    }
                    clScrn = null;
    

    The dialog class-

      public XXXDialog() {
            super(Dialog.D_OK, "Select Item", Dialog.OK, null, VERTICAL_SCROLL | VERTICAL_SCROLLBAR | Field.USE_ALL_WIDTH | Field.USE_ALL_HEIGHT);
            rbg = new RadioButtonGroup();
            rb1 = new RadioButtonField("One", rbg, false, Field.USE_ALL_WIDTH);
            rb2 = new RadioButtonField("Two", rbg, false, Field.USE_ALL_WIDTH);
    
            rb1.setChangeListener(this);
            rb2.setChangeListener(this);
    
            add(rb1);
            add(rb2);
        }
    
        public void fieldChanged(Field f, int context) {
    /*
    Actually, I want to know which field was clicked RadioButton or Ok button. If it is Ok, then I want to hide and return back to screen.
    */
    
            try {
                    RadioButtonField fd = (RadioButtonField) f;
                    item = fd.getLabel();
                    System.out.println("Selected = " + item);
            } catch (Exception e) {
            }
    
            try{
                ButtonField fd = (ButtonField) f;
                System.out.println("********* Button PRESSED = " + f);
                this.close();
            } catch (Exception e) {
            }
    
            System.out.println("*********** Field Count = " + f.getManager().getFieldCount() + " Index = " + f.getIndex());
        }
    
        public String getSelectedItem() {
            return item;
        }
    

    The XXXDialog class is in a separate file of java.

    Can anyone help me on what to do and how to achieve the goal.

    Thank you

    I found my solution. What I did is: -.

    In my main screen, I call the as dialog box

    clScrn.doModal ();

    Dialog.Alert (Come Back here");   I see this alert as soon as the dialog box is closed.

    In my class of dialogue, I have only the Ok button, dialog can be closed using the ESC key as I implemetned the code-

    Dialog box does not close on ESC
    {} public boolean keyChar (key char, int status, int time)
    Boolean retVal = false;
    {Switch (Key)}
    case Characters.ESCAPE:
    break;
    }
    Return retVal;
    }

    So now, there is no other means to close the exception, Ok button dialog box and I make sure that when Ok is clicked, 1 radiobutton is selected.

    Thank you all for the time and effort.

  • Flex app does not work when moved from the original location

    I'm doing a gallery of images in flex. It works when I run it in Flex Builder perfectly fine. Files html and swf works perfectly well open in any browser too, but ONLY when these files and all related files are open to the default location where the application has been generated in bin-debug folder. When I export a generation to another folder, the swf file loads but no other information from the display of the xml file. I tried to set all paths reference files (that is, the xml language) in the flex application to the absolute exact location on the server, and it did not work when I downloaded it on the server.

    I tried several approaches from scratch and they all arrive at the same question. I work with a teaching for Flex Builder License, I'm not sure if they jip you on those and ruin the compiled swf.

    Help, please! I'm losing my mind on that. I think it has to do with something else, in addition to the code because it works fine when I click 'Run', but if someone thinks it is helps for the zip code let me know.

    Often this is because you must add the - use-network = true compiler option in FlexBuilder menu bar:

    Project - Properties - Flex Compiler - additional compiler arguments:

    Add - use-network = true, and then recompile and post back to the server, should work fine.

    Note: If you create a "Release" version and move elsewhere on your local computer, you may need to add - use-network = true, and then recompile the application to access local resources outside the Flex Builder environment.

    If this post answers your question or assistance, please mark it as such.

  • In the dialog box constant value

    Hello

    Is it possible to keep the values in the dialog box once I entered? I mean there is value if I run the script again?

    var myWidth=prompt("PLEASE ENTER YOUR TEXT FRAME WIDTH VALUE (IN POINTS)","")
    

    For example if I get 10, next time, that the default value must be 10.

    Screen Shot 2016-02-25 at 5.32.00 PM.png

    Not sure we can use const not variable (var)?

    Kind regards

    Kitty

    Well, not quite. Before displaying the prompt, you want to extract the label. So move the line before 04 08 and change 04 to something like:

    myWidth = prompt ("Enter etc...", myWidth)

    and then it should work. Obviously, test it first.

    Ariel

  • Script where the zero is not displayed when no value is selected, indicates when a value of zero is selected

    How can I write a calculation script where the zero is not displayed when no value is selected, but when a value field null is selected as part of the zero calculation will show?

    Option 1 has a score of 0 value

    Option 2 has a value of 5 score

    When someone chooses option 1, I want the value 0 to appear at the cell of notation.

    Here is the script that I have so far:

    If (event.value == 0 | event.value == ") event.value =";

    OK, the custom calculation script could be:

    Get the value of the checkbox field

    var v = getField("checkbox1").value;

    Set this field value

    V = Event.Value = "Off"? "" : v;

    Replace "checkbox1" with the actual name of the checkbox.

  • InDesign extension is not displayed when run via the option "Debug as".

    InDesign extension is not displayed when run via the option "Debug as".

    Hi all

    I worked on an application InDesign Extension for a few months now. I am Member creative cloud. I FlashBuilder 4.6 + Extension Builder 2.1 (both licensed versions) and InDesign CS6 and CC installed on my machine. The application is targeted for InDesign CS 5.x and 6 CS and CC versions. So far, I've tested it via "run as" and "Debug as" options of the FB; and in time, I "export as" ZXP for internal versions.

    I'm having two problems, do not know if they are related.

    1. when I try to bundle manifest, it fails with the following error: (at first, I thought it was an installation problem, but I did another test project and bundle manifest works on that one)

    Could not open the Editor: an unexpected exception was thrown.

    Details:

    java.lang.NullPointerException

    at com.adobe.cside.ui.editors.pages.MainBundlePage.isPointProductSupported (unknown Source)

    at com.adobe.cside.ui.editors.pages.MainBundlePage.createTargetAppSection (unknown Source)

    at com.adobe.cside.ui.editors.pages.MainBundlePage.createFormContent (unknown Source)

    to org.eclipse.ui.forms.editor.FormPage$ 1.run(FormPage.java:152)

    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)

    at org.eclipse.ui.forms.editor.FormPage.createPartControl(FormPage.java:150)

    at org.eclipse.ui.forms.editor.FormEditor.pageChange(FormEditor.java:471)

    at com.adobe.cside.ui.editors.BundleManifestEditor.pageChange (unknown Source)

    at org.eclipse.ui.part.MultiPageEditorPart.setActivePage(MultiPageEditorPart.java:1067)

    at org.eclipse.ui.forms.editor.FormEditor.setActivePage(FormEditor.java:603)

    at org.eclipse.ui.part.MultiPageEditorPart.createPartControl(MultiPageEditorPart.java:352)

    at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:670)

    at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:465)

    at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595)

    at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:289)

    at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2945)

    at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2850)

    to org.eclipse.ui.internal.WorkbenchPage.access$ 11 (WorkbenchPage.java:2842)

    to org.eclipse.ui.internal.WorkbenchPage$ 10.run(WorkbenchPage.java:2793)

    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)

    at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2789)

    at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2773)

    at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2756)

    at com.adobe.cside.ui.popup.actions.CSIDEBundleEditorAction.run (unknown Source)

    at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:251)

    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionI tem.java:584)

    to org.eclipse.jface.action.ActionContributionItem.access$ 2 (ActionContributionItem.java:501)

    to org.eclipse.jface.action.ActionContributionItem$ 5.handleEvent (ActionContributionItem.java:411)

    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)

    at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4128)

    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1457)

    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1480)

    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1465)

    at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1270)

    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3974)

    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3613)

    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2696)

    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2660)

    to org.eclipse.ui.internal.Workbench.access$ 4 (Workbench.java:2494)

    to org.eclipse.ui.internal.Workbench$ 7.run(Workbench.java:674)

    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:667)

    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

    at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start (FlashBuilderApplication.ja goes: 108)

    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication (EclipseAppLau ncher.java:110)

    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start (EclipseAppLauncher.jav one: 79)

    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)

    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)

    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)

    at org.eclipse.equinox.launcher.Main.run(Main.java:1410)

    Here is my manifest file:

    <? XML version = "1.0" encoding = "UTF-8"? >

    < ExtensionManifest Version = "2.0" ExtensionBundleId = "ConnectXPress".

    " ExtensionBundleVersion ="1.0.0"xmlns: xsi =" http://www.w3.org/2001/XMLSchema-instance ">

    < author >

    <! [CDATA [Swati Sisodia]] >

    < / author >

    < ExtensionList >

    < extension Id = "com.pubpress.CXP.extension1" Version = "1.0" / > "

    < / ExtensionList >

    < ExecutionEnvironment >

    < parameter Listehotes >

    < host name = "IDSN" Version = "7.0" / >

    < host name = "Clement POUPARD" Version = "7.0" / >

    < / parameter Listehotes >

    < LocaleList >

    < Locale code = 'All' / >

    < / LocaleList >

    < RequiredRuntimeList >

    < RequiredRuntime Name = "CSXS" Version = "2.0" / >

    < / RequiredRuntimeList >

    < / ExecutionEnvironment >

    < DispatchInfoList >

    < Id = "com.pubpress.CXP.extension1 extension" >

    < DispatchInfo >

    < resources >

    < SwfPath >./ConnectXPress.swf < / SwfPath >

    < / resource >

    life cycle of the <>

    < AutoVisible > true < / AutoVisible >

    < / life cycle >

    < UI >

    Panel < type > < / Type >

    ConnectXPress < menu > < / Menu >

    < geometry >

    < size >

    < height > 520 < / height >

    < width > 350 < / width >

    < / size >

    < / geometry >

    < icons >

    < Type icon = 'Normal' >./icons/normal_icon.png < / icon >

    < Type icon = "RollOver" >./icons/rollover_icon.png < / icon >

    < Type icon = "Disabled" >./icons/disabled_icon.png < / icon >

    < Type icon = "DarkNormal" >./icons/dark_icon.png < / icon >

    < Type icon = "DarkRollOver" >./icons/dark_icon.png < / icon >

    < / icons >

    < /UI >

    < / DispatchInfo >

    < / extension >

    < / DispatchInfoList >

    < / ExtensionManifest >

    2. my other problem is, I recently changed the name of the project and the name of the application in the Menu, and since I did that, my extension is not displayed when I perform "run as" or "Debug as" Flash Builder. To enforce as / debug as, the code compiles and appears in the folder "bin-debug", the application is triggered, but when I navigate to Windows > Extensions, my extension is not present here. Although when I export as ZXP and install via Extension Manager CS 6 or CC, it shows my last extension in Windows > Extensions with the correct name.

    Any help is very appreciated. Please let me know if I need to provide more information.

    Kind regards

    Swati.

    I've solved both of my problems. And I thought I'll post for others.

    First problem, where the manifest failed Bundle of FlashBuilder, was resolved by a change in the manifest.xml (who lives at /.staged-extension/CSXS). The change I made was tag. Earlier it was (generated by FlashBuilder 4.5):

    I changed it to:

    I did a bit of hit and trial and it seems that FlashBuilder generated 4.5 tag host with the Version with only the specialties of the minimum version while FlashBuilder 4.6 requires that all versions of specialties listed in the Version attribute.

    The second problem of debug/run as not to install the extension properly in InDesign, has been set as a result of the software update of FlashBuilder.

    This is what brought me to do:

    I retraced my steps and realized last thing I did before the "Debug as Adobe InDesign Extension" of in FlashBuilder broke on my machine has been updated InDesign CS6 to the latest available version, which probably ended up with flash/flex versions of InDesign and FlashBuilder. Therefore, perform a fixed update debugging.

  • Acer toggle display does not display when you use the Fn + F5 key secret on my Acer Aspire 5560

    What it does:

    When you use the Fn + F5 key combination on my Acer Aspire 5560, it brings up a screen changes on the laptop screen for the selection of an external monitor, I am currently using Windows 7 Ulitmate

    Before the problem:

    Display mode switch Acer existed prior to the upgrades of the drivers

    The problem:

    The toggle screen Acer does not display when you use the Fn + F5 key secret on my Acer Aspire 5560?

    Additon Information needed to solve the problem or any other information:

    I would like to know what driver or software operates the Acer toggle display Mode?

    Also where can I find this driver for computer: Acer Aspire 5560 to bring this Acer toggle display Mode function?

    Acer Toggle display Mode: this is a picture of it when you use the Fn + F5 combination:

    Thank you very much Ironfly Ace, it has worked Acer hero of the day

  • When I place my svg file is not displayed in the dialog box

    When I place my svg file is not displayed in the dialog box

    Hi Hernanv24680251,

    Muse so far don't show any dialog box when you place an SVG in it. Please see the link below which explains more using SVG in Muse.

    With the help of Graphics SVG in Muse

    Kind regards

    Vivek

  • My panels are not displayed when I click on it in the menu drop-down windows. The box appears but not the Panel. Can anyone help?

    My panels are not displayed when I click on it in the menu drop-down windows. The box appears but not the Panel. Can anyone help?

    Try to reset your preferences using Cmd (LTRC) - Opt (Alt) - move when restart you the version of AI. Did you once two monitors?

  • Under TOOLS/Account Settings / your name / what I chose for "your name" is not displayed when you send an email. What should do? Thanks, paul

    Question: Under TOOLS/Account Settings / your name / what I chose for "your name" is not displayed when you send an email. What should do? Thank you! Paul

    This looks like a problem with your email service, not with Firefox (or Thunderbird).

    It is possible that you need to set the name sent by logging into your webmail account online (e.g., Yahoo! Mail or Gmail). Web e-mail providers like these often put sending appoint themselves, ignoring the settings of your email client.

    Unfortunately, since it is not a matter of Firefox you're unlikely to get help on these forums. I suggest that you find the support site for your e-mail provider, as they should be much more useful.

  • My lexmark X 7550 printer will not display when uac is enabled.

    Original title: user account problems

    My lexmark printer will not display when uac is enabled. I have a lexmark X 7550. Someone has any ideas

    Hello

    1. what happens when you try to print the User Account Control (UAC) is enabled? You get the error message? After return the correct error message if applicable.
    2. you are connected to a user administrator account?
    3. don't you make changes on the computer before this problem?

    I suggest you install the latest printer driver and check.
    http://support.Lexmark.com/index?locale=en&ProductCode=LEXMARK_X7550&UserLocale=en_US&segment=download&OS=WINDOWS_VISTA&page=downloadsList&oslocale=en_US

  • My problem is that when I try to save an image from Adobe Photoshop by using the 'save for Web' half of the dialog box does not appear.

    I use a Vista Home Premiuim Windows in an Acer Aspire One 10.1 "." My problem is that when I try to save an image from Adobe Photoshop by using the 'save for Web' half of the dialog box does not appear. Can someone help me please?

    Here is a screenshot of my problem...
    [IMG] http://i55.tinypic.com/of5w01.png [line]
    Help me please.

    Hello

    1. were you able to see the front dialog box?

    2. did you of recent changes to the computer?

    This happens because your screen resolution is less than the required minimum of 1024 x 768.

    You can try to change the resolution of the monitor and check.

    For more information, see the link:

    Change settings display on multiple monitors

    Change the screen resolution

    You can also refer to Adobe support links and also post your request in the Forum from Adobe for assistance:

    http://forums.Adobe.com/thread/433020?TSTART=0

    http://kb2.Adobe.com/CPS/403/kb403268.html

    http://forums.Adobe.com/community/Photoshop/photoshop_windows

    Hope this information is useful.

  • Sharing Facebook picture is not displayed when I use an image which is transferred to Eloqua

    Hello

    I've implemented the standard functionality of sharing Facebook on a Landing Page.

    Anyone know why the Facebook sharing image is not displayed when I use an image which is transferred to Eloqua.

    As soon as I change the path of the image to an external server/site, the Facebook sharing image does not work.

    Any ideas? Everyone knows about this problem as well? And can it be resolved without the help of an external server/site?

    Thank you in advance.

    I suspect it's the media as well. To test that for sure, drop this URL in bitly to get a shorter URL without brackets and replace the longer URL, bracketed by the short URL. What will you do at least know whether or not that is the question.

  • SGV item is not displayed when downloaded html

    Image SGV referred to as in http://motorimageworks.com/Gav/index.html is not displayed when all edge generated files are downloaded to--and yet it works fine when all the edge files are read on the local hard drive.

    The code was generated with Edge and remains raw - it is a simple document with a layer of SGV any

    In the meantime - the raw SGV works when played directly on the server ("describes" text from illustrator) - http://motorimageworks.com/gav/images/for.svg

    All things being equal - when we have included GIFs layer in the same file, gif displays fine in line while svg is not there - so it can't (I think not) be a simple relative or absolute for issues of image path. Naturally, the SGV may be displayed but without black fill I guess but why would it only when it is on a www server.

    I'm stumped and would have thought that Edge would not need tweaking on such a file but even if we would like to play with such things far so suggestions or of the popular workarounds.

    Thank you

    Hey Gav,

    In the post below, Schrene explains how to enable SVG support via a .htaccess file:

    http://forums.Adobe.com/thread/994839?TSTART=30

    To quote Schrene:

    You only see your s on Go Daddy SVG because they do not support of SVG MIME type.

    You must add a file .htaccess on Go Daddy to include SVG

    Use Notepad and disable Word wrap... copy and paste this:

    AddType image/svg + xml .svg day

    AddEncoding x-gzip day

    Save the document with the .htaccess

    Place it in your root directory of sites

Maybe you are looking for

  • Anyone who works with the CAF (Caltech intermediate Format) files in LabVIEW?

    Hey everybody, Anyone who works with the CAF (Caltech intermediate Format) files? These are files that are generated by IC layout programs, such as TannerEDA L-Edit, that define the layers and arrangement of the masks used in VLSI (Photolithography)

  • Why this update made my vista looks like 98? (screenshot)

    Hello I recently installed updates for Windows Vista on my laptop. I stopped him and turned on the next day to find the Start button, toolbar and all windows look as if they have a style of windows 98 for them. It was also a message about accounts ho

  • Inspiron 1721 operating system 32-bit home premium 2006

    I have an inspiron 1721 32-bit operating system, the home premium 2006 with the disc of the operating system, drivers & utility disk, microsoft works suite 2006. In what order should I load them. After that, I think I need service pack 1 and service

  • C:\Windows\system32\avrt.dll error when running Windows Media Player

    When I turn on my computer or try to run Windows Media, I get the error C:\Windows\system32\avrt.dll. I have Windows Vista Home Premium and Microsoft Media Player version 11. I ran several spyware, viruses and malware, and they come to own. I was tol

  • This policy is locked per ticket.

    Hello world I added the device to the CSM. Now under the platform when I click on what anyone say clock, boot image I see the empty entries and a yellow line on the top saying: this post is locked per ticket. Thank you MAhesh