CFGRID (html) column a href issue

Hello All,
I am using the new cf8 html cfgrid. My Grid column is as
follows:
<cfgrid name = "NewReports" format="html" height="170"
width="780" pageSize=5 sort=true>
<cfgridcolumn width="160" name = "VIEWREPORT"
header="Report" href="ViewReport.cfm?status=new"
hrefkey="REP_REPORT_ID" target="_blank">
</cfgrid>
on the rows that do not have data (example if the query
returns only 1 row.. there are 4 blank rows on the grid for page 1)
the viewreports column shows a link. How do I go about not showing
this link for blank rows? This was never an issue for flash grids,
it seems that this is only appearing in html grids.
Thanks
Anusha
Anusha

it's not strange at all. your href is not inside a cfloop or
cfoutput,
so any reference to a query column will reference the first
row only.
one thing you can do is add a column that contains the full
href text to
your query, i.e.:
SELECT categoryID, categoryName, CONCAT('/l/listing/tag/',
categoryName,
'.html') AS hreflink
FROM...
the above syntax is for MySQL, but your db will have its own
CONCAT()
function equivalent.
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/

Similar Messages

  • CFGRID HTML named target will not open new window

    I'm finally TRYING to make the move to CF8 and honestly I
    love Cold Fusion but I encounter bug after bug without going crazy
    trying to do things. I'd appreciate any guidance here.
    In this case I am trying to switch over from applet CFGRIDS
    to HTML CFGRIDS. Right off the bat all sorts of issues.
    1) CFGRID HTML target does not work as expected. If you put a
    named window in (e.g. gridpopup) you get an error message that it
    doesn't exist. This is not the way the applet grid works in any
    version including CF8. I don't want to allow someone to keep
    opening up window after window in this case. This is a showstopper
    as I have many cases where I need to do this.
    2) A defined checkbox column displays true and false. Since
    this isn't editable I can probably change it to Yes and No but come
    on. This might be because I'm using a bit field in my Sybase
    database ?????? Not sure if it works or doesn't with other field
    types. Works fine with the applet cfgrid
    3) This one can probably be styled away, I don't want the URL
    columns underlined.

    First, I can't believe no one else is encountering this
    problem
    Here's the fix which allows you to use mixed case target
    names and will also open a non-existent target. Someone was very
    lazy when they coded this.
    Locate the cfgrid.js file e.g. ..//CFIDE/scripts/ajax/package
    Find this chunk of code
    if(_2a3){
    _2a3=_2a3.toLowerCase();
    if(_2a3=="_top"){
    _2a3="top";
    }else{
    if(_2a3=="_parent"){
    _2a3="parent";
    }else{
    if(_2a3=="_self"){
    _2a3=window.name;
    }else{
    if(_2a3=="_blank"){
    window.open(encodeURI(url));
    return;
    if(!parent[_2a3]){
    and replace with this chunk of code
    if(_2a3){
    _2a3_LC=_2a3.toLowerCase();
    if(_2a3_LC=="_top"){
    _2a3="top";
    }else{
    if(_2a3_LC=="_parent"){
    _2a3="parent";
    }else{
    if(_2a3_LC=="_self"){
    _2a3=window.name;
    }else{
    if(_2a3_LC=="_blank"){
    window.open(encodeURI(url));
    return;
    }else{
    if(!parent[_2a3]){
    window.open(encodeURI(url),_2a3);
    return;
    if(!parent[_2a3]){

  • Cfgrid (html) cfwindow and form binding

    Hi All,
    I have a page with 2 cfgrids (html). Select a value in the
    first grid populates the 2nd with appropriate records
    All works as expected.
    I also have a cell renderer on one column that opens a
    cfwindow.
    The cfwindow contains a textarea field (html), it's to big to
    display in the grid.
    All works great except for the initial value of the cfwindow
    form
    In the form I have a hidden field (id) andf the textarea
    field. I have a bind attribute on both of these to get the value.
    Can anyone tell me why the initial value does not work ??
    Ken
    What happened to the "Attach Code" Button ???
    "grid page"
    <cflayout type="vbox" align="center"
    style="height:100%;">
    <cflayoutarea overflow="scroll">
    <cflayout type="vbox" align="center"
    style="height:92%;">
    <cflayoutarea>
    <cfinclude template="inc/nav.htm">
    </cflayoutarea>
    <cflayoutarea>
    <cflayout type="hbox" align="center" padding="5">
    <cflayoutarea align="center" style="width:25%;">
    <cfinclude template="jmoGrid.cfm">
    </cflayoutarea>
    <cflayoutarea align="center" style="width:75%;">
    <cfinclude template="cbGrid.cfm">
    </cflayoutarea>
    </cflayout>
    </cflayoutarea>
    </cflayout>
    </cflayoutarea>
    <cflayoutarea>
    <cf_siteFooter>
    </cflayoutarea>
    </cflayout>
    "grid 1"
    <cfgrid
    name="gridJMO"
    format="html"
    striperows="yes"
    bind="CfC:#Request.comsPath#.jmo.getData({cfgridpage},{cfgridpagesize},{cfgridsortcolumn} ,{cfgridsortdirection},getSearchString())"
    selectMode="row"
    pageSize="14">
    <cfgridcolumn name="Employee_No" header="Emp No"
    width="80">
    <cfgridcolumn name="JMO_Name" header="Name"
    width="150">
    <cfgridcolumn name="id" header="" display="no">
    </cfgrid>
    "grid 2"
    <cfgrid name="dataGrid"
    format="html"
    striperows="yes"
    onchange="CfC:#Request.comsPath#.cbData.saveCB({cfgridaction},{cfgridrow},{cfgridchanged} )"
    bind="CfC:#Request.comsPath#.cbData.getCB({cfgridpage},{cfgridpagesize},{cfgridsortcolumn },{cfgridsortdirection},{gridJMO.ID})"
    selectmode="edit"
    delete="no"
    width="98%"
    pageSize="12">
    <cfgridcolumn name="Approved"
    header="<center>Approve</center>" width="55">
    <cfgridcolumn name="Call_Date"
    header="<center>Date</center>" width="70">
    <cfgridcolumn name="TimeIn" header="<center>Time
    In</center>" width="55">
    <cfgridcolumn name="TimeOut" header="<center>Time
    Out</center>" width="55">
    <cfgridcolumn name="Pt_MRN"
    header="<center>MRN</center>" width="65">
    <cfgridcolumn name="Caller"
    header="<center>Caller</center>" width="185">
    <cfgridcolumn name="Approver"
    header="<center>Approver</center>" width="145">
    <cfgridcolumn name="Details"
    header="<center>Reason</center>" width="55">
    <cfgridcolumn name="OverTime"
    header="<center>OT</center>" width="55">
    <cfgridcolumn name="Reason" header="" display="no">
    <cfgridcolumn name="id" header="" display="no">
    </cfgrid>
    "window form"
    <cfform name="frmUpdate">
    <cfinput type="text" name="ID" bind="{dataGrid.id}">
    <cflayout type="vbox">
    <cflayoutarea>
    <cftextarea name="fld_Message_Detail"
    bind="{dataGrid.Reason}" rows="12" style="width:90%;"/>
    </cflayoutarea>
    <cflayoutarea align="right" style="margin-left:10px;
    width:90%">
    <cfinput type="button" name="bnt_cancel" value="Cancel"
    onClick="hideRecWin('winDetails');">
    <cfinput type="button" name="bnt_submit" value="Save
    Change" onClick="updateReason();">
    </cflayoutarea>
    </cflayout>
    </cfform>

    I found that is style sheet problem , here is my workaround
    solution:
    1.) use text editor open the css file
    (...\CFIDE\scripts\ajax\resources\ext\css\ext-all.css )
    2.) find '.x-grid-dirty-cell' in the file
    3.) copy & paste my style
    /*------------------- >8 -----------------*/
    /* Start of Grid dirty cell problem - Gordon Fixed
    .x-grid-dirty-cell {
    background: transparent
    url(../images/default/grid/dirty.gif) no-repeat 0 0;
    .x-grid-dirty-cell {
    background: transparent
    url(../images/default/grid/dirty.gif) no-repeat 0 0;
    background-color:cornflowerblue;
    .x-grid-row-alt .x-grid-dirty-cell{
    background-color:cornflowerblue;
    /* End of Grid dirty cell problem
    /*------------------- >8 -----------------*/

  • Update on Captivate HTML 5 content playback issue in Google Chrome Browser

    Good night,
    I am having a problem implementing projects generated in html5 and run on Chrome. The video does not run.
    I think I found the solution, a correction patch for Captivate 7. But I just link and is broken.
    http://blogs.adobe.com/captivate/2014/07/update-on-captivate-html-5-content-playback-issue -in-google-chrome-browser.html
    I have several e-learning generated with html5 and want to avoid make the change manually.
    Does anyone have the patch and can share?
    Thank U

    I saw this email ID in a comment of that post. I guess you can send a mail asking for the fix.
    Shriyansh Agnihotri: [email protected]
    Sreekanth

  • Adding new site columns to my issue tracking List, will result in having their Source field as blank inside the Issue content type

    I have added an Issue tracking list to my SharePoint team site 2013. Then I wanted to add 5 extra columns to my list . So I did the following:-
    I went to site settings.
    Then I added 5 new site columns.
    I went back to my list setting, I click on the “Issue” content type, and I added the 5 newly added site columns to my "Issue" content type , using the “Add from existing site or list columns” link as follow:-
    And then these columns were added automatically inside the Edit, Create& Display forms.
    But since this is the first time I work on such a task , so I want to make sure that I did every thing correctly. Because I am not sure why the 5 newly added site columns will have their source field inside the “Issue” content type as blank , as shown in
    the above picture. So does this indicate that there is a problem ? or this is because I have added the 5 newly added site columns to the List content type and not inside the Content type at the site level ?
    Thanks

    Hi,
    It’s by design, the Source field means the content type name.
    As you said, when we create a new column, if we not attach the column to a content type, then the column would have not the source field option.
    However, if you create a new column, then add the column in a content type, the content type would automatically update in the site.
    Now, you would see a source content type appear.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • When I send or reply my static signature is in text instead of html. this is an issue because there is no space as normal. please advise or work with smartmail to correct. firefox is much quicker than explorer and I've always preferred firefox. thank you

    when I send or reply my static signature is in text instead of html. this is an issue because there is no space as normal. please advise or work with smartmail to correct. firefox is much quicker than explorer and I've always preferred firefox. thank you

    That is a legitimate Mozilla newsletter. As it says in the email:
    You're receiving this email because you subscribed to receive email newsletters and information from Mozilla. If you do not wish to receive these newsletters, please click the Unsubscribe link below.
    Unsubscribe https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/
    Modify your preferences https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/ "

  • Cfgrid html values/valuesdisplay no longer displaying after update

    Our current system is CF8 (8.0.1 with latest cumulative update 4), MS SQL server. The cumulative update was installed last week and I just discovered that the HTML cfgrids that we use no longer function correctly. All the cfgridcolumns that use values="some values" valuesdisplay=" some values" no longer display more than the initial value set (one value when dropdown appears). These cfgrids work on our development server which was also updated with latest cumulative update as well. I have tried deleting the update, installing the patch for cfgrid error, re-installing the cumulative update, overwriting the ext and css files with our development files. Nothing has corrected the issue.
    hot fix tried:
    "HTML grids may display improperly in coldfusion 8.0.1 with drop-downs not displaying all items (ID 71630)."
    example:
    <cfform name="makeAdmin" format="html"  style="z-index: 300003; font-size:12px;" timeout="60" method="post" height="700" width="900">
    <cfinput type="hidden" value="TRUE" name="btnSubmit">
    <cfinput type="hidden" name="edit" value="true" />    
                   <cfgrid name="makeGrid" format="html" style="z-index: 300003;"  query="makeQuery" rowheaders="no" width="270" height="500" insert="yes" insertbutton="Insert New Row" deletebutton="Delete Row" delete="yes" selectmode="edit" colheaderbold="yes">
                    <cfgridcolumn name="makeID"
                        header="rowID"
                        width="0"
                        headeralign="center"
                        headerbold="Yes"
                        select="no"
                        display="no"
                        >
                    <cfgridcolumn name="make"
                        header="Make"
                        width="150"
                        headeralign="center"
                        headerbold="Yes"
                        select="yes"
                        display="yes"
                        >
                    <cfgridcolumn name="active"
                        header="Active"
                        width="100"
                        headeralign="center"
                        headerbold="Yes"
                        select="yes"
                        display="yes"
                        values="True,False"
                        >
                  </cfgrid>
      <cfinput align="middle" name="submitButton" value="Commit Updates" type="submit">
    </cfform>
    All the 'active' column dropdown displays is the value returned from the query.
    This occurs on cfgrids that are bound to cfc's or grids with query="" . The value displayed in dropdown is the one returned from query, the rest of list does not display.
    Can anyone help me? What folders/files control the html cfgrid?

    Thank you for the response, I didn't see that there was a newer hotfix released afterwards that I hadn't tried. Unfortunately since I didn't have time to wait for a solution I was forced to change my code and remove the inline updateable grids. I'm not sure I trust them enough now to try again later, but if the occassion arises I may attempt again.

  • CFGRID Selectmode=Row update control issue

    I am running CF 9.0 Enterprise edition with the latest hotfixes with MS SQL Server 2000 DB; Windows 2003 R2SP2, IIS 6.0.
    I'm having a very basic CFGRID issue that is eluding me and am hoping for some help.
    I have a basic CFGRID with selectmode=Row, appendkey="Yes", and an href on a cfgridcolumn to allow for an update on the full record selected from the grid.  Once the record has been updated, control passes from the cfm module that has the cfquery update back to the original cfgrid using a cflocation url.  Once I select the same record again using the cfgrid, it appears as though the record has not been updated - until I refresh the browser.  I'd like to be able to select the record from the grid a be presented with the updated record.  I am assuming it is a timing issue.
    Nothing on the grid has changed (because my query to load the grid doesn't select all of the values), so I don't think I need to refresh the grid.  Any ideas on what I need to get the updated record?  Like I stated before, this is a basic cfgrid, nothing fancy.
    Any help or hints you can provide is greatly appreciated.
    Libby H.

    I switched from HTML to Flash and used IE instead of Chrome and now it is working.  I would still like to know if anyone else is seeing this issue?
    Pete

  • CFGRID shifting column values

    Hi,
    I have a CFGRID that has 5 columns in which its values are
    obtained from the database. There is a single submit button that
    would submit to a processor page that updates any records with
    changed cells. The problem that I'm having is that the processor
    page would shift the values of the columns one over. For example,
    the value of column 4 would display as column 3 on the processor
    page. Below is the code:
    cfgrid page:
    <cfform method="post" name="adcost"
    action="index.cfm?fuseaction=process_advertising_cost_grid">
    <cfgrid name="advertizingCosts"
    format="HTML"
    query="advertizingcosts"
    selectMode="edit"
    colHeaders="true"
    colHeaderBold="yes"
    width="600"
    maxRows="25"
    stripeRows="yes"
    stripeRowColor="efefef"
    >
    <cfgridcolumn name="AdvertizingCostsID" header="ID"
    width="20" select="no">
    <cfgridcolumn name="AdvertizingCostsDate"
    header="Advertizing Costs Date" mask="MMMM D, YYYY" width="160">
    <cfgridcolumn name="Amount" header="Amount"
    width="60">
    <cfgridcolumn name="Details" header="Details">
    <cfgridcolumn
    name="StoreFrontName"
    header="StoreFront"
    width="150"
    values="#ValueList(storefronts.StoreFrontCode)#"
    valuesDisplay="#ValueList(storefronts.StoreFrontName)#"
    >
    </cfgrid>
    <input type="submit" value="submit" class="button" />
    </cfform>
    processor page:
    <cfif
    IsDefined("form.advertizingCosts.RowStatus.Action")>
    <cfloop index="counter" from="1"
    to="#ArrayLen(form.advertizingCosts.RowStatus.Action)#">
    <cfoutput>
    <p>
    counter is #counter#<br />
    The row action for #counter# is
    #form.advertizingCosts.RowStatus.Action[counter]#<br />
    AdvertizingCostsID is
    #form.advertizingCosts.AdvertizingCostsID[counter]#<br />
    AdvertizingCostsDate is
    #form.advertizingCosts.AdvertizingCostsDate[counter]#<br />
    Amount is #form.advertizingCosts.Amount[counter]#<br
    />
    Details is #form.advertizingCosts.Details[counter]#<br
    />
    StoreFrontName is
    #form.advertizingCosts.StoreFrontName[counter]#
    </p>
    <cfif #form.advertizingCosts.RowStatus.Action[counter]#
    eq "U">
    <pre>
    Original AdvertizingCostsDate:
    #form.advertizingCosts.Original.AdvertizingCostsDate[counter]#
    Original Amount:
    #val(form.advertizingCosts.Original.Amount[counter])#
    Original Details:
    #form.advertizingCosts.Original.Details[counter]#
    Original StoreFrontName is
    #form.advertizingCosts.Original.StoreFrontName[counter]#
    </pre>
    <cfelse>
    </cfif>
    </cfoutput>
    </cfloop>
    </cfif>
    The Amount data would end up going to the details column, the
    date appears as the amount on the second page. This page only
    displays values.
    It looks to be correct, but I'm not sure what is causing the
    shifting.
    Any help would be great!
    Jason

    This fixed it for me. Only do this if you have version 9.01 of coldfusion.
    Open cfide/scripts/ajax/package/grid.js
    find this line of code
    var _5aa=$G.computeActualRow_editField(this.editFieldState,this.selectedRow);    (IT is in the $G.Actions.afterEdit=function(_5a8))
    change it to
    var _5aa=$G.computeActualRow_editField(this.editFieldState,_5a8.row+1);
    every thing should now be in sync

  • CFGRID HTML AJAX doesn't work in IE5.5

    It would seem there is a problem using an editable grid in
    IE5.5. If you use dropdowns as part of your editable HTML AJAX
    CFGRID.
    To reproduce make a grid and set it as editable.
    Set the values and valuesdisplay attributes on a gridcolumn
    and make the column selectable.
    Now try and view the grid in IE 5.5.
    You just get the dropdown for the slectable columna and a
    Javascript error. LIne 26 char 288 Object doesn't suport this
    property or method.
    Stop the column being Selectable and its fine.
    Make the column selectable but remove the values and
    valusdisplay attributes and its also fine for editing.
    Sounds like a bug to me.
    If anyone has any idea how to fix this. I'm guessing its
    buried in one of the many Javscript files that are loaded when
    using AJAX controls then I'd be very grateful.
    many thanks
    Steve

    In which system (DEV, QA or PROD) are your trying to extract the delta. Have you checked if any transactions have been posted in the source system.
    Regards

  • Dreamweaver CS3 3 column CSS footer issue

    Has anyone used the Three Column Absolutely Positioned Header
    and Footer (thrColAbsHdr) CSS template in Dreamweaver CS3? If so,
    has anyone figured out how to address issue of Sidebar1 and
    Sidebar2 content floating over top of the footer (instead of
    growing and pushing the footer down)?
    Adrian Senior appears to have addressed it regarding the
    twoColElsLtHdr CSS...
    http://www.adobe.com/devnet/dreamweaver/articles/css_concepts_pt3_cs3.html
    I've tried his suggestion and it still doesn't appear to be
    working properly with this CSS/template (thrColAbsHdr).

    Example 3-column CSS layout:
    http://alt-web.com/TEMPLATES/3-col-fixed-layout.shtml
    CSS divisions do not produce equal height columns.  You'll need to trick the eye into thinking they are equal  buy using a repeating background-image that tiles down the page.  This technique is called Faux Columns.
    You can see a crude example here:
    http://alt-web.com/TEMPLATES/3-col-white-gray.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How to determine the fixed width I can use to generate html columns in java

    I have a jsp where I dynamically generate menus for a web page.
    Table's cells are generated with different width, making the menus look differently.
    When clicking on menus, cells changing sizes.
    What is the best way to implement that, so I have a fixed width for every column?
    Thank you

    That's what I do.
    The code determines the width of the column now.
    The only drawback is that I manually assign values to the width depending on the menu item length.
    Is there any way how to do it dynamically, by determining how many px width will be by having the menu item lenght?
    <TABLE cellspacing=0 cellpadding=0 border=0 width="100%">
                   <!--<TR>-->
                        <!--<td width="251"><img src="images/Menu1L.gif" width="8" height="25"></td>-->
                   <%
                        int gs = menu.getSelectedGroupNum();
                        MenuGroup menuGroup = menu.getMenuGroup(gs);
                        int is = menu.getSelectedItemNum();
                        int maxScr = 10; //10 screens buttons per line
                        int totScr = menuGroup.getSize(); //total number of screens for the selected menu
                        int rowsNum = 0;
                        rowsNum = (int)Math.ceil((double)totScr/maxScr);
                        System.out.println("Num of scr per line: " + maxScr +
                                                 " Num of scr/menu: " + totScr +
                                                 " Num of rows: " + rowsNum);
                   for(int     screenRow = 0; screenRow < rowsNum; screenRow ++){
                        //for (int item = 0; item < menuGroup.getSize(); item++)%>
                   <tr><td>
                        <table border="0" cellspacing="0" cellpadding="0" height="20">
                         <tr>
                           <td width="251"><img src="images/Menu1L.gif" width="8" height="25">
                        <%
                        for(int item = screenRow*maxScr; item < (screenRow + 1)*maxScr && item < totScr; item ++)
                             MenuItem menuItem = menuGroup.getMenuItem(item);
                             String title = menuItem.getDisplay();
                             String link = null;
                             String cssClass = null;
                             System.out.println(title + ":" + title.length());
                             if(!menu.isDisabled())
                                  link = "<A href=\"Menu.do?top=" + gs + "&side=" + item + "\">";
                             %>
                             <%
                             else{
                                  link = "";
                                  title = "<i>" + title + "</i>";
                             MenuItem subMenuItem = null;
                             boolean isSubMenu = menuItem.containsSubMenuItem();
                             String subText = null;
                             //determine the width of the column
                             int width = 0;
                             if(title.length() > 5 && title.length()<20)
                                  width = 158;
                             if(title.length() > 20)
                                  width = 193;
                             if(title.length() <=5)
                                  width = 60;
                             if (is == item){
                                  //link = "<A href=\"Menu.do?top=" + gs + "&side=" + item + "\">";
                                  cssClass = "ScreenItemSel A";
                             else
                                  cssClass = "ScreenItem";
                             %>
                             <TD align = "center" nowrap class = "<%= cssClass%>"  background ="images/Menu1F.gif" width="<%=width%>"> <%=link%><%=title%></TD>
                             <TD class="Screen" nowrap><img src="images/Menu1Sep.gif" height=25 width=16></TD>
                        <%                         
                        }%>
                                  <TD width="100%" valign=top align=right class="ScreenName" background="images/Menu1F.gif"><%--<%=mode%>--%></TD>
                                  <TD><IMG src="images/Menu1R.gif" width="8" height="25"></TD>
                             </td>
                        </tr>
                        </table>
                   </td>
                   </tr>
                   <%}
                   %>
                   <!--</TR>-->
    </TABLE>

  • Help: Column Chart Display Issue

    Post Author: ermiller
    CA Forum: Xcelsius and Live Office
    I have a chart that displays its data correctly 11 out of 12 times...and I can't seem to get the last one to work correctly. Here's the issue:
    I have a table of data that looks like this:
    REGION                                   GAIN                           LOSS                      NET
    ALL                                           =SUM(BELOW)          =SUM(BELOW)       =SUM(BELOW)
    REGION 1                                  10                               (1)                          9
    REGION 2                                  20                               (2)                          18
    REGION 3                                  30                               (7)                          23
    REGION 4                                  40                               (0)                          40
    I have a "Data Display" area that has the following formulas in it:
    CRITERIA                                   GAIN                           LOSS                    NET
    &#91;USER INPUT&#93;                           =VLOOKUP(&#91;USER INPUT&#93;,&#91;TABLE ABOVE&#93;,0,&#91;2,3,4 FOR EACH COLUMN&#93;)
    If the user enters 'REGION 1', 'REGION 2', 'REGION 4, or 'REGION 4', the data is displayed in the column chart perfectly. However, if the user selects 'ALL', the process doesn't work and displays 0s in each of the columns above.
    Does any one have any ideas on how to fix that issue or what could be causing it in the first place? I just noticed that the same thing occurs if I use a Grid component as well...even though Excel is processing the data accurately.
    Thanks in advance,
    Erik

    Post Author: debdeb
    CA Forum: Xcelsius and Live Office
    Hi,
    Without trying out your actual data, the first thing that comes to mind is that you aren't using all the options in VLOOKUP. I've discovered that Xcelsius requires all arguments even optional ones in many formulas but this isn't document). The last argument is TRUE (default) for the closest match, and FALSE for exact match. If the user can only enter from a set of values which are known to be in your lookup table, then either one will work but you should still specify this last argument.

  • Can someone provide HTML and CSS compatibility issues list in IE 12?

    Hi There,
    We recently come to know from our team members that Microsoft going to release Internet Explorer (IE) 12. But there are some compatibility issues with HTML and CSS which can break our web sites. Can someone provide us list of issues that we can face in IE
    12, so that we can work on their resolution.
    Regards,
    Ankush

    Hi,
    http://status.modern.ie
    or
    f12>Console tab>
    document.body.style
    Rob^_^

  • How to get a value given to a button in HTML using a href tag

    Hi,
    In my application I have loaded  html  content  in WebView. In the HTML file i have used a Button to which i have given some value in href tag as
    <a href="ButtonClick//testing/mysample">
    <input type="button" value="Click me" />
    </a>
    When i click the button i want to get the string "ButtonClick//testing/mysample" in my app..  But i do not want to use InvokeScript() on my webview.. Could anyone please give me a solution for this?..
    Thank you.

    The only way to interact with HTML content from WebView is using JavaScript. You can do this by invoking such scripts from your C# code (using InvokeScript) or embedding the JavaScript method into the button you are working with.
    But you need to know that if you intend to get a return value from your JavaScript code, you would need to use the InvokeScript.
    Here's an example of printing the value from your hyperlink without InvokeScript. But note that it only prints the value and can't return the value to your C# code without InvokeScript.
    string htmlContent = @"
    <html>
    <head>
    <script type='text/javascript'>
    function myFunction()
    document.getElementById('myResult').innerHTML = document.getElementById('myLinkConent').href.substring(6); //remove 'about:' from href string
    </script>
    </head>
    <body>
    <a id='myLinkConent' href='ButtonClick//testing/mysample'>
    </a>
    <input type='button' value='Click me' onclick='myFunction()'/>
    <p id='myResult'></p>
    </body>
    </html>";
    Let me know if this helps.
    Abdulwahab Suleiman

Maybe you are looking for