CFGRID format=HTML not working in IE8

I'm using Cold Fusion 10 and trying a cfgrid and it does not work in IE8.  It works perfectly in FF, of course. :-).
It IS within a Cfform in my .cfm file.  Even when I take it down to it's simplest form to try to debug it doesn't work, but here is my original code:
<cfgrid name = "FirstGrid"
        height="200" width="700"
        font="arial" fontsize="12"
        query = "Getdates"
        SORT="Yes"
        selectmode="edit"
        format="html"
        >
        <CFGRIDCOLUMN NAME="anumber" DATAALIGN="LEFT"
        BOLD="No" ITALIC="No"
        SELECT="No" DISPLAY="No"
        HEADERBOLD="No" HEADERITALIC="No">
    <CFGRIDCOLUMN NAME="schoolyear" HEADER="School Year"
        HEADERALIGN="LEFT" DATAALIGN="LEFT"
        BOLD="Yes" ITALIC="No"
        SELECT="Yes" DISPLAY="Yes"
        HEADERBOLD="No" HEADERITALIC="Yes">
    <CFGRIDCOLUMN NAME="doh" HEADER="Date of Hire"
        HEADERALIGN="LEFT" DATAALIGN="LEFT"
        BOLD="No" ITALIC="No"
        SELECT="Yes" DISPLAY="Yes"
        HEADERBOLD="No" HEADERITALIC="No" type="date">
    <CFGRIDCOLUMN NAME="leavedate" HEADER="Leave Date"
        HEADERALIGN="LEFT" DATAALIGN="LEFT"
        FONT="Times" BOLD="No"
        ITALIC="No" SELECT="Yes"
        DISPLAY="Yes" HEADERBOLD="No"
        HEADERITALIC="No">
    <CFGRIDCOLUMN NAME="Returnfromleavedate" HEADER="Return From Leave Date"
        HEADERALIGN="LEFT" DATAALIGN="LEFT"
        BOLD="No" ITALIC="No"
        SELECT="Yes" DISPLAY="Yes"
        HEADERBOLD="No" HEADERITALIC="No">
    <CFGRIDCOLUMN NAME="terminatedresignedretireddate" HEADER="Terminated/Resigned/Retired"
        HEADERALIGN="LEFT" DATAALIGN="LEFT"
        BOLD="No" ITALIC="No"
        SELECT="Yes" DISPLAY="Yes"
        HEADERBOLD="No" HEADERITALIC="No">
    </cfgrid>
Thanks for any help!
B.

Sorry, I should have used the code tags. Let me ask that again.
I have HTML formatted data stored in VARCHAR2 columns on the database for which I am using a stylesheet to format into XSL-FO to resolve the HTML tags. For example, my data template populates a field PARAGRAPH_TEXT with content such as
<b>some bold text</b>and I am using
<xsl:apply-templates select="PARAGRAPH_TEXT"/>in my RTF template to process the data using the stylesheet to convert it to
<fo:inline font-weight="bold">some bold text</fo:inline>The HTML tags are corrrectly resolved when using the BI Publisher Word add-in and the output is correctly rendered in bold text but this does not happen when running on the server in an E-Business Suite environment due to the HTML tags in the output XML being generated as e.g. &lt;b&gt; instead of <b>. Has anybody experienced this and, more importantly, can anybody suggest a way of getting e.g. <b> in the XML instead of &lt;b&gt;

