Table component grid color option

hello,
i'm curious what this option is suppose to do. i have the show grid option checked, and change the color on the grid color option. when i view the grid, i don't see any difference, so i don't know what this option is suppose to change.
any help would be greatly appreciated.
thank you
tracy

Column width and background can be set in the Excel range and then bind table component to display the range.
If you change the Column width of background in the Excel range, you need to rebind the display range to update the format.
Hope this can help!

Similar Messages

  • How to have alternate colors in table component?

    Hi everyone,
    Using the jsf data table, you can easily set the rowClass to set alternating row colors.
    I am sure it is possible to do the same using Sun's Table Component. Please share how???
    I looked in the theme css but in vain!!!
    Thanks!

    Hi,
    Please check out the blog entry titled "Creator: How To Highlight Specific Data Table Rows" by Tor, one of Creator's engineers. This is available at:
    http://blogs.sun.com/roller/page/tor/20050113#creator_how_to_highlight_specific
    Hope this helps.
    RK

  • Table component - column width and background color?

    Is there any way to set the column width on the table component?  And is there any way to set the background color.  I am using Xcelsius 2008.
    Thanks,
    Karen

    Column width and background can be set in the Excel range and then bind table component to display the range.
    If you change the Column width of background in the Excel range, you need to rebind the display range to update the format.
    Hope this can help!

  • How to implement af:table for Grid Entry screen

    Hi, I am using JDevelper 11.1.1.3g.
    I have a requirement in which i have to show a dataentry screen in Grid format.Below is my requirement.
    I want to make a dataentry screen in Grid format. I want to show a table component which will have many rows and each row will be like an Individual employee record when i save. Each row will have employee name as inputText and Department as LOV and Age as inputText components.
    When the user clicks on the SAVE button, i want all the employees the user has added in the row format inside the table should be saved in Employees table as each single employee record.
    More over i want to have an option in the screen to give the user flexibility to add more rows in the table at Runtime to add more row. Eg. When the page loads i want initially 10 empty rows to be displayed by default. But when the user clicks on add more rows, 5 more rows should be added at Runtime to this table.
    Please Please guide me on how can i achieve this screen functionality.
    Any reference would be a great help.
    Zeeshan

    ..................BELOW IS THE SOURCE OF MY JSP PAGE.........................
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1" binding="#{backingBeanScope.backing_GridDataEntry.d1}">
    <af:messages binding="#{backingBeanScope.backing_GridDataEntry.m1}"
    id="m1"/>
    <af:form id="f1" binding="#{backingBeanScope.backing_GridDataEntry.f1}">
    <af:panelCollection binding="#{backingBeanScope.backing_GridDataEntry.pc1}"
    id="pc1">
    <f:facet name="menus"/>
    <f:facet name="toolbar">
    <af:toolbar binding="#{backingBeanScope.backing_GridDataEntry.t2}"
    id="t2">
    <af:commandToolbarButton actionListener="#{bindings.Delete.execute}"
    text="Delete"
    disabled="#{!bindings.Delete.enabled}"
    binding="#{backingBeanScope.backing_GridDataEntry.delete}"
    id="delete" partialTriggers="t1"/>
    <af:commandToolbarButton actionListener="#{bindings.Rollback.execute}"
    text="Rollback"
    disabled="#{!bindings.Rollback.enabled}"
    immediate="true"
    binding="#{backingBeanScope.backing_GridDataEntry.ctb2}"
    id="ctb2">
    <af:resetActionListener/>
    </af:commandToolbarButton>
    <af:commandToolbarButton actionListener="#{bindings.Commit.execute}"
    text="Commit"
    disabled="#{!bindings.Commit.enabled}"
    binding="#{backingBeanScope.backing_GridDataEntry.ctb1}"
    id="ctb1"/>
    <af:commandToolbarButton actionListener="#{bindings.CreateInsert.execute}"
    text="CreateInsert"
    disabled="#{!bindings.CreateInsert.enabled}"
    binding="#{backingBeanScope.backing_GridDataEntry.createInsert}"
    id="createInsert" partialTriggers="t1"/>
    </af:toolbar>
    </f:facet>
    <f:facet name="statusbar"/>
    <af:table value="#{bindings.CaseDetlVOUPD1.collectionModel}" var="row"
    rows="#{bindings.CaseDetlVOUPD1.rangeSize}"
    emptyText="#{bindings.CaseDetlVOUPD1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.CaseDetlVOUPD1.rangeSize}"
    rowBandingInterval="0"
    selectedRowKeys="#{bindings.CaseDetlVOUPD1.collectionModel.selectedRow}"
    selectionListener="#{bindings.CaseDetlVOUPD1.collectionModel.makeCurrent}"
    rowSelection="single"
    binding="#{backingBeanScope.backing_GridDataEntry.t1}"
    id="t1" editingMode="clickToEdit"
    partialTriggers="::delete ::createInsert ::ctb2 ::ctb1">
    <af:column sortProperty="CaseNo" sortable="false"
    headerText="#{bindings.CaseDetlVOUPD1.hints.CaseNo.label}"
    id="c4">
    <af:inputText value="#{row.bindings.CaseNo.inputValue}"
    label="#{bindings.CaseDetlVOUPD1.hints.CaseNo.label}"
    required="#{bindings.CaseDetlVOUPD1.hints.CaseNo.mandatory}"
    columns="#{bindings.CaseDetlVOUPD1.hints.CaseNo.displayWidth}"
    maximumLength="#{bindings.CaseDetlVOUPD1.hints.CaseNo.precision}"
    shortDesc="#{bindings.CaseDetlVOUPD1.hints.CaseNo.tooltip}"
    id="it3">
    <f:validator binding="#{row.bindings.CaseNo.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Name" sortable="false"
    headerText="#{bindings.CaseDetlVOUPD1.hints.Name.label}"
    id="c6">
    <af:inputText value="#{row.bindings.Name.inputValue}"
    label="#{bindings.CaseDetlVOUPD1.hints.Name.label}"
    required="#{bindings.CaseDetlVOUPD1.hints.Name.mandatory}"
    columns="#{bindings.CaseDetlVOUPD1.hints.Name.displayWidth}"
    maximumLength="#{bindings.CaseDetlVOUPD1.hints.Name.precision}"
    shortDesc="#{bindings.CaseDetlVOUPD1.hints.Name.tooltip}"
    id="it6">
    <f:validator binding="#{row.bindings.Name.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="IdType" sortable="false"
    headerText="#{bindings.CaseDetlVOUPD1.hints.IdType.label}"
    id="c7">
    <af:inputText value="#{row.bindings.IdType.inputValue}"
    label="#{bindings.CaseDetlVOUPD1.hints.IdType.label}"
    required="#{bindings.CaseDetlVOUPD1.hints.IdType.mandatory}"
    columns="#{bindings.CaseDetlVOUPD1.hints.IdType.displayWidth}"
    maximumLength="#{bindings.CaseDetlVOUPD1.hints.IdType.precision}"
    shortDesc="#{bindings.CaseDetlVOUPD1.hints.IdType.tooltip}"
    id="it2">
    <f:validator binding="#{row.bindings.IdType.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="IdNo" sortable="false"
    headerText="#{bindings.CaseDetlVOUPD1.hints.IdNo.label}"
    id="c2">
    <af:inputText value="#{row.bindings.IdNo.inputValue}"
    label="#{bindings.CaseDetlVOUPD1.hints.IdNo.label}"
    required="#{bindings.CaseDetlVOUPD1.hints.IdNo.mandatory}"
    columns="#{bindings.CaseDetlVOUPD1.hints.IdNo.displayWidth}"
    maximumLength="#{bindings.CaseDetlVOUPD1.hints.IdNo.precision}"
    shortDesc="#{bindings.CaseDetlVOUPD1.hints.IdNo.tooltip}"
    id="it1">
    <f:validator binding="#{row.bindings.IdNo.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="CourtCdCan" sortable="false"
    headerText="#{bindings.CaseDetlVOUPD1.hints.CourtCdCan.label}"
    id="c3">
    <af:inputText value="#{row.bindings.CourtCdCan.inputValue}"
    label="#{bindings.CaseDetlVOUPD1.hints.CourtCdCan.label}"
    required="#{bindings.CaseDetlVOUPD1.hints.CourtCdCan.mandatory}"
    columns="#{bindings.CaseDetlVOUPD1.hints.CourtCdCan.displayWidth}"
    maximumLength="#{bindings.CaseDetlVOUPD1.hints.CourtCdCan.precision}"
    shortDesc="#{bindings.CaseDetlVOUPD1.hints.CourtCdCan.tooltip}"
    id="it7">
    <f:validator binding="#{row.bindings.CourtCdCan.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="CourtLetterNo" sortable="false"
    headerText="#{bindings.CaseDetlVOUPD1.hints.CourtLetterNo.label}"
    id="c1">
    <af:inputText value="#{row.bindings.CourtLetterNo.inputValue}"
    label="#{bindings.CaseDetlVOUPD1.hints.CourtLetterNo.label}"
    required="#{bindings.CaseDetlVOUPD1.hints.CourtLetterNo.mandatory}"
    columns="#{bindings.CaseDetlVOUPD1.hints.CourtLetterNo.displayWidth}"
    maximumLength="#{bindings.CaseDetlVOUPD1.hints.CourtLetterNo.precision}"
    shortDesc="#{bindings.CaseDetlVOUPD1.hints.CourtLetterNo.tooltip}"
    id="it4">
    <f:validator binding="#{row.bindings.CourtLetterNo.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="SrlNo" sortable="false"
    headerText="#{bindings.CaseDetlVOUPD1.hints.SrlNo.label}"
    id="c5">
    <af:inputText value="#{row.bindings.SrlNo.inputValue}"
    label="#{bindings.CaseDetlVOUPD1.hints.SrlNo.label}"
    required="#{bindings.CaseDetlVOUPD1.hints.SrlNo.mandatory}"
    columns="#{bindings.CaseDetlVOUPD1.hints.SrlNo.displayWidth}"
    maximumLength="#{bindings.CaseDetlVOUPD1.hints.SrlNo.precision}"
    shortDesc="#{bindings.CaseDetlVOUPD1.hints.SrlNo.tooltip}"
    id="it5">
    <f:validator binding="#{row.bindings.SrlNo.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.CaseDetlVOUPD1.hints.SrlNo.format}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="UserId" sortable="false"
    headerText="#{bindings.CaseDetlVOUPD1.hints.UserId.label}"
    id="c8">
    <af:inputText value="#{row.bindings.UserId.inputValue}"
    label="#{bindings.CaseDetlVOUPD1.hints.UserId.label}"
    required="#{bindings.CaseDetlVOUPD1.hints.UserId.mandatory}"
    columns="#{bindings.CaseDetlVOUPD1.hints.UserId.displayWidth}"
    maximumLength="#{bindings.CaseDetlVOUPD1.hints.UserId.precision}"
    shortDesc="#{bindings.CaseDetlVOUPD1.hints.UserId.tooltip}"
    id="it8">
    <f:validator binding="#{row.bindings.UserId.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="CreatedDt" sortable="false"
    headerText="#{bindings.CaseDetlVOUPD1.hints.CreatedDt.label}"
    id="c9">
    <af:inputDate value="#{row.bindings.CreatedDt.inputValue}"
    label="#{bindings.CaseDetlVOUPD1.hints.CreatedDt.label}"
    required="#{bindings.CaseDetlVOUPD1.hints.CreatedDt.mandatory}"
    shortDesc="#{bindings.CaseDetlVOUPD1.hints.CreatedDt.tooltip}"
    id="id1">
    <f:validator binding="#{row.bindings.CreatedDt.validator}"/>
    <af:convertDateTime pattern="#{bindings.CaseDetlVOUPD1.hints.CreatedDt.format}"/>
    </af:inputDate>
    </af:column>
    </af:table>
    </af:panelCollection>
    </af:form>
    </af:document>
    </f:view>
    <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_GridDataEntry-->
    </jsp:root>

  • Table component - how to find out which cell is clicked

    Hello!
    I have a couple of questions regarding table component
    1. Is there any way to find out which table cell is clicked on?
    2. And is it possible to paint clicked cell programmatically?
    Possible solution might be a Select Boolean Checkbox inside a cell, but anyway, i'd have to determine which cell contains this checkbox (some kind of cell coordinates, etc...)
    Thank you

    1. Is there any way to find out which table cell is clicked on? It would be easy to suggest the way, if you can share us the requirement
    2. And is it possible to paint clicked cell programmatically?You can do it through javascript by setting contentStyle property.
    Sample Code:
    <af:table ...>
      <af:column>
         <af:inputText ...>
                  <af:clientListener method="paintCurrentCell" type="click"/>
         </af:inputText>
      </af:column>
    </af:table>
    <!-- javascript method -->
    function paintCurrentCell(event){
        event.getSource().setContentStyle("background-color:red");
      }Sireesha
    Edited by: Sireesha Pinninti on Nov 10, 2009 7:01 PM

  • Fill table cells with color % depending on cell content

    Hi.
    I'm working on a document with a lot of tables filled with percentages. The tables are originally on a Word document and the table cells are tinted according to their content: a value of 20% on the cell corresponds to a tint of 20%. This is done automatically on the Word document through a conditional formatting option that applies a graded color scale. Is there any way to do this in InDesign? I tried placing the tables and tried all options, but the color is not imported. Perhaps a script or a GREP style?
    Thank you.

    Conditional formatting in Word is done via formula, but in Excel it is handled more "on the surface" and Excel's conditional formatting carries into InDesign nicely via Place or Paste. It could be worth considering moving those tables into Excel.
    InDesign doesn't do this kind of formatting as a native function, but it couldn't hurt to ask about possible scripted solutions in the Scripting Forum.

  • Table row change color on hover

    Hi,
    I don't know if it's possible to change table row color on mouse hover, I've been looking at skin-selectors (http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/skin-selectors.html#Global%20Selectors) and I haven't found any row style class for af:table Component... if anyone knows how to achieve this I would be thankful.

    Hi,
    I replied to the other question of yours. I don't think this is possible because the row is not a component that can have a style applied to it. You may be more successful in applying the CSS to the components (outputText or inputText) on the table cells.
    Frank

  • How to achieve Page Navigation in af:table component

    I am using JDeveloper 11.1.1.3.
    I have a requirement for which i dont know how to proceed. Please guide me on the below requirement.
    I have an af:table component which displays a list of all the employees from the database. The total number of records in my database is 300(employee table).
    So my af:table component while displaying the Employee view object displays all the 300 employees when i scroll down the list.
    But i dont want the user to scroll down to see all the employees. In the af:table footer i want the page navigation option to be shown which will allow the user to see 10 records per page. When the user clicks on the next button , the af:table should display the next 10 records of the view object.
    Kindly help me or guide me to some reference material on how can i achieve this.
    Zeeshan

    There is no out-of-the-box table pagination in ADF 11g, the scroll-table is the way to go. New content is fetched only as needed when the user scrolls down the list. You can use the table's column filters or a separate search query component to make it easier to find employees on the list.
    See previous discussions, e.g. Urgent!! Pagination in ADF 11g.. and ADF Faces - Table Navigation in 11g

  • How feed many record in table component and not use append command again

    hi master
    How I feed Multiple records in table component and not use append and save command again and again
    Same as oracle grid
    I give many record and save one time
    Please give me idea how I add Multiple record and save one time not use append and save command again and again
    Thank�s
    aamir

    Hi!
    appendRow() method just add temporal row. For add them to DB commitChanges() method should be used. So you can use appendRow() method several times, fill every new row and only then use commitChanges() method. In this case all new rows will be added to DB per one time.
    Thanks,
    Roman.

  • 'Spreadsheet Table' component formatting

    Hi,
    I have an excel "block" of data that is formatted to the client's expectation. Is it possible to capture those specific formats using the Spreadsheet Table Component (or some other)? It appears that most of my formats are lost, especially the "Wrap Text".
    Is there a way to wrap text using the Grid, List View, or Spreadsheet Table modules on Xcelsius 2008 SP3?
    Thanks in advance!
    -Phil

    I dont think you can do this with any other component except Spreadsheet one. Try playing more with the spreadsheet table component
    the only way i can think of is if you can delete all the text in that block of data and map the spreadsheet table on that - by doing  this you will have the basic structure of that block of data and then you can use lables to do the formatting
    hope it helps

  • New ADF mobile - problem from lacking of Table component

    Hi, i need a table/grid like component for my mobile app project. There is a List View component in ADF Mobile but isnt enough for me. . How can i create data views like table/grid?

    Hi, thanks for your helpful answers. there table component examples that i need, [Example-1|http://www.google.com.tr/imgres?q=table+view&hl=tr&sa=X&biw=1600&bih=775&tbm=isch&prmd=imvns&tbnid=erU0WN9B4NdweM:&imgrefurl=http://www.visokio.com/table-view&docid=X849sJj0ADP7uM&imgurl=http://www.visokio.com/files/Resources/OUGuide/125_UsingViews/Table226/207_SensitivityAnalysis_500x218.jpg&w=500&h=218&ei=2oisUMOOKYTEsgaWtIGIBg&zoom=1&iact=hc&vpx=924&vpy=432&dur=6925&hovh=148&hovw=340&tx=207&ty=51&sig=116509651760517024274&page=2&tbnh=116&tbnw=266&start=27&ndsp=33&ved=1t:429,r:44,s:0,i:202] [Example-2|http://www.google.com.tr/imgres?q=table+view&hl=tr&sa=X&biw=1600&bih=775&tbm=isch&prmd=imvns&tbnid=3A8oz3El1oxSaM:&imgrefurl=http://docs.oracle.com/cd/E21454_01/html/821-2585/dsgn_db2conn-otd_t.html&docid=ipGQMXtyMBFQwM&imgurl=http://docs.oracle.com/cd/E21454_01/html/821-2585/figures/Oracle_Table_View_Columns.png&w=487&h=396&ei=2oisUMOOKYTEsgaWtIGIBg&zoom=1&iact=rc&dur=337&sig=116509651760517024274&page=2&tbnh=133&tbnw=164&start=27&ndsp=33&ved=1t:429,r:43,s:0,i:199&tx=100&ty=58]

  • "Bitmap file: No color table available (True Color, Bitcount 32)"

    When I tried to import a bitmap file into SAP R3 by using T code SE78 -> Graphics->BMAP, I got an error message "Bitmap file: No color table available (True Color, Bitcount 32)".
    How can I fix this?
    Thanks in advance!
    Fisher Li

    I followed the answer here and it did not work for me
    I used freware called GIMP to save the image as 24 bit (after choosing the file name at save, you get to set this in the advanced options).  This worked.
    I tried rescaling the image to be smaller and this made no impact on my ability to load the image.

  • Clicking a tree node does not refresh the fields in the table component

    hi all,
    I am using a tree component along with a table component in my page.so whenever i am clicking on a node it should display the relevant information of that node in the table from the database.But whenever i am doing the page is not refreshing and the old values of the textfields in the table still exist.i have written the code to populate the table in a button click event.It is working fine but the same is not working when i am clicking any node in the tree component.Can anyone provide a solution to this problem.
    Thanks and regards,
    Prasant Kumar

    Never mind... I actually found something that works...
    treeModel.nodeStructureChanged(leadSelection);

  • Table component disturbing the order of rows while displaying

    HI,
    In jspx when ever data is displayed in table,when we select last page the table component
    is displaying data which is not sorted.(values given to table are changed in output).
    This is occuring only in last page.
    EX:If i have 87 records with pagination,where 15 are displayed.
    when i select to last page the output from my query is not matching the data viewed.
    Using apache trinidad1.0.5
    Regards,
    Vin
    Edited by: vinTK on Apr 26, 2012 6:16 AM

    I think that it's a very common situation.
    No ideas?
    I think that it's interesting to create appz with great performance.

  • How to get list data and bind to data table or Grid view in share point 2010 using j query

    hi,
    How to bind list data in to data table or  grid view  using Sp Services.
    How to use sp services in share point 2010 lists and document library 

    Hi, You can use List service, SPServices and JQuery to get your requiement done-
    See here for an sample implementation -
    http://sympmarc.com/2013/02/26/spservices-stories-10-jqgrid-implementation-using-spservices-in-sharepoint/
    http://www.codeproject.com/Articles/343934/jqGrid-Implementation-using-SpServices-in-SharePoi
    Mark (creator of SPServices) has some good documentation on how to use SPServices-
    http://spservices.codeplex.com/wikipage?title=%24().SPServices
    SPServices Stories #7 – Example Uses of SPServices, JavaScript and SharePoint
    http://sympmarc.com/2013/02/15/spservices-stories-7-example-uses-of-spservices-javascript-and-sharepoint/
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

Maybe you are looking for