'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

Similar Messages

  • Wrong format for spreadsheet table, list view, label component

    I have a movie which is connected to a web service.  The web service feeds into cells that are linked to a spreadsheet table component.  The cells are properly formatted in excel and the fields show up fine when using static data.  However, once I pull in data in preview mode or with a published movie the cells lose the desired format.  I tested this with other components such as list view and label and get the same result.  I do not see the same results with the mouse over values in a chart though.  Anyone know what might be the problem?
    Thanks for the help

    Thanks for the response Andy.
    The fields I use have the same uniform format so there is no dynamic formatting going on.  I have read up on the rebind fix and have tried it but it doesn't seem to change things.
    Here are the specifics of my situation.  I paste some sample data returned from a query into the excel sheet.  One of the fields is a percentage so I format those cells appropriately and the excel sheet reflects the change.  I then bind the spreadsheet component to the cells containing the sample data.  The percentage field is properly displayed on the canvas as well as when I go into preview mode.  I now feed the cells with the sample data with a web service that uses the same query I used to generate the sample data.  In preview mode the percentage cell now is unformatted and shows up looking like a decimal number.  The same situation occurs for a label component bound to a single percentage cell.  I even configure the label component to format the text as a percentage.

  • Currency format in Spreadsheet tables uses period's instead of comma's

    Xcelsius 2008 SP3.  I have inserted a spreadsheet table into my model, the columns are formatted in a currency format with $ and the thousand's separator that is displaying in the table is a period instead of a comma.  Has anybody else seen this problem?

    Hi,
    yes, I`ve had the same behavior. As a workaround, you have to change the format of the cells.
    Go into the properties of the cells:
    -> Right mouse click
    -> format cells
    -> category
    -> number
    -> change something, e.g. the number of decimal places to show
    Then you will have to map the component again to the same cells under "Display Data".
    And now, the currency information will be shown correctly.
    Regards
    Victor

  • XCELSIUS-Comoponent Spreadsheet-table: formatting cells

    Hi,
    I don't see how to format Cells in a spreadsheet-table. For instance right right-justified. I would expect in the table the same format as defined in the excel-sheet. But spreadsheet-table doesn't care at all about these definitions in the EXCEL-Sheet. I used the template "Income sheet", and didn't succeed here either. What is the trick?
    Best regards,
    Alfred

    Hey Alfred, you are right there is an issue with this component ..you need to re-align the component every time you make changes in the back end excel table. To get more info on this you can go through this article...
    [http://analysis-reporting.blogspot.com/2009/08/xcelsius-spreadsheet-table.html|http://analysis-reporting.blogspot.com/2009/08/xcelsius-spreadsheet-table.html]

  • Spreadsheet tables not displaying properly

    Ok.  So I have finally managed to get my dashboard working.  I have one issue that has cropped up.  Before preview, my spreadsheet tables are displaying the ranges I am asking them to do, along with hiding unused cells.  When preview runs, Xcelsius throws out the formats I specifically set the components up to do.  I get a partial result of one piece of data, and a whole lot of "N/A"
    Is there some setting I am missing?  I am scratching my head as to why it works before preview, but not after?  I can send over my work, if someone wants to see what I am seeing.
    Thanks!

    Ok.  So I switched up to the List View Component.  Again, before preview, the model is doing exactly what I am asking it to do.  When the selector in the Accordion menu changes to a new investment, the other components that have to change are doing so.  However, when the preview is run, the List View components are STILL breaking formatting and retuning a "#N/A" in all cells but the first row.
    Why is Xcelsius doing this?  I have checked my excel functions.  They work.  I have checked my links to the components.  They work.  I have checked the spreadsheet tabs with the related data tables.  They work.  There is NOTHING to explain why this damned program is deciding to give the finger to my components and not work on preview.
    Please.  I need help with this.  I really am at a loss to understand why this is happening, and I am getting pretty angry about the decision to utilize this software.

  • Sreadsheet component format

    Hi all
    I´m using Xcelsius 2008 3.0, and I am trying to do one spreadsheet with certain format, this component respect all formats that are in the excel file except the bold characteristic, I refresh the spreadsheet component but it donu2019t take this format
    Thanks in advance

    i'm having version 5.3.2.0
    and its working fine
    for the spreadsheet table, you will have to rebind the cells again everytime you change the format.
    good luck
    Amr

  • Problem with text direction in table component for text with two language!

    Hi,
    I want to display text in table component by binding to the one property,and also the language of this text is farsi that must be in the RTL direction.
    so i defined a direction in style of staticText component in the table.
    when the text is only in farsi language ,it works correct but when the text has one or more words in english language ,format of the text changed and the words moved in text.
    thanks

    I can not understand relation between COM and HTML elements .
    can you elaborate more ?
    All HTML elements are accesable via DOM in browsers.
    Indeed to change an element attribute in html files (in browser without server interaction) we use scripts to access DOM tree and then we change the element attribute.
    for example when you write
    document.forms[1].submit()
    you accessing the element using DOM tree.
    About Farsi problem , I think there is no solution for this problem , as you may know , when we mix RTL and LTR languages in one element text attribute , we have no control over its appearance.
    If i understand your post , you want to show both rtl and ltr in one static Text , which is not doable in simple manner.
    At least i can not offer you a simple way to solve this.

  • Jsf data table component + print null cell

    I am using the jsf data table component and binding the column values to a backing bean.
    <h:dataTable binding="#{backing_showDifferences.dataTable2}"
    id="dataTable2">
    <h:column binding="#{backing_showDifferences.userColumn1}"/>
    <h:column binding="#{backing_showDifferences.userColumn2}"/>
    <h:column binding="#{backing_showDifferences.userColumn3}"/>
    </h:dataTable>
    - some code from my showDifferences.java
    HtmlOutputText column1Text = new HtmlOutputText();
    vb =
    FacesContext.getCurrentInstance().getApplication().createValueBinding("#{users.uclass}");
    column1Text.setValueBinding("value", vb);
    usercolumn1.getChildren().add(column1Text);
    HtmlOutputText column2Text = new HtmlOutputText();
    vb =
    FacesContext.getCurrentInstance().getApplication().createValueBinding("#{users.ue1}");
    column2Text.setValueBinding("value", vb);
    usercolumn2.getChildren().add(column2Text);
    HtmlOutputText column3Text = new HtmlOutputText();
    vb =
    FacesContext.getCurrentInstance().getApplication().createValueBinding("#{users.ue2}");
    column3Text.setValueBinding("value", vb);
    usercolumn3.getChildren().add(column3Text);
    ResultSetDataModel dataModel = new ResultSetDataModel();
    dataModel.setWrappedData(rs);
    dataTable2.setValue(dataModel);
    The raw HTML:
    <table id="form1:dataTable2" class="iuptable" border="1">
    <thead>
    <tr>
    <th scope="col">Heading 1</th>
    <th scope="col">Heading 2</th>
    <th scope="col">Heading3</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>some data in this column</td>
    <td>X</td>
    <td></td>
    </tr>
    <tr>
    <td>Some more data in this row</td>
    <td>X</td>
    <td></td>
    </tr>
    </tbody>
    </table>
    My problem is this...in the raw HTML the <td></td> tag is not formatted nicely on my table output. I have lines around my entire table and each cell within it. When the <td></td> prints there are no lines. I am new to the JSF table data component, but if I were writing some JSP or servlet code I would check that if value was null I would append an &nbsp to the <td> tag (ex. <td>&nbsp</td>) and the table would be formatted properly. The backing bean that I am binding to is pulling the data from a database table...so my sql looks like this:
    SELECT uclass, ue1, ue2 from table1; my problem is when ue1 or ue2 is a null value.
    Any ideas would be greatly appreciated!

    Hi,
    the h:dataTable belongs to the JSF Reference Implementation from Sun, not to Oracle ADF Faces. The rendering is within this component set and I suggest to report your issue on one of the SUN forums (http://forum.java.sun.com/forum.jspa?forumID=427) as we have no handle to e.g. fix an issue if it exists in the component set.
    Frank

  • 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!

  • 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!

  • About "table" component

    Hello experts,
    I want to confirm a issue.
    Does "table" component can rilize the format as follow  via "binding" action ?
    field name
    standard value
    value
    description
    fieldname1
    fieldname2
    fieldname3
    fieldname4
    fieldname5
    If not, how to relize it via development?
    Any sugesstion is welcome !
    Best Regards,
    Chen Jianguo

    Hi,
    If the lines __________ are coming from backend itself, and you want table in this format only, then make 'gridMode' property of your Table UI Element to 'none'..
    Or If you want to check values and put lines manually,
    then you should write code as
    int size=wdContext.node<TableNode>().size();
    for(int i=0;i<size;i++)
        if(wdContext.node<TableNode>().get<TableNodeElementAt(i).get<value1>==null>)
    wdContext.node<TableNode>().get<TableNodeElementAt(i).set<Value1>("__________"); 
    Regards
    LN
    Edited by: Lakshmi Narayana Chowdary Namala on Sep 1, 2008 8:54 AM

  • Is there any library support the creation of spreadsheet table?

    Is there any library support the creation of spreadsheet table?

    Hi,
    TableItem is a supported UI-component of Mobile Visual Designer of NetBeans Mobility Pack. Ready to use!
    NetBeans Mobility Pack is the integrated Sun Wireless Toolkit 8an excellent "emulator") in the NetBeans high performance IDE. It simply increases the developer productivity.
    bye,
    Asghar

  • 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.

  • Problem with checkbox on table component

    Hello i am having a problem with checkbox in table component
    i am developing something like a shopping cart app and i have a checkbox in my table component , i want users to select items from the checkbox to add to thier cart, They can select the items from cartegory combobox , my problem is when they select the items from the checkbox if they select another category the alread selected once do not display in my collection opbject please how can i maintain the state of the already selected items in my collection object

    Hi,
    Please go through the tutorial "Understanding scope and managed beans". This is available at:
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/scopes.html
    The details of the selected items need to be stored in an object that is in session scope.
    Hope this helps
    Cheers
    Girish

Maybe you are looking for

  • Vendor Master data report

    HI All, My client want to see the payment terms for the vendor which was created from June-11 to Oct-31-11. Colud you guys plesae guide me how to pull the vendor master records created, changed and Extended from June-11 to Oct-31-11, is there any T.c

  • How to embed a YouTube video in keynote on ipad2

    I am new to using keynote on the ipad2 and wanted to know the steps, if there are any, to embed a YouTube video into keynote.  Any suggestions?

  • Jerky video - slow responses using Premiere Elements 9

    I just bought a new laptop (desktop) replacement, specifically to create videos on DVD.  I am using video footage that was originally in the AVCHD format but were converted to MP4's.  All videos appear fine on the workspace.  But when dragging the cl

  • Clean install v4 - Microsoft Visual C++ Runtime Lib "buffer overrun detected" error

    Microsoft Visual C++ Runtime Library "buffer underrun detected" has only started to occur after installing v4. i realise plugins etc. might be out of date so i clean installed[no bookmarks, no preferences, install directory cleared etc.] same deal. f

  • Contacts and Rich Text

    I'm using the Oracle connector (latest version) and Outlook 2003. Can't turn off the rich text option for my contacts. It forces rich text to all my emails even to those who can't read it. I tried clicking on the email address, but it won't store bac