Similar Messages

  • Format HTML not working

    I have HTML formatted data stored in VARCHAR2 columns on the database for which I am using a stylesheet to format into XSL-FO to resolve the HTML tags. For example, my data template populates a field PARAGRAPH_TEXT with content such as
    <b>some bold text</b>
    and I am using
    <xsl:apply-templates select="PARAGRAPH_TEXT"/>
    in my RTF template to process the data using the stylesheet to convert it to
    <fo:inline font-weight="bold">some bold text</fo:inline>.
    The HTML tags are corrrectly resolved using the BI Publisher Word add-in and the output is correctly rendered in bold text but this does not happen when running on the server in an E-Business Suite environment due to HTML tags in the output XML being generated as &lt;b&gt; instead of <b>. Has anybody experienced this and, more importantly, can anybody suggest a way of getting <b> in the XML instead of &lt;b&gt;.

    Sorry, I should have used the code tags. Let me ask that again.
    I have HTML formatted data stored in VARCHAR2 columns on the database for which I am using a stylesheet to format into XSL-FO to resolve the HTML tags. For example, my data template populates a field PARAGRAPH_TEXT with content such as
    <b>some bold text</b>and I am using
    <xsl:apply-templates select="PARAGRAPH_TEXT"/>in my RTF template to process the data using the stylesheet to convert it to
    <fo:inline font-weight="bold">some bold text</fo:inline>The HTML tags are corrrectly resolved when using the BI Publisher Word add-in and the output is correctly rendered in bold text but this does not happen when running on the server in an E-Business Suite environment due to the HTML tags in the output XML being generated as e.g. &lt;b&gt; instead of <b>. Has anybody experienced this and, more importantly, can anybody suggest a way of getting e.g. <b> in the XML instead of &lt;b&gt;

  • SP.UI.ModalDialog.showModalDialog(options); pop-up not working in IE8

    When i click a button, a pop-up should be opened. i have written below code into a function and called it to button... It works perfect in IW 9 and IE10. but its not working in IE8. please guid me to fix it.
    var options = SP.UI.$create_DialogOptions(); 
            options.title ="CDP Access";
            options.width = 400;
            options.height =150;   
            options.html = createDialogElementCDP(); 
            options.dialogReturnValueCallback = dialogCallback;
            SP.UI.ModalDialog.showModalDialog(options);
    function createDialogElementCDP()
    here my content goes..
    Please help me run the popup in IE8 also. 
    Thank you!

    What if you try something like below:
    EnsureScriptFunc('SP.js', 'SP.ClientContext', function () {
    EnsureScriptFunc("SP.UI.Dialog.js", "SP.UI.ModalDialog.showModalDialog", function () {
    var options = {
    title: "CDP Access",
    html:'this is html',
    dialogReturnValueCallback: callback
    SP.UI.ModalDialog.showModalDialog(options);
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • HTML not working in PL/SQL block..Help me ASAP

    declare
    l_col VARCHAR2(30) :=to_number(to_char(to_date('01-feb-2011','dd-mon-yyyy'),'dd'));
    CURSOR name_cur IS
      select name
          from   od_shift_schedule
          where   year=2011
          and    (month)=('Feb')
           and    decode(l_col,1,"01",2,"02",3,"03",4,"04",5,"05",6,"06",7,
                         "07",8,"08",9,"09",10,"10",11,"11",12,"12",13,"13",14,"14",15,"15",16,"16",17,"17",18,"18",19,"19",20,"20",
                         21,"21",22,"22",23,"23",24,"24",25,"25",26,"26",
                       27,"27",28,"28",29,"29",30,"30",31,"31")='W';
    BEGIN
      DELETE FROM nam;
      commit;
      FOR i IN name_cur
      LOOP
      dbms_output.put_line(i.name);
      htp.p('<b>Employee '||i.name||'  has been ticked.
       </b><br/>');
      EXECUTE IMMEDIATE 'insert into nam(name) values('''||i.name||''')';
      commit;
    END LOOP;
    end;Kindly help me with this
    If i'm wrong here kindly help me that how can i place a display message

    Re: HTML not working in PL/SQL block..Help me ASAP
    Using the community discussion forums for urgent issues is rude and a violation of the terms and conditions.
    http://www.oracle.com/html/terms.html
    >
    4. Use of Community Services
    Community Services are provided as a convenience to users and Oracle is not obligated to provide any technical support for, or participate in, Community Services. While Community Services may include information regarding Oracle products and services, including information from Oracle employees, they are not an official customer support channel for Oracle.
    You may use Community Services subject to the following: (a) Community Services may be used solely for your personal, informational, noncommercial purposes; (b) Content provided on or through Community Services may not be redistributed; and (c) personal data about other users may not be stored or collected except where expressly authorized by Oracle
    >
    Also please read the FAQ on how to ask questions.
    SQL and PL/SQL FAQ
    >
    2) Thread Subject line
    Give your thread a meaningful subject, not just "help please", "Query help" or "SQL". This is the SQL and PL/SQL forum. We know your question is going to be about those things, make it meaningful to the type of question so that people with the right sort of knowledge can pick it up and those without can ignore it. Never, EVER, mark your subject as "URGENT" or "ASAP"; this forum is manned by volunteers giving their own time to help and your question is never urgent or more important than their own work or than other people's questions. It may be urgent to you, but that's not forum members issue.

  • OBI 11g Enterprise Manager (EM Website) does not work with IE8 (v8.0.6)

    I am unable to login to the 11g EM website on Windows x64 2003 server. I get the below error:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0)
    Timestamp: Wed, 6 Oct 2010 10:41:18 UTC
    Message: Object doesn't support this property or method
    Line: 4354
    Char: 1
    Code: 0
    URI: http://YZU-1:7001/em/afr/partition/ie/default/opt/boot-11.1.1.3.0-0084.js
    Any help is appreciated.
    Thanks
    B

    Hi,
    OBIEE 11g does not work with IE8.
    Check this......What's wrong in OBIEE 11g
    Regards,
    Srikanth

  • Exported HTML not work in my host.

    Exported HTML not work in my host.
    The program works fine. Looks good in the browser preview and published in businesscatalyst, but when i exporting as html and upload it to my server is bad, all misplaced.

    Thanks for the reply.
    Everything is apparently copied and permissions are well.
    Watch this please.
    So it should be seen:
    http://koldo01.businesscatalyst.com/
    It is seen:
    http://www.koldofuentes.com/

  • CF8 CFGRID and CheckBox Not Working

    Hi,
    I am using CF 8. I have a HTML data grid using <cfgrid
    format="html">, I am trying to put a checkbox as the first
    column of the grid. I was told I could use something like:
    <cfgridcolumn type="boolean" header="Remove"
    name="remove" />
    The checkbox still doesn't show up. Any idea why?
    I am using the "bind" attribute of the cfgrid tag. It is
    bound to a CFC. I doubt that matters but thought I would mention
    it.
    Any help appreciated
    -Westside

    use selectmode attribute, for example,
    <cfgrid name="gr" format="html" selectmode="edit">

  • Commandmenu items highlight is not working in IE8 and firefox

    HI All
    i developed a menu for my project .
    in that menu i have some menuitems
    when i mouseover on commandmenuitem the item is highlighted .
    but this is not working in IE8 and firefox ..
    it is sometimes working in iE7 and some times it is not working.
    Can any one help me

    PDF documents are hosted in an ActiveX or netscape plugin control which have their own printing functions.
    Start>Adobe Reader>Edit>Preferences - to adjust what functionality the PDF document viewer addon displays (menus etc).
    Tools>Manage Addons>Show all addons
    make sure you have both the x86 and x64 versions of your PDF reader Active X control installed and enabled. I would recommend also that you update to the latest version of the vendors' (Adobe?) plugin.
    Possibly you have disabled scripting of ActiveX controls in the IE security zone that your parent page maps to. Also there is an IE security zone feature that prevents navigation to a domain in a zone of lower integrity.
    Tools>Internet Options>Security tab, click "Reset all zones to default".
    when asking developer related questions it is helpful if you can include a link to your website.
    Rob^_^

  • Spry Vertical Menu Bar not working in IE8

    I've upgraded to 1.6.1, but it still doesn't work in IE8 unless in compatibility mode.  http://jimgreenrealty.com/Test.html
    Works fine in other browsers and other Spry elements appear to work normally in IE8.  Can anyone help?
    Thanks,
    Steve B.

    If you deselect compatibility mode on IE8 the menu bar disappears (on
    all our computers anyway).  Works fine in all other versions of IE and
    all other browsers.  Updated to Spry 1.6.1 and still no avail.
    Here it is w/o the emulating statement: http://jimgreenrealty.com/Test.html
    The other pages on the site still have it.
    Thanks for looking at it.
    */ <mailto:[email protected]>
    <mailto:[email protected]>/*
    Message was edited by: RRR Trail
    Not sure how this forum works, I responded by email and it posts my email address.  I don't seem to be able to edit to remove it.  Please remove the email address.  Thanks,

  • SpryAccordion Still Not Working in IE8

    I've read all the previous posts about SpryAccordion not working correctly in IE8, but not of the resolutions I've found apply to my circumstance.  I'm working on a web site (draft at http://www.gregdanpartners.com/draft/index.html) and using a SpryAccordion in the left sidebar.  Everythings cool in FF and in Safari, but in IE8 all panels of the accordion are open and cannot be closed in the browser.  I've checked it on other machines too.  The site was created with DW CS4 so I have the latest version of Spry.  I've stripped out all content of the panels to rule out conflicting code within the panels.  Any ideas?  Please help.  Thx.

    Take away a bit of rogue coding so that the footer looks like
        <!-- footer starts -->
        <div id="footer">       
            <p>
          &copy; 2011 <strong>Gregdan Partners, LLC</strong>
          Website design by Dan Reichard
        </p>
        <!-- footer ends -->       
        </div>
    and all is well.
    Gramps

  • CSS Menu drop down part not working for ie8 and flashing shut on iPhone 5 browser

    My CSS drop down menu will not show up in ie8 and flashes then shuts on iPhone 5 browsers (responsive design)..using code from a themeforest template. I am using CSS (HTML only) in the BC menu system. without further adieu here is the code.
    HTML (I removed the BC javascript)______________________
    <div id="navigation">
    <ul>
    <li><a href="/index.htm">Home</a></li>
    <li><a href="/about">About</a>
    <ul>
    <li><a href="/leadership">Leadership</a></li>
    <li><a href="/giving">Giving</a></li>
    <li><a href="/careers">Careers</a></li>
    <li><a href="/contact">Contact</a></li>
    </ul>
    </li>
    </ul>
    </div>
    CSS______________________
    #navigation {
    float: right;
    #navigation ul, #navigation li {
    list-style:none;
    padding:0;
    margin:0;
    display:inline;
    #navigation ul li{
    float:left; 
    position:relative;
    #navigation ul li a {
    font-family: Arial, sans-serif;
    display: inline-block;
    color: #888;
    padding: 40px 6px 10px 6px;
    margin: 0 5px;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    #navigation ul li a:hover{
    border-bottom: 3px solid #555;
    #navigation ul ul {
    opacity: 0;
    margin: -3px 0 0 5px;
    filter: alpha(opacity=0);
    position: absolute;
    top:-99999px;
    left: 0;
    background: #fff;
    border: 1px solid #dddddd;
    border-top: 3px solid #555;
    z-index: 999;
    #navigation ul ul li a:hover {
    border-bottom: 1px solid #ddd;
    #navigation ul ul li a {
    padding: 8px 0;
    display: block;
    width: 130px;
    margin: 0 16px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    font-size: 12px;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid transparent;
    #navigation ul ul ul {
    position:absolute;
    top:-99999px;
    left:100%;
    opacity: 0;
    margin: -3px 0 0 0;
    z-index: 999;
    #navigation ul ul ul li a {
    border-bottom: 1px solid #dddddd !important;
    border-top: 1px solid transparent;
    #navigation ul ul li:last-child a, #navigation ul ul li:last-child a:hover {
    border-bottom: 1px solid transparent
    #navigation ul ul ul li:last-child a {
    border-bottom: 1px solid transparent !important
    #navigation ul li:hover>ul{
    opacity: 1;
    position:absolute;
    top:99%;
    left:0;
    #navigation ul ul li:hover>ul{
    position:absolute;
    top:0; left:100%;
    opacity: 1;
    z-index:497;
    background: #fff border: 0;
    #navigation ul li:hover > a {
    color: #444;
    #navigation ul ul li:hover > a {
    border-top: 1px solid transparent;
    color: #444;
    #current {
    font-weight: bold !important;
    color: #444 !important;
    border-bottom: 3px solid #555 !important;

    Well to show the menu it runs off opacity, Opacity is not cross browser and IE8 as you noticed will not work with it.
    This menu method of a CSS menu is also not mobile friendly.
    You will need the MS filters to work in older IE's
    http://css-tricks.com/snippets/css/cross-browser-opacity/

  • Sharepoint Master Page Custom CSS not working in IE8.

    I am using custom CSS3 for my site master page, which is working on all other browsers(which support CSS3). I also have a fall-back CSS to support the design for IE8, but on loading the classes are not applied.
    What could be the possible reason for this? Any resolution or guidance to resolution? Am i missing something in that?

    try these linsk:
    http://sharepoint.stackexchange.com/questions/72192/masterpage-and-css-are-not-applied-in-ie-8
    http://sharepoint.stackexchange.com/questions/77132/custom-css-will-not-work-on-internet-explorer-8
    http://sharepoint.aspcode.net/view/635399286724222582121982/masterpage-and-css-are-not-applied-in-ie-8
    http://blog.drisgill.com/2009/03/problems-with-ie8-standards-mode.html
    http://msdn.microsoft.com/en-us/library/hh781508(v=vs.85).aspx
    Please mark as answer if you find it useful else vote for it if it is close to answer..happy sharepointing

  • Date format is not working properly for Calender value help

    Hi Experts,
    We have two problems.
    1. We want to change the format of date displayed. We want format of dd-MMM-yy. For that we have created one Simple
    Type Dictionary Object with Displaying format dd-MMM-yy. It is working
    fine for the non editable UI. But once I apply the dictionary type
    object as data type for an input field, probem happens. Once the user
    choose a date from calender value help the value in the input field is
    coming like 01-011-12 not like 01-Jan-12.
    The date format is not changing from the calender. But if we set the
    display format of the dictionary object to MM-dd-yy or MM/dd/yy or
    dd/MM/yy or dd-MM-yy the format conversion from calender to input field
    is happening properly.
    The only problem once we put MMM in place of MM for the input field
    where user is selecting from a calender value help.
    2. We want to restrict users from entering the value manually for date input field. The user
    should be able only to enter value by selecting from calender value
    help.
    Please give suitable solution for these problems
    Thanks
    Shankha

    Hi Sankha,
    Please refer the links below:
    http://scn.sap.com/thread/1659463
    http://scn.sap.com/thread/1533443
    Regards,
    Manoj

  • Format Trigger not working in 10g Report.

    I have a report with two eclipses
    (*) Debit (*) Credit . Please note that the two asterics denotes eclipses.
    I have a format triggers on these eclipses based on the database item Debit_credit.
    IF :debit_credit = 'CREDIT' THEN
    RETURN FALSE;
    ELSE
    RETURN TRUE;
    End if;
    and vis-visa. However the format trigger is not working. Regardless of the value of
    debit_credit. I even created a frame around these eclipses and put my format trigger all to no avail. Please help.

    Create a boilerplate text in your repeating frame (get rid of the field :debit_credit from your layout, but leave it in your query). I created the boilerplate field B_1. My format trigger looks like:
    function B_1FormatTrigger return boolean is
    begin
      if upper(:debit_credit) = 'CREDIT' then
           srw.set_field(0, to_char('(*) CREDIT'));
       else srw.set_field(0, to_char('(*) DEBIT'));
      end if;
      return (TRUE);
    end;I hope I understood your question OK...I am not sure what an eclipses is?

  • Set Text of Container to HTML not working

    I have a div tag named "theAnswer" on a page. When the user
    clicks the "Submit" button, I want some text to appear inside the
    div that has HTML formatting.
    The HTML code for the text I want to appear is below:
    You are correct!  We are committed to conducting
    business with
    the highest degree of integrity, complying with legal
    standards and
    regulations and serving others with respect, fairness and
    caring.  Click here for <a
    href="javascript:;"
    onClick="MM_openBrWindow('../docs/
    Ethics_Standard_1.pdf','','scrollbars=yes,resizable=yes,width=790,height=575')">More
    Info</a> or click Continue.
    After I put in the Behavior to "Set Text > Set Text of
    Container to", choose the correct Div tag, and paste the above into
    the "New HTML" field, when I click the Submit button, I get the
    following appearing in the div "theAnswer" exactly how it appears
    below as text without it being actual formatted HTML.
    You are correct!  We are committed to conducting
    business with
    the highest degree of integrity, complying with legal
    standards and
    regulations and serving others with respect, fairness and
    caring.  Click here for <a
    href="javascript:;"
    onClick="MM_openBrWindow('../docs/
    Ethics_Standard_1.pdf','','scrollbars=yes,resizable=yes,width=790,height=575')">More
    Info</a> or click Continue.
    It's not formatted as HTML, it just comes out exactly what
    the coding is. Why?!

    Let's see the page, please.
    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
    ==================
    "Jim Rehmann" <[email protected]> wrote in
    message
    news:g6a3in$dv4$[email protected]..
    >I have a div tag named "theAnswer" on a page. When the
    user clicks the
    > "Submit" button, I want some text to appear inside the
    div that has HTML
    > formatting.
    >
    > The HTML code for the text I want to appear is below:
    >
    > You are correct!  We are committed to
    conducting business with
    > the highest degree of integrity, complying with legal
    standards and
    > regulations and serving others with respect, fairness
    and
    > caring.  Click here for <a
    href="javascript:;"
    > onClick="MM_openBrWindow('../docs/
    >
    >
    Ethics_Standard_1.pdf','','scrollbars=yes,resizable=yes,width=790,height=57?5')"
    >>More
    > Info</a> or click Continue.
    >
    >
    > After I put in the Behavior to "Set Text > Set Text
    of Container to",
    > choose
    > the correct Div tag, and paste the above into the "New
    HTML" field, when I
    > click the Submit button, I get the following appearing
    in the div
    > "theAnswer"
    > exactly how it appears below as text without it being
    actual formatted
    > HTML.
    >
    >
    > You are correct!  We are committed to
    conducting business with
    > the highest degree of integrity, complying with legal
    standards and
    > regulations and serving others with respect, fairness
    and
    > caring.  Click here for <a
    href="javascript:;"
    > onClick="MM_openBrWindow('../docs/
    >
    >
    Ethics_Standard_1.pdf','','scrollbars=yes,resizable=yes,width=790,height=57?5')"
    >>More
    > Info</a> or click Continue.
    >
    > It's not formatted as HTML, it just comes out exactly
    what the coding is.
    > Why?!
    >
    >

Maybe you are looking for

  • Meta Chain Issue

    Hi All, I have some meta chains in the process chain and all of the meta chains are triggered using- "Start using Meta Chain or API" Its evident that, once we triggerr the start varinat in the main chain the rest of meta chains get triggered. In our

  • PI 7.1 doesnu00B4t show DB02 history

    Hi friends, We have an NW PI 7.1 running on oracle 10.2.0.4 and AIX 6.1. I´am trying to view the Tablespace size history in TX:DB02 but when I view the table space detail layout in the tab of history, It shows me just the history by week and months b

  • MSI GX640 - Can it do 2560x1440 on an external monitor?

    Hello all, I'm considering to buy a 27" monitor with a 2560x1440 resolution (either the Hazro HZ27WC or the Dell Ultrasharp U2711, but I start spending money I need to know if the MSI GX640 can do this? The graphics card seems to do only 1920x1200, h

  • Only one Mac can connect

    Cheers, my girl friend got a iMac running 10.5.4, I have a MacBook running 10.4.11. We got our ADSL connection now running, and use a ZyXEL Prestige Router to connect to the internet. The problem is that only ONE Mac can connect, which is a no-go as

  • PSE9: Organizer -- Update metadata as changes are made

    In the new version of Organizer, is there any way to set it to immediately update the metadata when I modify or add keywords to a photo?  As it stands now, Organizer will rewrite all metadata for any photos currently displayed, whether they have been