JDeveloper 11.1.2.1, IE8 and erratic popup behavior

I am trying to do a simple proof of concept in JDeveloper 11.1.2.1 involving a databound table and a popup. I want to add a row to the table by filling in a form on the popup. The popup is opened via an action by clicking a button in the form. I used the Code Corner example #77 as a template for adding rows. Using IE8 (not in compatibility mode), I click on the "Add" button and the popup opens. However, error messages in the dialog also appear indicating that non-null fields require values. Here's where it gets interesting. If I create the exact same form, managed bean, entity/view objects in JDeveloper 11.1.1.6, then everything works fine while adding rows. I am guessing I am missing some sort of property setting, but I have yet to find it. I am new to JDeveloper/ADF. Form structure and managed bean code is below. Any ideas?
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<af:document title="popuptest.jsf" id="d1">
<af:messages id="m1" inline="false"/>
<af:form id="f1">
<af:table value="#{bindings.allDepartments.collectionModel}" var="row"
rows="#{bindings.allDepartments.rangeSize}"
emptyText="#{bindings.allDepartments.viewable ? 'No data to display.' : 'Access Denied.'}"
fetchSize="#{bindings.allDepartments.rangeSize}" rowBandingInterval="0"
selectedRowKeys="#{bindings.allDepartments.collectionModel.selectedRow}"
selectionListener="#{bindings.allDepartments.collectionModel.makeCurrent}" rowSelection="single"
id="t1" partialTriggers="::cb1" binding="#{CreateDepartmentPageHelper.departmentsTable}">
<af:column sortProperty="#{bindings.allDepartments.hints.DepartmentId.name}" sortable="false"
headerText="#{bindings.allDepartments.hints.DepartmentId.label}" id="c1">
<af:outputText value="#{row.DepartmentId}" id="ot1">
<af:convertNumber groupingUsed="false"
pattern="#{bindings.allDepartments.hints.DepartmentId.format}"/>
</af:outputText>
</af:column>
<af:column sortProperty="#{bindings.allDepartments.hints.DepartmentName.name}" sortable="false"
headerText="#{bindings.allDepartments.hints.DepartmentName.label}" id="c2">
<af:outputText value="#{row.DepartmentName}" id="ot2"/>
</af:column>
<af:column sortProperty="#{bindings.allDepartments.hints.ManagerId.name}" sortable="false"
headerText="#{bindings.allDepartments.hints.ManagerId.label}" id="c3">
<af:outputText value="#{row.ManagerId}" id="ot3">
<af:convertNumber groupingUsed="false"
pattern="#{bindings.allDepartments.hints.ManagerId.format}"/>
</af:outputText>
</af:column>
<af:column sortProperty="#{bindings.allDepartments.hints.LocationId.name}" sortable="false"
headerText="#{bindings.allDepartments.hints.LocationId.label}" id="c4">
<af:outputText value="#{row.LocationId}" id="ot4">
<af:convertNumber groupingUsed="false"
pattern="#{bindings.allDepartments.hints.LocationId.format}"/>
</af:outputText>
</af:column>
</af:table>
<af:commandButton text="Add" id="cb1" partialSubmit="true"
action="#{CreateDepartmentPageHelper.cb1_action}"/>
<af:popup autoCancel="enabled" id="p1"
binding="#{CreateDepartmentPageHelper.popup}"
contentDelivery="lazyUncached" eventContext="self">
<af:dialog id="d2">
<f:facet name="buttonBar"/>
<af:panelFormLayout id="pfl1">
<af:inputText value="#{bindings.DepartmentId.inputValue}"
label="#{bindings.DepartmentId.hints.label}"
required="#{bindings.DepartmentId.hints.mandatory}"
columns="#{bindings.DepartmentId.hints.displayWidth}"
maximumLength="#{bindings.DepartmentId.hints.precision}"
shortDesc="#{bindings.DepartmentId.hints.tooltip}" id="it1">
<f:validator binding="#{bindings.DepartmentId.validator}"/>
<af:convertNumber groupingUsed="false" pattern="#{bindings.DepartmentId.format}"/>
</af:inputText>
<af:inputText value="#{bindings.DepartmentName.inputValue}"
label="#{bindings.DepartmentName.hints.label}"
required="#{bindings.DepartmentName.hints.mandatory}"
columns="#{bindings.DepartmentName.hints.displayWidth}"
maximumLength="#{bindings.DepartmentName.hints.precision}"
shortDesc="#{bindings.DepartmentName.hints.tooltip}" id="it2">
<f:validator binding="#{bindings.DepartmentName.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.ManagerId.inputValue}" label="#{bindings.ManagerId.hints.label}"
required="#{bindings.ManagerId.hints.mandatory}"
columns="#{bindings.ManagerId.hints.displayWidth}"
maximumLength="#{bindings.ManagerId.hints.precision}"
shortDesc="#{bindings.ManagerId.hints.tooltip}" id="it3">
<f:validator binding="#{bindings.ManagerId.validator}"/>
<af:convertNumber groupingUsed="false" pattern="#{bindings.ManagerId.format}"/>
</af:inputText>
<af:inputText value="#{bindings.LocationId.inputValue}"
label="#{bindings.LocationId.hints.label}"
required="#{bindings.LocationId.hints.mandatory}"
columns="#{bindings.LocationId.hints.displayWidth}"
maximumLength="#{bindings.LocationId.hints.precision}"
shortDesc="#{bindings.LocationId.hints.tooltip}" id="it4">
<f:validator binding="#{bindings.LocationId.validator}"/>
<af:convertNumber groupingUsed="false" pattern="#{bindings.LocationId.format}"/>
</af:inputText>
</af:panelFormLayout>
</af:dialog>
</af:popup>
</af:form>
</af:document>
<!--oracle-jdev-comment:preferred-managed-bean-name:CreateDepartmentPageHelper-->
</f:view>
BACKING BEAN CODE:
package view;
import javax.faces.context.FacesContext;
import oracle.adf.model.BindingContext;
import oracle.adf.model.binding.DCIteratorBinding;
import oracle.adf.share.ADFContext;
import oracle.adf.view.rich.component.rich.RichPopup;
import oracle.adf.view.rich.component.rich.data.RichTable;
import oracle.adf.view.rich.context.AdfFacesContext;
import oracle.adf.view.rich.event.DialogEvent;
import oracle.adf.view.rich.event.DialogEvent.Outcome;
import oracle.adf.view.rich.render.ClientEvent;
import oracle.binding.BindingContainer;
import oracle.binding.OperationBinding;
import oracle.adf.view.rich.util.ResetUtils;
import oracle.jbo.Row;
import oracle.jbo.server.ViewRowImpl;
public class CreateDepartmentPageHelper {
//old "current row" value is saved in view scope in case the rw creation is
//cancelled, in which case this row needs to become current again
final String OLD_CURR_KEY_VIEWSCOPE_ATTR = "__oldCurrentRowKey__";
private RichPopup popup;
private RichTable departmentsTable;
public CreateDepartmentPageHelper() {
public void setPopup(RichPopup popup) {
this.popup = popup;
public RichPopup getPopup() {
return popup;
//system generated method when you create a managed bean method for
//a component that has an ADF binding referenced in its action listener
public BindingContainer getBindings() {
return BindingContext.getCurrent().getCurrentBindingsEntry();
//command action that create a new row in teh departments table and then
//opens an edit dialog for commit/cancel
public String cb1_action() {
BindingContainer bindings = getBindings();
//get current row and save its rowKey in view scope for later use
DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("allDepartmentsIterator");
Row oldCcurrentRow = dciter.getCurrentRow();
//ADFContext is a convenient way to access all kinds of memory scopes.
//If you like to be persistent in yur ADF coding then this is what you
//want to use
ADFContext adfCtx = ADFContext.getCurrent();
adfCtx.getViewScope().put(OLD_CURR_KEY_VIEWSCOPE_ATTR,
oldCcurrentRow.getKey().toStringFormat(true));
//perform row create
OperationBinding operationBinding = bindings.getOperationBinding("CreateInsert");
Object result = operationBinding.execute();
if (!operationBinding.getErrors().isEmpty()) {
return null;
//access the popup dialog and bring it up. The reference is through a
//JSF component binding reference using the popup "binding" property
RichPopup popup = this.getPopup();
RichPopup.PopupHints hints = new RichPopup.PopupHints();
//empty hints renders dialog in center of screen
popup.show(hints);
return null;
public void onDialogAction(DialogEvent dialogEvent) {
Outcome outcome = dialogEvent.getOutcome();
//the dialog event only propagates yes, no, ok actions to the
//server. The cancel outcome is only available on the browser
//client. If there is a need to handle the cancel even then you
//need to use a clientListener and JavaScript as we do on this
//example
if(outcome == Outcome.ok){
//commit
BindingContainer bindings = getBindings();
OperationBinding operationBinding = bindings.getOperationBinding("Commit");
Object result = operationBinding.execute();
if (!operationBinding.getErrors().isEmpty()) {
//handle errors if any
return;
AdfFacesContext.getCurrentInstance().addPartialTarget(this.getDepartmentsTable());
public void setDepartmentsTable(RichTable departmentsTable) {
this.departmentsTable = departmentsTable;
public RichTable getDepartmentsTable() {
return departmentsTable;
//method that is called from the serverListener on the client. The server
//listener is used to queue a custom event and pass information from the
//client to the server using JavaScript. Its actually doing this Ajax thing
//that everyone wants to do using the XmlHTTPRequest object
public void onDialogCancel(ClientEvent clientEvent) {
BindingContainer bindings = getBindings();
RichPopup popup = this.getPopup();
popup.hide();
ResetUtils.reset(clientEvent.getComponent());
//the cancel operation is executed with immediate=true to bypass the
//model update. Therefore we manually deletethe new row from the iterator
DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("allDepartmentsIterator");
dciter.removeCurrentRow();
//set current row back to original row
ADFContext adfCtx = ADFContext.getCurrent();
String oldCurrentRowKey = (String) adfCtx.getViewScope().get(OLD_CURR_KEY_VIEWSCOPE_ATTR);
dciter.setCurrentRowWithKey(oldCurrentRowKey);
AdfFacesContext.getCurrentInstance().addPartialTarget(this.getDepartmentsTable());
FacesContext fctx = FacesContext.getCurrentInstance();
//we don't want to continue with the remainder of the lifecycle and
//thus skip the rest
fctx.renderResponse();
}

Hi Frank,
Thanks for the reply. I retested with a .jspx file just to confirm my results. I've tried Facelets as well without success. Results for .jspx are as follows:
1. If the add button PartialSubmit property is set to true, and the popup's ContentDelivery=lazyUncached, ChildCreation=deferred, and AutoCancel=disabled, then:
the popup appears with error messages outlining the required fields
2. If the add button PartialSubmit Property is set to false and popup properties are the same as above then the popup opens as expected. However, if an attempt is made to insert a duplicate record - using departments table as an example, trying to create a row with an existing department - then a red box appears around the DepartmentId cell in the popup without any error message. If I press OK again, then the duplicate key error message appears as expected.

Similar Messages

  • Ghost circles and erratic mouse behavior

    I have these light colored circles in the upper to middle left part of the screen and my mouse keeps jumping to these dots and I have virtually no control of my mouse. Is there a real solution to this problem as I have already hundreds of posts about it but no apparent actual fix.

    Hello , Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More. I have read your post on how ghost circles and erratic mouse behaviour appear on the screen of your desktop computer, and I would be happy to assist you in this matter! To correct this issue, I recommend following the steps in this document on HP All-in-One PCs - Troubleshooting Touch Screen Issues (Windows 8). This should help return the functionality to your touch screen. I also suggest following the steps in this document on HP PCs - Wireless Keyboard and Mouse Troubleshooting, which should help correct the intermittent cursor behaviour. If the circles still appear, and the mouse still behaves erratically, I recommend returning your system back to a previous restore point before the issue occurred. This can be done by following the steps in this document on Using Microsoft System Restore (Windows 8).
    Should the problem continue, I suggest performing a backup and recovery of your operating system. This can be done by following the steps in this resource on Backing Up Your Files (Windows 8), as well as Performing an HP system recovery (Windows 8). This should return your system back to factory defaults.
    If the issue continues, please contact our technical support for further assistance in this matter by clicking the link below to get the support number for your region.
    www.hp.com/contacthp/
    I hope this helps!
    Regards

  • IMAC and external screen--screen flickering and erratic mouse behavior

    I have purchased a screen Medion 25.5 inch to connect it to my IMAC 27 inch.
    I have noticed two unexpected behaviours:
    - from time to time, after the IMAC comes out of the SLEEP mode, the external screen is flickering, I need to put the IMAC to sleep one or several times before the display of the external screen becomes stable.
    - since I connected the external screen, the behavior of the mouse is highly erratic, eg when I move the mouse by a fraction of a millimeter, the display of the mouse pointer moves by half a screen, or even disappears completely. I have performed many tests, with several apple mice, a Dell mouse and a Microsoft mouse. As soon as I completely disconnect the screen (not only power the screen down) the mouse works normally again. I have now decided to stop using the external screen until a software update resolves the situation.
    Any advice?
    Patrick

    When my 2008 24" iMac started to die from overheating, two of the symptoms I would see would be white flickering from the bottom going about half way up, like it was going blank and repainting the screen over and over. Also, the mouse pointer would jump erratically to all the edges and corners of the screen. After a few seconds, it might recover or it might freeze. I would use a program like iStat Pro to see what your temps are when you attach that screen. I suspect it may be excess heat due to the GPU now pushing two screens instead of 1?
    Also try diags, and all those reset thingies people keep mentioning over and over.
    First and foremost, if you have coverage, contact a "genius" and let him belittle you with his expertise.

  • Af:popup is not opening in IE8 and Mozilla

    Hi Team,
    we are opening a popup to show table but it is not working IE8 and Mozilla, when we click on the link, IE is hanging and we are unable to proceed. Please check below code and help me where i am doing wrong.
    <af:popup contentDelivery="lazyUncached" id="p7"
    binding="#{pageFlowScope.ReviewApproversBean.roleGroupPopup}">
    <af:panelWindow title="#{pageFlowScope.groupRoleName}" inlineStyle="width:300.0px;"
    closeIconVisible="true" id="pw8">
    <af:panelGroupLayout layout="vertical" id="pgl31">
    <af:table var="row2" rowBandingInterval="0" disableColumnReordering="true" contentDelivery="immediate"
    value="#{pageFlowScope.ReviewApproversBean.commonApprovers}" width="100%"
    id="t22" autoHeightRows="0" columnStretching="multiple" columnSelection="none">
    <af:column sortable="false" headerText="#{gedmuiBundle.NAME}" id="cs325" width="50%">
    <af:outputText value="#{row2.approverName}" id="otd223"/>
    </af:column>
    <af:column sortable="false" headerText="#{gedmuiBundle.SSO}" id="c325" width="50%">
    <af:outputText value="#{row2.approverSSO}" id="ot323"/>
    </af:column>
    </af:table>
    <af:panelGroupLayout layout="horizontal"
    halign="center" id="pgl32">
    <af:commandButton text="#{gedmuiBundle.CLOSE}"
    styleClass="goButton"
    id="cb20"
    actionListener="#{pageFlowScope.ReviewApproversBean.closeGroupPopup}"/>
    </af:panelGroupLayout>
    <f:facet name="separator">
    <af:spacer width="1" height="5" id="s37"/>
    </f:facet>
    </af:panelGroupLayout>
    </af:panelWindow>
    </af:popup>
    Thanks
    Kuladeep

    I have read that older versions require the compatability, and the version you specified (and earlier) I think is the version that had the issue. I suspect an upgrade of Jdeveloper is the solution and that may open a whole other can of worms.
    Here is an article on it https://blogs.oracle.com/jdevotnharvest/entry/running_adf_faces_applications_with_ie_9_in_ie_8_compatibility_mode
    Stuart
    Edited by: Stuart Fleming on Aug 24, 2012 11:25 AM

  • Help - Problems with the Compatibility IE8 and IE9 (ADF)

    I want to know because some parts do not fit in IE browsers versions 8 and 9. I've done these actions of this tutorial but I saw the compatibility mode is enabled on the page components to function normally. But the bigger problem is compatibility with AJAX components, which have tables that update when the information is recorded in real time, shows a loading bar (which is a component that fetch data) when you enter information, this bar when the browser is in compatibility mode (IE9) remains on the screen no action, and when the page is removed this compatibility mode works but load bar components are inserted all dysfunctional again, ie the application works perfect works only in firefox but the problem is I need to work on IE9, here's the link that made the changes,
    [http://blogs.oracle.com/jdevotnharvest/entry/running_adf_faces_applications_with_ie_9_in_ie_8_compatibility_mode|http://blogs.oracle.com/jdevotnharvest/entry/running_adf_faces_applications_with_ie_9_in_ie_8_compatibility_mode]
    If anyone has experienced this and can give a help

    Hi,
    think I should remove the blog post or make it more apparent that this is for testing purposes only. ADF Faces does not support IE compatibility mode in production because of known issues in IE. So while you can use the solution I documented to install a newer version of IE while still developing for an older version, it is not supported at runtime. In your case, use IE9 native (or install IE8 and use this native) and run it with a JDeveloper version that is certified for the browser version.
    Anything showing different in IE9 native than in IE 8 native (using a JDeveloper version certified for IE9) then can be considered a bug
    Frank

  • File does not exist: /www/public_html/null, referer:  - error in log file from IE8 and IE9

    I just updated an existing slide show that was created several months back. Since loading my new set of files to our web server, we keep getting the following error in our server log files when someone loads our page in IE8 and IE9:
    File does not exist: /www/public_html/null, referer:
    One of our programmers tracked the error to this line of code, but we're not sure what's causing it:
    Muse.Utils.addSelectorFn('#slideshowu70', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {autoPlay:true,displayInterval:6000,slideLinkStopsSlideShow:false,transitionStyle:'horizo ntal',lightboxEnabled_runtime:false,shuffle:false}); });/* #slideshowu70 */
    Any suggestions?
    Thanks!

    The errors aren't showing up on the client side, only in the server access logs. Every time the page is loaded with IE8 or IE9 and the Muse.Utils.addSelectorFn with the #slideshowu70 line is hit, it generates four errors in the server access logs.
    Our admin guy pulled the errors from where it was clicked on from the Adobe forum. He said it also appeared that you tested it with www added to the url (if this was when you were testing it)...
    [Mon Feb 04 13:58:57 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:00 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:08 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:33 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    [Mon Feb 04 13:59:43 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    The reason we find it strange is because it did not result in errors with the previous version of the slideshow. The only thing that changed this time around is that I removed some slides and added additional ones, but I noticed that there is a lot of difference in the code and even the scripts that are used. And I did copy over all of the scripts, css files, etc., so it's using all of the new source files.
    I was hoping it was something that you guys had noticed if you review the access logs when you're testing. While it works perfectly on the client side, the IT guys do go through our access logs, so it would be nice to eliminate the errors.
    Thanks for looking at it!

  • Some web pages come up blank, generally following a link, that have opened without issues in earlier FF versions. Pages open OK in IE8 and/or in Chrome. Have tried the cookies clearing etc as suggested elsewhere, without success.

    I'm running FF 3.6.8. Certain websites (no apparent pattern, no secure sites) come up blank (white screen), showing "Done" on the footer. It generally happens when clicking on a link in another web page but no login or similar is involved to get to the intended site. Have cleared the cookies and followed the advice for a similar issue stated elsewhere on the Help forum, to no avail. Have also not added any add-ons since that recent FF upgrade.
    The affected sites have come up without issues in earlier FF versions, and they do load in IE8 and in Chrome. A representative example is shown below. - Will appreciate any helpful comments and recommendations!

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"<br />
    "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"<br />
    <br />
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).<br />
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]<br />

  • Bookmarks in ie8 and safari do not sync to iphone and ipad

    IE version 8
    iphone 4, ios 4.3.3
    ipad 2, ios 4.3.3
    itunes 10.3
    Windows XP SP3
    Hello everyone, hope someone could help me..
    I really want to sync my bookmarks from my PC to my iphone and ipad but it doesn't seem to work. I already tried the following but they all failed:
    1. Clear Sync history
    2. Clear cache, cookies and history from iphone/ipad
    3. uncheck sync bookmarks in itunes, then sync. then re-check then sync again.
    4. I tried deleting all bookmarks in IE8 and then re-creating them, then sync afterwards
    All these methods failed. Everytime I try and sync itunes with my iphone/ipad, the sync is successful but bookmarks is left out. No syncing happens for bookmarks. Apps, music and contacts sync work fine though..
    Hope you could help thanks!!

    No bookmarks bar folder is created
    For perspective, my IE8 has bookmarks both in Favorites bar and in Favorites (apparently they are different). I did this to ensure that it's not just a matter of wrong bookmark location in IE. am i doing something wrong?
    Also, when I sync there is this one bookmark (google reader) that keeps on popping up even though I manually delete it in my iphone. It suddenly shows up after every sync.

  • JDeveloper 11.1.1.5.0 and the Fusion Order Sample Application

    Hi all
    I am trying to explore SOA Suite 11g features, particularly the BPM part. I am unable to find any tutorials relating to this feature (can someone point me to some?) and therefore am trying to simply install the Fusion Order demo to have a look around myself.
    I have installed JDeveloper 11.1.1.5.0 (and the SOA Composite Editor and BPM Studio add-ins) and am trying to get the Fusion Order demo to work with it. I downloaded the zip file from http://www.oracle.com/technetwork/developer-tools/jdev/learnmore/fod1111-407812.html and followed the instructions there but when I try to run the StoreFrontUI project all I get is a blank screen.
    The server log has messages:
    <AzUtil> <getPermClassLoadingErrorMessage> Cannot instantiate permission class "oracle.fodemo.storefront.store.view.AccountPermission", target "AccountPermission", or actions "view" as defined in the system policy context.
    and
    <ADFContext> <getCurrent> Automatically initializing a DefaultContext for getCurrent.
    Then theses messages appear
    <ApplicationImpl> <createComponent> JSF1004: Cannot instantiate component of type oracle.dss.adf.graph.Graph
    <NavigationPaneRenderer> <_renderContent> Warning: There are no items to render for this level
    I have also tried running the login.jspx page directly, which loads and presents me with a login screen, but using the FOD/fusion combination I had in the Build.Properties.xml I get the message invalid username/password and again get the message
    <AzUtil> <getPermClassLoadingErrorMessage> Cannot instantiate permission class "oracle.fodemo.storefront.store.view.AccountPermission", target "AccountPermission", or actions "view" as defined in the system policy context.
    Can anyone suggest what I might be happening, what I've done wrong?
    Thanks
    Roy

    Just for verification - which version of FOD did you download? what's the zip name?
    For SOA tutorials doucmentation on getting started see the SOA section here:
    http://download.oracle.com/docs/cd/E21764_01/develop.htm
    You might want to try posting on the SOA Suite forums for more tips on getting started.

  • Different output observed in IE8 and IE11 for same HTML file

    when I open the below html code in ie8 and ie11 the output is different.
    <div style=" color: EAE6F1; " id="Screen147">
    <img style=" width: 1280; height: 1020; " id="item1" src="Desert.jpg" border="0"/>
    <div style=" background-color: FFFFFF; color: 000000; font-family: 'Arial'; font-size: 31px; layout-grid: both fixed 51px 32px; white-space: nowrap; " id="item2">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    </div>
    <div style=" background-color: FFFFFF; color: 000000; font-family: 'Arial'; font-size: 31px; layout-grid: both fixed 51px 32px; white-space: nowrap; " id="item3">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    </div>
    <div style=" background-color: FFFFFF; color: 000000; font-family: 'Arial'; font-size: 31px; layout-grid: both fixed 51px 32px; white-space: nowrap; " id="item4">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    </div>
    I want to display a white block in the image. but when run in IE8 the white block appears bigger as compared to when displayed in IE11. 
    I wanted to know why is this behaviour and if the code is same then the output should also be the same. can anyone help me to understand this behaviour?
    thank you very much in advance for your replies.

    Hi yashajmera,
    Same script gets different results ,just as Greg said this may be related to the different rendering pages methods between different Internet Explorer versions.
    Here is a link for reference :
    Specifying legacy document modes
    https://msdn.microsoft.com/en-us/library/jj676915(v=vs.85).aspx
    We also can try to choose different view mode by F12 tool to have a check .
    To get more detailed information ,it is recommended to look for help from our MSDN forum for help.
     https://social.msdn.microsoft.com/Forums/ie/en-US/home?forum=iewebdevelopment
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • IE8 and IE9 issues

    Created a site in DW CS3. Recently Made some modifications using DW CS3 and added some new rollovers. Everything previews correctly in Safari, Firefox, Opera and IE5.2 (mac).
    When viewed in IE8 and IE9 I get colored outlines around some of the rollover images. This does not occur on the rest of the site, only where I added the new rollovers. I added the bottom two rollovers, but the older top two rollovers are also affected. Does anyone have any ideas?
    This is a link to the page
    http://www.gfigenfare.com/Services/Serv_SpPrts.html
    Below is a screen shot of the page from IE9
    Thanks

    You have a stray <html> tag in your head.
    I think you need to close off your <img> elements with a back slash at the end like this:
    <img src="../Home/images_home/Contact_out.gif" alt="contact us" name="ContactImage" width="199" height="62" border="0" />
    Some of your other errors occur I think, because you are using deprecated attributes.  At least I think that's the case.  I don't think they will muck your layout up but then, I never have used a table based layout.
    One thing that you could try is to use HTML Tidy in the validator - http://validator.w3.org/  There's a check box there under "more options" that will run your code through that and it will spit out your page all neat and tidy at the end of the results page.  It adds its own meta tag to show that you used it.  I always remove that so people can't see I cheated.  I don't like using it because for me it circumvents the whole learning thing.  Easy, but no help for the future.
    It is a bit of a blunt instrument I think and I would always use it with caution.  It should only take minutes so what I would try is to duplicate your page in DW, rename it testpage.html or something, run the validator on your existing page, copy the whole of the code that it spits out for you, delete the exising code in your test page and paste that in and then er... test it.
    What HTML Tidy will do for instance, is add in things like unclosed elements.
    Martin

  • Tab key won't work. Works in IE8 and Safari but not Firefox. Thoughts?

    About a week ago, the tab key stopped working in Firefox (when I updated Firefox?). It works fine in IE8 and Safari. I love Firefox but will have to switch if I can't get this resolved.
    Thanks.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • JDeveloper 10.1.3.5.0 and jdk1.7.0_06

    Hi,
    I'm trying to use JDeveloper 10.1.3.5.0 with jdk1.7.0_06 and i'm getting the error "Unable to launch the Java Virtual Machine" at path... when trying to launch JDeveloper.
    I checked the path and jvm.dll is on the right path : path\jdk1.7.0_06\jre\bin\client\jvm.dll.
    I changed the jdev.conf with SetJavaHome set to path\jdk1.7.0_06.
    What other configuration should I make ?
    How do I know which Java version is supported by this version of JDeveloper ?
    Thank you for your help...
    Cheuyi

    Read the install guide for your version and you'll see that 10.1.3 is not certified with JDK 1.7
    Try using JDeveloper 11.1.1.6 instead.

  • Mozella 3.6 will not run well with Adobe Flash Player 10.1-- IE8 and Adobe Fpash Player 10.1 does work

    I use filehippo.com to automatically update my applications. So I have Mozella 3.6 and then recently downladed and installed Adobe Flash player 10.1 or the latest version.
    I then proceed to http://www.africam.com/wildlife/lc_player_chat.php?sh=nk-1
    and found that the picture will not show- I get a running circle and then a brown square instead of the pic.
    Now using IE8 and the same version of Adobe Flash Player I get the picture.
    This worked in Mozella before the last update of Adobe.
    Can you give me any direction to fix this?

    Hi, not sure what that is about. Did you use the Adobe Uninstaller first and follow the instructions?
    I would download the Uninstaller and SAVE it to your Desktop:
    http://kb2.adobe.com/cps/141/tn_14157.html
    Then I would download and SAVE the Installer to your Desktop:
    http://www.adobe.com/products/flashplayer/fp_distribution3.html Use the EXE Installer for Windows/IE
    Once you have that done, then Close all browsers, disable any messenger services in the system tray(area near the clock)
    Run the Uninstaller and when it is finished, Reboot(restart) your computer.
    Then run the Installer and reboot when it is finished.
    Then test here and you should see the Flash logo animation and the version of Flash Player that is Installed.
    http://www.adobe.com/software/flash/about/
    Let me know if you have any questions,
    eidnolb
    Message was edited by: eidnolb      Link

  • ADF application Issue with IE8 and IE9

    Hi Everybody,
    We are developing application under ADF. The application works fine in Firefox and chrome but when we open the application in IE8 and IE9 it pop up a message saying compatibility view should be turned off.Even though we turn off the compatibility view mode,The task flows that launches the jsff page are displaying blank page.In other words , I am not able to see any UI components in the page.Anybody has a clue on this?.Please Help
    Thanks,
    Harish
    Edited by: 886523 on Oct 17, 2012 4:08 AM

    Hi,
    rule number 1: This is a public forum. Please don't post issues regarding internal builds. Only issue related to public builds should be posted here!
    Beside of this, your post doesn't provide enough information to reproduce the problem (or a test case to try and run)
    Frank

Maybe you are looking for

  • Modify Application: Error Message:: Object Variable or With Block variable

    Hi Experts, We just installed 5.1 on our server and once the application is installed. When I try to modify the aplication I get this error at the end This is step what the modify app does: Check environment information Drop Fact table index. Modify

  • Material Groups and SOX

    Our users create shopping carts in SRM.  For the catalog orders, the material group is automatically determined based on the UNSPSC code that is being passed back from the vendor.  However, for those non-catalog orders, users must select the appropri

  • Cannot find the content repository ID in link table

    Gurus: I have a content repository ID  AA and AA's link table is TOA01 defined in OAC3. However, AA is not in TOA01 at all. Is this a problem? Thanks!

  • Photos on iPhone

    My synced MacBook Pro broke - how do I get the photos off my iPhone on to my new computer? Not the ones I took with the phone, but the ones I put ON the phone.

  • Oracle Inventory Stock Location in a Subinventory - Locators vs DFF

    Has anyone covered the topic of options for recording the location of an item in a subinventory when the business has a clear rule that an item in a subinventory will only ever exist in one location? The functionality in Oracle inventory for locators