Cfgrid checkbox column does not display bgcolor

I am running CF9 in Firefox and have a page with an editable grid. I have different background colors for certain groups of columns.
When I define a column as follows:
<cfgridcolumn name="HidePrice"  display="true"  header="Hide Price"    width="40" select="yes"  bgColor="##E7F3F1" type="boolean" />      
it shows as a checkbox but the background color does not show. This same bg color does show in adjacent columns. That's my first problem.
In addition, I have applied some styles to the extJS cells using stuff like this:
.x-grid3-col-8  {height:42px;}
.x-grid3-col-9  {text-align:right;height:42px;}
.x-grid3-col-10 {text-align:center;height:42px;}
.x-grid3-col-11 {text-align:right;height:42px;}
This worked fine before I added the checkbox, but the checkbox field (in this case it's field .x-grid3-col-10) throws off the column count and the subsequent styles affect the wrong columns. As if the checkbox was not a full-fledged grid column.
Anybody have an inkling what's happening?

This hasn't received an answer in almost two months? 
I've searched the docs and online and I have yet to find a solution, but BUMP and you're not the only one.

Similar Messages

  • Outlook 2013 Bug - Categories Column Does Not Display Color In Certain Positions

    My System: Outlook 2013-64 on Windows 7-64
    When looking at my email list (preview pane off), the categories column displays its color and text. But when the Categories column is moved to the left of the "from" column, it ceases to display its color and displays only its text, even when
    the column is wide enough to display everything for a category.
    Can someone tell me  how to fix this?
    This did not happen in Outlook 2010 and 2007.

    Hi,
    I just confirmed this issue exists on Outlook 2013, when categories
    column is dragged to the left to From, the categories don't display the colors but label texts instead.
    While I didn't find this issue on Outlook 2010 or Outlook 2007.
    Thank you for being so careful and pointing out this problem, whenver you have any feedback about this product, you can always press Ctrl + Alt + 7(Send a Smile) or Ctrl + Alt + 8(Send a Frown) to submit it. Currently I cannot promise the
    deadline when it will be fixed, but Microsoft will definitely hear users' voice and make its products better and easy to use.
    Regards,
    Melon Chen
    TechNet Community Support

  • Manage Table / Modify column does not display current values

    Hi,
    when I choose "Modify column" from the menu "Manage table", the current properties of the column, i.e. type, size and so on, are not shown, but are defaulted to whatever value has been defined inside that page, so the column type is always set to "Number" for instance.
    It would be definitely better to retain the current values, in my humble opinion.
    Bye,
    Flavio

    I have also run into this problem. I am running IQ 16.0 sp1. I wanted to increase the number of characters in one of the columns so I have to create a new column, copy the data, delete the old column then rename the new column.
    Is there any reason the MODIFY function is not implemented in IQ?

  • ADF swing: JTabbedPane does not display column names.

    Hi all,
    I have created an ADF Panel, which allows the user to run a few simple queries against an Oracle database done using ADF view objects and ADF view links and ADF application module.
    From the data control area I drag and drop a view link containing a query into a JTabbedPane. But when I run the ADF panel, JTabbedPane does not display the column headers from the SQL as opposed to JScrollPane which does.
    Suppose you do a select * from departments(dep_id, manager, state_cd), you will see all column headers meaning dep_id, manager, state_cd, and under each column the corresponding data which was retuned by the SQL if you use JScrollPane. But if you use you use JTabbedPane then you would only see the data which was retuned by the SQL without seeing the column header names meaning dep_id, manager, state_cd.
    What do I need to do to make JTabbedPane display columns headers?
    I would appreciate your input.
    Thanks.
    Bobby A.

    Hi,
    JScrollPane should be used. You can add this into a JTabbedPane if you like. Not all Swing panel show table headers
    Frank

  • DataGrid does not display XML data

    Hello, and thanks for reading this...
    I am having a problem displaying XMLList data in a DataGrid.
    The data is coming from a Tree control, which is receiving it
    from a database using HTTPService.
    The data is a list of "Job Orders" from a MySQL database,
    being formatted as XML by a PHP page.
    If it would be helpful to see the actual XML, a sample is
    here:
    http://www.anaheimwib.com/_login/get_all_orders_test2.php
    All is going well until I get to the DataGrid, which doesn't
    display the data, although I know it is there as I can see it in
    debug mode. I've checked the dataField property of the appropriate
    DataGrid column, and it appears correct.
    Following is a summary of the relevant code.
    ...An HTTPService named "get_all_job_orders" retrieves
    records from a MySQL database via PHP...
    ...Results are formatted as E4X:
    HTTPService resultFormat="e4x"
    ...An XMLListCollection's source property is set to the
    returned E4X XML results:
    ...The "order" node is what is being used as the top-level of
    the XML data.
    <mx:XMLListCollection id="jobOrdersReviewXMLList"
    source="{get_all_job_orders.lastResult.order}"/>
    ...The "jobOrdersReviewXMLList" collection is assigned to be
    the dataProvider property of a Tree list, using the @name syntax to
    display the nodes correctly, and a change event function is defined
    to add the records to a DataGrid on a separate Component for
    viewing the XML records:
    <mx:Tree dataProvider="{jobOrdersReviewXMLList}"
    labelField="@name"
    change="jobPosForm.addTreePositionsToDG(event)"/>
    ...Here is the relevant "jobPosForm" code (the Job Positions
    Form, a separate Component based on a Form) :
    ...A variable is declared:
    [Bindable]
    public var positionsArray:XMLList;
    ...The variable is initialized on CreationComplete event of
    the Form:
    positionsArray = new XMLList;
    ...The Tree's change event function is defined within the
    "jobPosForm" Component.
    ...Clicking on a Tree node fires the Change event.
    ...This passes an event object to the function.
    ...This event object contains the XML from the selected Tree
    node.
    ...The Tree node's XML data is passed into the positionsArray
    XMLList.
    ...This array is the dataProvider for the DataGrid, as you
    will see in the following block.
    public function addTreePositionsToDG(event:Event):void{
    this.positionsArray = selectedNode.positions.position;
    ...A datagrid has its dataProvider is bound to
    positionsArray.
    ...(I will only show one column defined here for brevity.)
    ...This column has its dataField property set to "POS_TITLE",
    a field in the returned XML record:
    <mx:DataGrid width="100%" variableRowHeight="true"
    height="75%" id="dgPositions"
    dataProvider="{positionsArray}" editable="false">
    <mx:columns>
    <mx:DataGridColumn width="25" headerText="Position Title"
    dataField="POS_TITLE"/>
    </mx:columns>
    </mx:DataGrid>
    In debug mode, I can examine the datagrid's dataProvider
    property, and see that the correct XML data from the Tree control
    is present. However, The datagrid does not display the data in any
    of its 6 columns.
    Does anyone have any advice?
    Thanks for your time.

    Hello again,
    I came up with a method of populating the DataGrid from the
    selected Item of a Tree Control which displays complex XML data and
    XML attributes. After the user clicks on a Tree branch, I call this
    function:
    public function addTreePositionsToDG(event:Event):void{
    //Retrieve all "position" nodes from tree.
    //Loop thru each Position.
    //Add Position data to the positionsArray Array Collection.
    //The DataGrid dataprovider is bound to this array, and will
    be updated.
    positionsArray = new ArrayCollection();
    var selectedNode:Object=event.target.selectedItem;//Contains
    entire branch.
    for each (var position:XML in
    selectedNode.positions.position){
    var posArray:Array = new Array();
    posArray.PK_POSITIONID = position.@PK_POSITIONID;
    posArray.FK_ORDERID = position.@FK_ORDERID;
    posArray.POS_TITLE = position.@POS_TITLE;
    posArray.NUM_YOUTH = position.@NUM_YOUTH;
    posArray.AGE_1617 = position.@AGE_1617;
    posArray.AGE_1821 = position.@AGE_1821;
    posArray.HOURS_WK = position.@HOURS_WK;
    posArray.WAGE_RANGE_FROM = position.@WAGE_RANGE_FROM;
    posArray.WAGE_RANGE_TO = position.@WAGE_RANGE_TO;
    posArray.JOB_DESCR = position.@JOB_DESCR;
    posArray.DES_SKILLS = position.@DES_SKILLS;
    positionsArray.addItem(posArray);
    So, I just had to manually go through the selected Tree node,
    copy each XML attribute into a simple Array, then ADD this Array to
    an ArrayCollection being used as the DataProvider for the DataGrid.
    It's not elegant, but it works and I don't have to use a Label
    Function, which was getting way too complicated. I still think that
    Flex should have an easier way of doing this. There probably is an
    easier way, but the Flex documentation doesn't provide an easy path
    to it.
    I want to thank you, Tracy, for the all the help. I checked
    out the examples you have at www.cflex.net and they are very
    helpful. I bookmarked the site and will be using it as a resource
    from now on.

  • [nQSError: 59014] The  requested column does not exist in this table.

    Hi
    As you know this error has been discussed in other threads.. the difference in mine is that not only the time series measures but all the columns are giving me the error...none of the columns are being displayed... The rpd has no consistency errors. can anyone suggest what may be going on?
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 59014] The requested column does not exist in this table. (HY000)
    SQL Issued: SELECT column1 saw_0 FROM Paint3 ORDER BY saw_0
    Thank you
    mm58

    I guess you have the column in RPD, and it is available for queries.
    are you using any time measures? if so check you chronological keys.

  • IE does not display my flash movie

    Hello fellows, I am having a huge problem with MIE. It does
    not displays the flash object embed! Firefox works fine, but IE
    doesn't!
    Here are the codes:
    quote:
    Code made by me:
    <object width="757" height="153">
    <param name="movie" value="/script/top.swf"> <param
    name="quality" value=high>
    <param name="play" value=true> <param name="bgcolor"
    value=#0000000>
    <param name="wmode" value="transparent">
    <embed src="/script/top.swf" width="757" height="153"
    wmode="transparent">
    </embed>
    </object>
    The funny thing is that I use almost the same code to display
    another flash movie and it WORKS for the second!!! Why is that? The
    Firefox displays both of them fine.
    I tried a second code:
    quote:
    Code generated by Flash itself:
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" odebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
    width="757" height="153" id="top" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="script/top.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#000000" />
    <embed src="script/top.swf" quality="high"
    bgcolor="#000000" width="757" height="153" name="top"
    align="middle" allowScriptAccess="sameDomain"
    type="application/x-shockwave-flash" pluginspage="
    http://www.macromedia.com/go/getflashplayer">
    </embed>
    </object>
    When I use the code above it returns to me an error on line
    215, but my file has only 196 lines! And if I count the included
    javascript, the possible lines are commentaries. The Firefox works
    fine.
    What is wrong with IE?
    See ya!
    Augusto

    > <object width="757" height="153">
    All the essential stuff is missing form the <object>
    tag .. so it will fail
    on IE (firefox doesn't use the object tag)
    > odebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#v
    "odebase"? should be "codebase"
    Use the tags generated by Flash when you publish to HTML and
    things should
    be fine. Don't try to do it yourself unless you are an expert
    (and even
    experts don't just typ in tags themselves .. they copy and
    paste from
    previous html they have that works)
    Jeckyl

  • Photosmart 2610 all-in-one Scan preview does not display

    Recovering from a hard-disk crash, I've just reinstalled my Photosmart 2610 all-in-one using the driver and software package for Windows XP : rub_W01_Americas_Euro1_NB.exe. downloaded from the HP support site. All seems to be running well, except for a glitch when I try to scan: the document Preview does not display.  I have made certain that the Preview checkbox is duly selected, but nothing seems to help. It is the same whether I'm scanning a picture or a document. It also makes no difference whether I launch the scan from HP Director or from within another application.
    Note that if I click Accept, the document (or picture) will indeed be scanned and saved. But I won't see it until I open it with some other application.
    Thoughts, anybody?
    Thanks!
    James

    Hello James, welcome to the forums
    I understand you are unable to see your scanned preview with your Photosmart 2610. I would suggest the guide below to use for troubleshooting steps for this issue.
    Scanning Stops at the Preview Screen when the Printer is Connected to the Computer with a USB Cable ...
    If the troubleshooting does not help resolve your issue, I would then suggest calling HP's Technical Support to see about further options for you. If you are calling within North America, the number is 1-800-474-6836 and for all other regions: click here.
    Have a great day
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • This Formula(Function) compiles but does not display any result

    Please can anybody help me resolve this issue.The code below is a code for a formula(function) column in oracle report, i have complied this code and it successfully complied but it does not display any result for the column having a stock balance in the entire report.
    function CF_STOCK_BALFormula return Number is
         v_all_positive NUMBER;
         v_all_negative NUMBER;
    begin
         IF :transaction_type IN ('RECEIPT', 'RETURN') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal + :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal + :quantity;
              END IF;
         ELSIF :transaction_type IN ('ISSUE') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal - :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal - :quantity;
              END IF;
         END IF;
    RETURN (:cp_stock_bal);
    end;
    Edited by: Gbenga on Jan 17, 2012 11:30 PM

    Please can anybody help me resolve this issue.The code below is a code for a formula(function) column in oracle report, i have complied this code and it successfully complied but it does not display any result for the column having a stock balance in the entire report.
    function CF_STOCK_BALFormula return Number is
         v_all_positive NUMBER;
         v_all_negative NUMBER;
    begin
         IF :transaction_type IN ('RECEIPT', 'RETURN') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal + :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal + :quantity;
              END IF;
         ELSIF :transaction_type IN ('ISSUE') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal - :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal - :quantity;
              END IF;
         END IF;
    RETURN (:cp_stock_bal);
    end;
    Edited by: Gbenga on Jan 17, 2012 11:30 PM

  • Windows Explorer for Windows 7.1 32-bit does not display pdf title

    Using Adobe Reader XI version 11.0.08 the pdf title does not display in the Title column of Windows Explorer.  This worked under Windows XP 32-bit
    How is this fixed?
    wojw

    Here is the screen shot. Notice the Title column is empty.

  • Image content type in Site Asset Image library: The Preview and Thumbnail Preview columns do not display the picture of the item.

    I have two different Site Asset libraries.  The Site Asset Picture library has items of
    content type picture.  The Site Asset Image Library has items of
    content type image. 
    1) I do not quite understand the different between a picture content type versus an image content type. 
    2) the thumbnail and preview columns do not display the image in the Site Asset
    Image Library.  (the image does display in the thumbnail column of the Site Asset Picture library.)  I expected the image to display in the Site Asset Image Library the same as it does in the Site Asset Picture library. 
    Why doesn't it?
    Betty
    Betty Stolwyk

    I have subsequently found out that our "Site Asset Images" library is a Document Library to which someone must have replaced the Document content type with an Image content type.  I also found out that picture previews/thumbnails cannot be displayed
    in Document libraries.  So the problem was the library type, not the content type.
    So I simply created a new Picture Library (whose content type = picture) and copied the files into that and the thumbnails displayed just fine!
    I bet what led to this is the default "Site Assets" library that is created for a new Team site.  It is just a document library but sounds very similar to the "Assets" library.  I can imagine someone thinking the "Site Assets" library was a standard
    container for images, and simply changed the name to better identify the content! 
    As far as 'image' vs 'picture' content types, I noticed that a new Picture Library contains a content type of 'picture', but an Asset Library contains a content type of 'image' (as well as audio and video).  Although the 'image' content type has a few
    more fields than the 'picture' content type (picture content type does not have thumbnail), the actual Picture Library contains pretty much all the same fields, including the thumbnail.  So for all practical purposes, either library type can be used for
    storage of pictures.  I am guessing that the Pictures Library which uses the picture content type is for backwards compatibility purposes, and that the 'image' content type is newer, being derived from the new "Rich Media Asset" content type and used
    in the new Asset Library which can hold audio and video in addition to pictures.  
    Microsoft Help also mentioned that a Picture Library has a slide view which an Asset library does not.  So my take on that is that if you want the potential of seeing your pictures as a slide show, put them in a Picture library which is still using
    the 'picture' content type of previous SharePoint versions.  If you want to keep pictures organized with audio/video files, then put them into an Asset library which uses the  'image' content type derived from the new Rich Media Asset content type.
    Betty Stolwyk

  • On resize of report, some data does not display in full

    I have to modify a standard report, so I adjust the main section width from 11 t0 14, and the report width from 132 to 142. I compiled the report and run it. I noticed that some items does not display in full, even the text item header.
    ex:
    prev after modif
    1234.45 123
    Fname Fnam
    Account Accou
    At design mode, I can see that the space is enough for the item to display its full value. Anybody knows to deal with this?
    this report is run thru oracle apps.

    treehuggerinny wrote:
    > This the the search result screen:
    >
    http://67.199.64.241/consumers/srchresult.asp?gender=either&searchword=&zip=&fir
    > stname=&LastName=&go=Search
    >
    > If you choose Herrmann, there should be narratives.
    >
    > Any thoughts would be most appreciated!!!
    I see that you're using ASP, if the fields in question are
    memo fields in Access or nText fields in SQL server, then it's
    possible that the following tech note may help out:
    http://www.webassist.com/media/professional/support/technotes/10009.pdf
    Or you may need to specify all of your columns (not SELECT *
    ) and manually move the memo/ntext fields to the end of the list of
    fields.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Adobe Bridge CS3 - does not display thumbnails for Canon 40D or 50D RAW files

    I wanted to use Bridge to view my Canon EOS 50D RAW files and it does not display the thumbnails, just icons. I checked my 40D cr2 files and saw same thing.
    I have purged the cache and rest the cache preferences and it has not helped. I would like to be abl eto view the thumbnails of the RAW files via Bridge if possible. Jpg files and Tif files can be viewed without any issues.
    Am using Bridge version 2.1.1.9 and Pshop CS3 10.0.1

    I have the exact same problem. I can view my RAW file thumbnails (which are .ARW files from my Sony A200 camera) in the Finder and in other applications, such as Preview, but not in Adobe Bridge CS3. I know that I did try purging the cache at one point to see if that would fix it, but then I didn't know what to do after that. Before I purged the cache, I was able to view RAW thumbnails in Bridge, but then they would not increase in size when I tried using the slider (at the bottom right of the Bridge window)

  • Aperture 3 project does not display any images in one Project

    This is a strange situation.  The bullets below outline the situation:
    The project does not display any images
    When I place the pointer over the project it shows there are 500+ images
    I have located the RAW images stored in my aperture library
    I can pull up the images using a smart folder and searching for photos taken on the event day
    This is happening only to one of my projects that I know of (weird!!)
    I have tried to 're-add' the image by both importing and dragging and dropping into the project, neither works
    I tried the following basics:
    Fixed permissions
    Rebuilt the database
    Tried to re-import the data, but when I have the 'don't import duplicates' these are not an option
    Found the images in my Aperture library
    I created another project and drug all of the images into that project
    Any idea how I can fix this?
    My fear is that if I delete the original project, the original master images will be deleted.

    The most common cause of this is some sort of stuff in the search box at the top of the browser that you don't expect to be there. Just clear it and all your images should show up.
    RB
    One note - if you drug your images from one project to another it moves them vs copies them unless you hold down the option key.

  • MENU item selection does not display drop down in ITS enabled transaction

    Hello,
    We are experiencing a strange behavior between two portal env.
    1. DEV.
    For example we have transaction MM01 display in the Portal via ITS (integrated). The end user can select the Menu Tab and the System Tab and the drop downs appear as expected.
    2. Prod
    Same  scenario as above. Only this time, end user is unable to select the button. The Menu and System Tab dont appear greyed out but selecting it does not display the drop down.
    Material, Edit GoTo Defaults are some of the links under the Menu tab for MM01.
    Very confusing. And this is the behavior in Prod for all transactions. Any ideas on why this is happening would be greatly appreciated.
    The architectural difference is that DEV has no Web Dispatcher versus Prod has the Web Dispatcher.
    We are on EP 7.0
    Many thanks.
    Regards,
    Sunil

    Thanks. Now, I realise this may cause dismay to some, but I have now solved the problem, and just wanted to share my experience with those even less savvy than myself. In Dreamweaver, the Spry css styles are arranged with little or no hint as to which style controls what. I found that there is a rule in the sub-menu styles that controls the little graphic arrows which indicate that there are dropdown subs under the tabs. I had removed these arrows to make way for my background images. However, the rules that control their positioning by percentage were still there, causing my images to display incorrectly. Of course, there was no way anyone could have spotted this and helped me as the fault was in the external spry css file, not the page code. So many thanks to vw2ureg for looking anyway. Regarding the page code, which you have flagged up, would you mind elaborating on what you see wrong here? I'm none the wiser. Many thanks again.

Maybe you are looking for

  • Silly question, but hopefully easy

    Where is the setting to only sync the songs with checkmarks next to them? I can't seem to find it and I thought it was in preferences??? I have days I want to hear George Carlin, but not every day if you get my drift.

  • Table list for select statment

    hello all, I been trying to setup a plsql statment to run a select statment from tables that are in a list. this is what I have done so far as a test and it is not letting me do it and I don't know why can anyone point me in the right direction. decl

  • Ever since updated to waterfox 34 I cannot open a new tab nor can I manually type a web address

    Ever since updated to waterfox 34 I cannot open a new tab nor can I manually type a web address

  • Windows x64 Deployment Issue works in /debug

    I'm seeing a strange issue where my natively created JavaFX exe fails when I try to run it on a Windows 7/. It was failing silently, so I started it with "/debug" appended afterwards to show what was happening. To my great surprise, the program works

  • Configuring Server to update from Localhost

    Please pardon my ignorance.  I'm a Unix guy.  I'm not a Windows hater, just a little frustrated. I'm working with a disconnected network scenario.  The export server has been synchronized and the WSUSContent and metadata have been transferred to the