HTML Data Table with cell-level inline messages?

Hi all.
I'm not suprised by this, but I am wondering if anyone has figured out a slick/elegant way around the "problem"
Basically, the problem I want to solve is:
how to get corresponding validation error messages to show up in the data table cell that contains the (editiable) ui component representing the "offending" value?
The naive first approach would be simply to place an inline message component just before or after the corresponding data table column's row value presentation component.
But obviously, this won't work, primarily because the inline message component id will not be unique (does not pick up the currentRow to make it unique) asd well as due to the issue of binding the inlineMessage component's "for" attribute to the correct row (as well as column).
So, the naive first approach results in a thrown exception:
javax.servlet.ServletException: Duplicate component id: 'form1:personDataTable:firstNameValidationInlineMessage'
Now, I know I could add "virtual" columns to my data table to hold validation errors so that they correspond to the correct row/columns and I know I can bind the rendered attribute, style etc, for corresponding presentation elements, but then I've basically side-stepped the whole faces message functionality built into the JSF framework.
Also, if I have to use "virtual" columns, then I've complicated life for myself, since I ordinarily want to bind the data table to a list of bean instances (i.e. we are using hibernate persistence) or even a row set (difficulty setting a column value that is not updateable in data source, i.e. corresponds to no table/column and maybe involves dynamically adding "virtual" column to data cache?).
Now, I know I can place a message list on the page instead (this is currently what I am doing), and I know I can change the application so that I provide a separate *single row" edit page, both of which provide a semi-adequate alternative.
I like the first alternative (the one I'm using), because in-place editing of data table rows is so much more compact and elegant, both in terms of presentation and coding.
Using this first alternative, I am currently adding to the validation error messages the currentRow attrubute so that users can see it an trace back to the corresponding row in the data table to correct the data entry.
However, everyone, users, project drivers and developers (including myself), are grumbling a bit over such a "hackish" approach.
Any thoughts? Am I missing something obvious?

Well I'll be damned!
What's done in the sample app is, of course, the intuitively obvious choice and is exactly what I started out trying to do the first time round.
But as I mentioned before, when I first tried it (yes: I'm pretty sure I set the "for" attribute on the inlineMessage components), I got the non-unique component id exception for the inlineMessage component(s) after adding the second (but not the first) row to the page.
Anyway, after dragging my inlineMessages to the exact same position as those in the AppModel example, now things work fine (except I think I'd like a line break before the message and to change the row/column styles so the values and messages line up properly...the look is rather ugly in the AppModel example when there are validation messages displayed).
Not sure, but I'm thinking maybe there was an issue with where the inline message markup was placed, my first time through, relative to the data table value bound component and the column header facet?
I was using the application view drag 'n drop feature the first time round and dragged the inlineMessage component to the spot just below the data table value bound component and hence just above the column header facet. In the AppModel example, OTOH, the inline messages are placed just after the column header facet.
Of course, I will now try to duplicate the original exception.
If I can (and it is an issue with placement), I will post back some sort of bug report or RFE. Otherwise, I'll post back declaring what a bone head I've been...;-)
Anyway, thanks for the quick response, v.
Campbell

Similar Messages

  • Issue with appending data to JSF HTML - Data Table Component

    I am following the article from Oracle Magazine title Generating a JSF Data Table:
    http://www.oracle.com/technology/oramag/oracle/06-jan/o16jsf.html After tweaking the code I was able to get the example working in Part 2 of this article...I was able to run a query and the results were brought back to my table...my question is, after you perform the query once, the results of the new query are appended to each column...and if you submit another query the new results are appended to the results from the previous 2 queries...what call do I need to make in order to "refresh" the table or reset the column values. I am new to the JSF table data component. Here is the code being used...the commandButton1_action() method is called each time a new query is submitted:
    ppublic String commandButton1_action()
    // Add event code here...
    ResultSet rs;
    try{
    Class.forName("oracle.jdbc.driver.OracleDriver");
    String url="jdbc:oracle:thin:@localhost:1521:OracleDB";
    Connection connection = DriverManager.getConnection(url, "OE", "password");
    Statement stmt=connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
    ResultSet.CONCUR_READ_ONLY);
    rs=stmt.executeQuery((String)inputText1.getValue());
    dataTable1.setBorder(5);
    dataTable1.setCellpadding("1");
    dataTable1.setVar("catalog");
    HtmlOutputText headerComponent = new HtmlOutputText();
    headerComponent.setValue("CatalogId");
    column1.setHeader(headerComponent);
    headerComponent = new HtmlOutputText();
    headerComponent.setValue("Journal");
    column2.setHeader(headerComponent);
    headerComponent = new HtmlOutputText();
    headerComponent.setValue("Publisher");
    column3.setHeader(headerComponent);
    headerComponent = new HtmlOutputText();
    headerComponent.setValue("Edition");
    column4.setHeader(headerComponent);
    headerComponent = new HtmlOutputText();
    headerComponent.setValue("Title");
    column5.setHeader(headerComponent);
    headerComponent = new HtmlOutputText();
    headerComponent.setValue("Author");
    column6.setHeader(headerComponent);
    HtmlOutputText column1Text=new HtmlOutputText();
    ValueBinding vb =
    FacesContext.getCurrentInstance().getApplication().createValueBinding("#{catalog.catalogid}");
    column1Text.setValueBinding("value", vb);
    column1.getChildren().add(column1Text);
    HtmlOutputText column2Text=new HtmlOutputText();
    vb =
    FacesContext.getCurrentInstance().getApplication().createValueBinding("#{catalog.journal}");
    column2Text.setValueBinding("value", vb);
    column2.getChildren().add(column2Text);
    HtmlOutputText column3Text=new HtmlOutputText();
    vb =
    FacesContext.getCurrentInstance().getApplication().createValueBinding("#{catalog.publisher}");
    column3Text.setValueBinding("value", vb);
    column3.getChildren().add(column3Text);
    HtmlOutputText column4Text=new HtmlOutputText();
    vb =
    FacesContext.getCurrentInstance().getApplication().createValueBinding("#{catalog.edition}");
    column4Text.setValueBinding("value", vb);
    column4.getChildren().add(column4Text);
    HtmlOutputText column5Text=new HtmlOutputText();
    vb =
    FacesContext.getCurrentInstance().getApplication().createValueBinding("#{catalog.title}");
    column5Text.setValueBinding("value", vb);
    column5.getChildren().add(column5Text);
    HtmlOutputText column6Text=new HtmlOutputText();
    vb =
    FacesContext.getCurrentInstance().getApplication().createValueBinding("#{catalog.author}");
    column6Text.setValueBinding("value", vb);
    column6.getChildren().add(column6Text);
    ResultSetDataModel dataModel=new ResultSetDataModel();
    dataModel.setWrappedData(rs);
    dataTable1.setValue(dataModel);
    catch(SQLException e){}
    catch(ClassNotFoundException e){}
    return null;
    Thanks for any help!

    anyone using the JSF HTML Data Table Component?

  • Spry select list code to wire it to html data table SET column?

    I am making a page based on Figure 15-14, Pg 878, in David Power's book, "Dw CS4 with CSS, Ajax and PHP. I have two separate html data tables hidden in the page, one for the specialties drop down select list and the other for the teachers master/detail regions. These are populated with php and working well. The spry select list and master/detail regions are working great except for one issue. The column in my html data table that is being filtered ("Specialty" in my code = 'Category' in the book's example code) is a SET column (with possible value of 1, 2, 3, 4, and/or 5). Clicking on the drop down menu brings up the records with a single value beautifully. The result for records with multiple values is a spry error "Invalid row number: 0". After four different versionings and methods of messing with this, I still haven't a clue. Please help me with how to rewire the Spry select list code so that it will read the records that have multiple items in that column. I have included the code below.
    var data_set_teachers = new Spry.Data.HTMLDataSet(null, "teacher_data");
    data_set_teachers.gallery = '1';
    function chooseSet(dataSet, row, rowNumber)
    if (row["Specialty"] == data_set_teachers.gallery) {
       return row;
    return null;
    data_set_teachers.filter(chooseSet);
    function changeSet(set)
    data_set_teachers.gallery = set;
    data_set_teachers.filter(chooseSet);
    data_set_teachers.setCurrentRowNumber(0);
    var rows = data_set_teachers.getData();
    for (var i = 0; i < rows.length; i++) {
       if (rows[i]["Specialty"] == set) {
         data_set_teachers.setCurrentRowNumber(i);
         break;
    var data_set_specialties = new Spry.Data.HTMLDataSet(null, "specialty_data");

    Well I'll be damned!
    What's done in the sample app is, of course, the intuitively obvious choice and is exactly what I started out trying to do the first time round.
    But as I mentioned before, when I first tried it (yes: I'm pretty sure I set the "for" attribute on the inlineMessage components), I got the non-unique component id exception for the inlineMessage component(s) after adding the second (but not the first) row to the page.
    Anyway, after dragging my inlineMessages to the exact same position as those in the AppModel example, now things work fine (except I think I'd like a line break before the message and to change the row/column styles so the values and messages line up properly...the look is rather ugly in the AppModel example when there are validation messages displayed).
    Not sure, but I'm thinking maybe there was an issue with where the inline message markup was placed, my first time through, relative to the data table value bound component and the column header facet?
    I was using the application view drag 'n drop feature the first time round and dragged the inlineMessage component to the spot just below the data table value bound component and hence just above the column header facet. In the AppModel example, OTOH, the inline messages are placed just after the column header facet.
    Of course, I will now try to duplicate the original exception.
    If I can (and it is an issue with placement), I will post back some sort of bug report or RFE. Otherwise, I'll post back declaring what a bone head I've been...;-)
    Anyway, thanks for the quick response, v.
    Campbell

  • No organizational data exists on item level (error message)

    Hello everybody,
    I still have this error message when try to create a shopping cart : 'No organizational data exists on item level'
    Following a lengthy discussion with SAP Support, SAP recommended that I remove the reference of the Purchasing Organization and Purchasing Group to the backend system (R/3).
    After removing the reference I was able to complete the SC creation process, but I got an error at the PO creation process, where I am unable to release the PO since it is not linked to a backend (R/3) Purchasing Organization/Group.
    I am currently using SRM 4.0 with EBP 5.0 in Extended Classic Scenario.
    I need an Urgent help on this issue !!
    Thanks,
    Lina

    Hi,
    If You have own PO document type (ZCS) then don't hange it.
    in SYS attrib add a local EBP system
    If you don't use local categories, You don't need to add product cat. * for local system.
    in my ppoma_bbp company have two purch orgs.
    -for local (fields with purch org and system id is empty)
    -for backend (fields with purch org is filled from backend system.)
    Example:
    Company (function with company code PW01\R3100)
    - Purch org local (function purch. org. checked but not filled)
    - Purch group local (function purch. group checked bud not filled)
    - Purch org backend (function purch. org. checked with values PZ1\R3100)
    - Purch group backend (function purch. group checked with values PZZ\R3100)
    Regards,
    Marcin Gajewski

  • How to implement fact tables with finest level of detail (fine-grained)?

    Hi,
    Maybe this is basic knowledge what I'm asking here... I don't know, well, here it goes:
    I need to know the way carry my transactional data to a fact table, but keeping the finest level of detail possible (namely, the transactions). I implemented my cubes with MOLAP option for storage (those were the specs that I had to follow) so I can't add a unique constraint to those structures.
    I only seem to be able to load aggregated, precomputed data. If I wanted to load the transactions (after the data has been transformed and clenased) where should I do it?
    I tried to implement a version of the fact tables as ROLAP but got nowhere (I couldn't add a unique constraint or index on that column either).
    I would really, really appreciate your help.
    Best Regards,
    osvaldo.
    [osantos]

    Hi Veeravalli,
    Thanks for your reply :)
    Let me explain the problem in more detail. I have one Date dimension(Date_Code,Month_Code,Quarter_Code,Half_Year_Code,Year_Code). Here Date_Code is the PK.
    In F1---->Date (Using Month_Code key)
    F2-------->Date (Using Date_Code Key)
    Level based hierarchy is there starting from Year to Date.Each level has PK defined and chronological key selected.
    F1 has level set to Month and F2 has level set to Day.
    Now if i am using ago() function on measure of F2 (having day level data) then it's working fine but if i am using ago() function on measure of F1...I am getting an error at Presentation service: Date_code must be projected for time-series functions.
    So the whole issue is with time-series functions. As per my research...I think for time series the tables in the physical model containing the time dimension cannot join to other data sources, except at the most detailed level but here i am joining with F1(using Month_Code which is not the most detailed level).
    So kindly let me know how to achieve this in rpd?

  • Data table with fixed column with

    I have a data table bound to a row set , and I would like the table to have fixed column widths to avoid unpleasant display shifts when paging through it.
    The column component does not have too many properties I can work with (maybe this can be fixed in a future release??). Therefore I tried setting the style property of the output text object inside the column. The result looks good in the IDE, but reverts to variable column widths in the browser. I even tried setting the style property at runtime, with no luck.
    Unfortunately I can't pad the column header with spaces, because output text has the annoying habit of converting any group of more than one blank space character to one char only (by the way, any remedy to that?). Trying to drop a grid or group panel in place of the column header and pad the column title with invisible (i.e. color: white) output texts did not work either...
    Any ideas??
    Thanks,
    Luca

    I took a look at the html encoder for data table and here's a trick you can use:
    Go to your stylesheet (by default resources/stylesheet.css: open the Resources node in the project navigator and double click on stylesheet.css).
    Let's say you want three columns - so add something like the following to the stylesheet:
    .colwidth1 { width: 200px }
    .colwidth2 { width: 400px }
    .colwidth3 { width: 300px }
    Save the stylesheet (ctrl-S).
    Now, back in the designer, right click and select "Refresh" to ensure that the new stylesheet edits are discovered.
    Then go to the designer surface, and select the data table (make sure it's selected, not one of its children like columns or output texts - if so hit Escape to pop to parent, or just click on it directly in the app outline.)
    Go to the "columnClasses" property in the property sheet - and enter "colwidth1, colwidth2, colwidth3". Note - no dots here. If you have more than 3 columns you would obviously add additional columns here.
    The table should now use the desired column widths - including the browser.

  • Join Master Data table with fact table

    Hello gurus.
    I have a requirement on a characteristic. I have to obtain the description of those values that are not filled with data in the cube, the example looks like this:
    Data in the cube:
    Characteristic 1 |  charactersitic 2 |  value
    AU                           HPDV              200
    TB                           OPPG              500
    TC                           HPDV              900
    TR                           OPMR             400
                                   HPDV              300
                                   OPMR             200
                                   OPPG             100
    Master Data Table:
                                Description
    HPDV    AU       Auditoria  
    OPPG    TB       Servicios Logisticos
    HPDV     TC       Occidente
    OPMR    TR       Oriente
    HPDV     AI        Punta Norte
    OPGS    CV       Escandón
    HPDV    QR       Barquisimeto
    HPDV    MM      Valencia
    HPDV    DT        Barcelona
    I need to display in the query only the description of the characterstic whose data is not in the cube, according to the example the values that are missing in the cube are:
    HPDV     AI        Punta Norte
    OPGS    CV       Escandón
    HPDV    QR       Barquisimeto
    HPDV    MM      Valencia
    HPDV    DT        Barcelona
    How can i achive this ?? 
    Thank you in advance.

    Hi Guillermo,
    I think you are trying to achieve this: To display characteristic values for which no transaction data or only low values exist for the selected period.
    See here for the solution details:
    http://help.sap.com/saphelp_nw04/helpdata/en/3a/d1603d13b5c72ee10000000a114084/content.htm
    Hope this helps...

  • Master data tables with unwanted records from transaction data upload

    Hi Friends,
      I have a master data table for infoobject 'C' with compounding characteristics 'A' & 'B'.  I upload this master data with values given below:
        <i><u> A,              B,              C,           Short text,                        Long text</u></i>
           <b>  <b>P,          10,           BBB,         Apple,                              Big Apples
             Q,             20 ,           XYZ  ,       Tomatoes    ,                    Red Tomatoes</b></b>
      When I load data into ODS from a source system, I may not necessarily have data for all these 3 fields in these transaction record.  Example:
      <i><u>     A,                B,             C,             D,            E</u></i>    
         <b> P                -1            FFF</b>          20           30            
         <b> Q                10           GGG        </b> 10           40
       The problem is when I upload the above transaction data, it populates the <b>master data table</b> too with these two new records <b>1 -1 FFF</b> and  <b>2 10 GGG</b>, which I would like to avoid.
       Is there any way?
       Will assign full points to anyone who helps me here.
       Thanks,
       JB

    Hi JB,
    If you want to load transactional data and still want to prevent the population of the master data table, I don't think it is possible, as it is goes aginst the data consistency in the warehouse.
    However, if you can afford not to load transactional data for such cases, you can activate referential integrity check for the infoobject C. Then neither transactional data nor masterdata enter the datawarehouse until you maintain masterdata yourself for the infoobject C.
    hope this helps.

  • How to create dynamic data tables with ADF 10g

    Hi,
    Can anyone provide sample code for creating dynamic data table in adf where column & row will be added dynamically according to the data coming from the Array List of data.
    I appreciate your help here.

    I think you've posted to the wrong forum. This one is for WebLogic Portal questions.
    Try the ADF/DVT forum:
    http://myforums.oracle.com/jive3/forum.jspa?forumID=1565

  • ADF data table with Add,Edit,Delete functionality

    Hi Experts,
    I have a adf page where I need to implement add,edit,delete button. The table was bind with the Webservice obj call.I need to have one single button as "Add" which should add an inline row at end of the table.When I ll double click on the row I should have the in-line edit of the row.And for delete functionality,there should be delete button on each row which should delete the correspond row.Please help me to solve my problem.Please share the code to meif u ve any.my email: [email protected]
    Thanx
    Aswini

    Can you check the below links
    http://andrejusb.blogspot.com/2010/05/crud-operations-in-oracle-adf-11g-table.html
    http://andrejusb.blogspot.com/2009/11/crud-operations-in-jdeveloperadf-11g-r1.html
    ~Abhijit

  • Can I write to a collection or data table with Sienna?

    Hello all,
    First of all, it will be painfully obvious that I am not a developer. I have some knowledge an can do that I want when it come to tracking information with Excel but I'd like to dabble in Sienna and see if I can make a simple little app.
    With Sienna, can the Text Input boxes be used to write to a table in an excel file, so I can then apply Fx to the data and display it in the app?
    For example, a user enters in a number in the app. It get's written to a table, then an fx is applied ( such as  simply subtracting 10 from the inputted value) and the result is displayed to the user.
    Thanks,
    Ryan

    Hi Ryan,
    That is one of the motivations for building Siena and so we are happy to have you, developer or not!
    Is there a specific reason for wanting to write back to Excel, other than for subtraction? Siena is perfectly capable of pulling Excel data, you won't be able to write back to the Excel file, but you can manipulate the imported data within Siena.
    In any case, consider the following example where we use a slider to perform the subtraction and display the results for each column. I used the following sample data from excel - the table the data is contained in is called 'Table8':
    Column1      Column2
    239029       78989
    23147         2374893
    278432793 37893
    238729       382397
    1) Add a Slider, called Slider1
    Set the Min to the lowest value your user will subtract the excel data by, and
    Max to the highest value your user will subtract the excel data by. I picked 10 for my min and 100 for my max
    2) Import the data
    3) Custom Gallery, called Gallery1 - It's the option at the bottom right of the "Galleries" group
    3) Set the Select Gallery1 as a whole and set the 'Items'
    under the 'Data' group to 'Table8'
    4) Click "Add Visual" on the first item in the Gallery and add a Label, called
    Label1. This label will also have its Text automatically set to
    ThisItem!Column1. Change this to ThisItem!Column1 - Slider1!Value.
    5) Click "Add Visual" on the first item in the Gallery again and add a second Label, called
    Label2. This label will also have its Text automatically set to
    ThisItem!Column2. Change this to ThisItem!Column2 - Slider1!Value
    6) Now drag Slider1, back and forth an notice the values both in
    Label1 and Label2 change as the slider is adjusted.
    If there is a need to store the manipulated data, then 
    LoadData() and
    SaveData() expressions could be leveraged within Siena.
    Hope this helps.

  • Data Table with DBDatasource

    Hi,
    I have a grid with a DT linked to it. I need to add columns to this DT with DBDatasourse is set in each column. So that, using UDO I can save the data to the Line table.
    Please add some sample code for this to be done
    Thank You

    Hi Vibin,
    DataTable and DBDataSource are 2 diffferent datasources.
    You cannot bind one to the other.
    You can, though, bind them to a matrix.
    This is how you bind DBDataSource to matrix :
    oMtx.Columns.Item(1).DataBind.Bind("UDOTableUID","Column Name")
    Or you can bind them directly in screen painter/B1Studio.
    Regards
    Edy

  • JSF Data Table in Sequential Level

    Hi All,
    Assume i have a List and it contains 2 records. I need to display in Sequential Level in Frontend,
    When i use the below code
    <h:dataTable value="#{emp.detailList}" var="empVO" headerClass="tableheader" columnClasses="tablecell">
    <h:column>
              <f:facet name="header">
              <h:outputText value="Emp No" />
              </f:facet>
              <h:outputText value="#{empVO.empNumber}" />
    </h:column>
    <h:column>
              <f:facet name="header">
              <h:outputText value="First Name" />
              </f:facet>
              <h:outputText value="#{empVO.firstName}" />
    </h:column>
    </h:dataTable>
    The above is showing as Tabel Level
    Tabel Level Mean
    Emp No First Name Last Name Age
    10 Rahul Jain 30
    20 Sunil Shetty 32
    In above all column are showing in Table Header and multiple row are displaing in Tabel Level.
    Sequential Level Mean
    Emp No 10 First Name Rahul
    Last Name Jain Age 30
    Emp No 20 First Name Sunil
    Last Name Shetty Age 31
    I want to display the above by using <h:dataTable>
    Anybody can help me in this regards.
    Thanks and Regards
    Srikanth

    Can you tell me sample code how to do that.
    Assume I have 1 arraylist and arraylist contains the 2 Value Object (it mean 2 records)
    1 Value object will have emp no, first name, last name and age
    and 2 value object will also have emp no, first name, last name and age
    both are different data.
    Thanks and Regards
    Srikanth

  • Spry data table with photo thumbs, that open larger images and more thumbs when clicked

    Hi,  I'm trying to make a page that has a spry table that has car listings, make model etc... i want that info in the table area, with a thumbnail. when you click on the line in the table for a particular car, i want a window to open with thumbnails and larger pic. I have not been able to find how to get the window to open from the table info...it needs to be easily changeable, for instance as cars are sold, to remove old ones and add new ones with pics...I cant find any tutorials that deal with something like that...if you could point me in the right direction i'd appreciate it

    hi
    well, first, I can only get the text information to show up in the table, the pics do not. no link, no pic nothing, just blank. I did the add spry data, chose my xml file, with schema in the file. chose the stacked container with spotlight, which is for pics according to adobe, loads ok. my xml file is this
    <?xml version="1.0" encoding="UTF-8"?>
    <root xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:od="urn:schemas-microsoft-com:officedata">
    <xsd:schema>
    <xsd:element name="dataroot">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element ref="Cars" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="generated" type="xsd:dateTime"/>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="Cars">
    <xsd:annotation>
    <xsd:appinfo>
    <od:index index-name="PrimaryKey" index-key="ID " primary="yes" unique="yes" clustered="no" order="asc"/>
    <od:tableProperty name="Orientation" type="2" value="0"/>
    <od:tableProperty name="OrderByOn" type="1" value="0"/>
    <od:tableProperty name="NameMap" type="11" value="CswOVQAAAACc6U1USJAMRI0VA+hJZ3tPAAAAALGkyOr3xONAAwEAACAIRQVDAGEA
    cgBzAAAAAAAAAEj6ypGxIwNDnryyCm/b7+IHAAAAnOlNVEiQDESNFQPoSWd7T0kA
    RAAAAAAAAAASmFZWi+DCS7sJb9DZmGcBBwAAAJzpTVRIkAxEjRUD6Elne09NAGEA
    awBlAAAAAAAAAHusgDcg7zdMsa3wpnM6LF0HAAAAnOlNVEiQDESNFQPoSWd7T00A
    bwBkAGUAbAAAAAAAAACPdks6OQxFSpf/dAbd/xBPBwAAAJzpTVRIkAxEjRUD6Eln
    e09ZAHIAAAAAAAAAj6yQFEDYy0utEnEK2WD6qgcAAACc6U1USJAMRI0VA+hJZ3tP
    QwBvAGwAbwByAAAAAAAAAE4fCFmx/CtHtwkTeMlLCmEHAAAAnOlNVEiQDESNFQPo
    SWd7T1YAaQBuACAATgB1AG0AYgBlAHIAAAAAAAAAeTU5LE4tLE2logmOBFG+mgcA
    AACc6U1USJAMRI0VA+hJZ3tPUAByAGkAYwBlAAAAAAAAAOBprfb8f75FuDPsJjSJ
    4DEHAAAAnOlNVEiQDESNFQPoSWd7T0kAbQBhAGcAZQAAAAAAAADHHMzcxn4sTbPP
    g+piA6klBwAAAJzpTVRIkAxEjRUD6Elne09NAGkAbABlAGEAZwBlAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAA
    "/>
    <od:tableProperty name="DefaultView" type="2" value="2"/>
    <od:tableProperty name="GUID" type="9" value="nOlNVEiQDESNFQPoSWd7Tw==
    "/>
    <od:tableProperty name="DisplayViewsOnSharePointSite" type="2" value="1"/>
    <od:tableProperty name="TotalsRow" type="1" value="0"/>
    <od:tableProperty name="FilterOnLoad" type="1" value="0"/>
    <od:tableProperty name="OrderByOnLoad" type="1" value="1"/>
    <od:tableProperty name="HideNewField" type="1" value="0"/>
    </xsd:appinfo>
    </xsd:annotation>
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="ID" minOccurs="1" od:jetType="autonumber" od:sqlSType="int" od:autoUnique="yes" od:nonNullable="yes" type="xsd:int">
    <xsd:annotation>
    <xsd:appinfo>
    <od:fieldProperty name="ColumnWidth" type="3" value="-1"/>
    <od:fieldProperty name="ColumnOrder" type="3" value="1"/>
    <od:fieldProperty name="ColumnHidden" type="1" value="0"/>
    <od:fieldProperty name="TextAlign" type="2" value="0"/>
    <od:fieldProperty name="AggregateType" type="4" value="-1"/>
    <od:fieldProperty name="GUID" type="9" value="SPrKkbEjA0OevLIKb9vv4g==
    "/>
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
    <xsd:element name="Make" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:annotation>
    <xsd:appinfo>
    <od:fieldProperty name="ColumnWidth" type="3" value="-1"/>
    <od:fieldProperty name="ColumnOrder" type="3" value="2"/>
    <od:fieldProperty name="ColumnHidden" type="1" value="0"/>
    <od:fieldProperty name="Required" type="1" value="0"/>
    <od:fieldProperty name="AllowZeroLength" type="1" value="1"/>
    <od:fieldProperty name="DisplayControl" type="3" value="109"/>
    <od:fieldProperty name="IMEMode" type="2" value="0"/>
    <od:fieldProperty name="IMESentenceMode" type="2" value="3"/>
    <od:fieldProperty name="UnicodeCompression" type="1" value="1"/>
    <od:fieldProperty name="TextAlign" type="2" value="0"/>
    <od:fieldProperty name="AggregateType" type="4" value="-1"/>
    <od:fieldProperty name="GUID" type="9" value="EphWVovgwku7CW/Q2ZhnAQ==
    "/>
    </xsd:appinfo>
    </xsd:annotation>
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="Model" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:annotation>
    <xsd:appinfo>
    <od:fieldProperty name="ColumnWidth" type="3" value="-1"/>
    <od:fieldProperty name="ColumnOrder" type="3" value="3"/>
    <od:fieldProperty name="ColumnHidden" type="1" value="0"/>
    <od:fieldProperty name="Required" type="1" value="0"/>
    <od:fieldProperty name="AllowZeroLength" type="1" value="1"/>
    <od:fieldProperty name="DisplayControl" type="3" value="109"/>
    <od:fieldProperty name="IMEMode" type="2" value="0"/>
    <od:fieldProperty name="IMESentenceMode" type="2" value="3"/>
    <od:fieldProperty name="UnicodeCompression" type="1" value="1"/>
    <od:fieldProperty name="TextAlign" type="2" value="0"/>
    <od:fieldProperty name="AggregateType" type="4" value="-1"/>
    <od:fieldProperty name="GUID" type="9" value="e6yANyDvN0yxrfCmczosXQ==
    "/>
    </xsd:appinfo>
    </xsd:annotation>
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="Yr" minOccurs="0" od:jetType="longinteger" od:sqlSType="int" type="xsd:int">
    <xsd:annotation>
    <xsd:appinfo>
    <od:fieldProperty name="ColumnWidth" type="3" value="-1"/>
    <od:fieldProperty name="ColumnOrder" type="3" value="4"/>
    <od:fieldProperty name="ColumnHidden" type="1" value="0"/>
    <od:fieldProperty name="DecimalPlaces" type="2" value="255"/>
    <od:fieldProperty name="Required" type="1" value="0"/>
    <od:fieldProperty name="DisplayControl" type="3" value="109"/>
    <od:fieldProperty name="TextAlign" type="2" value="0"/>
    <od:fieldProperty name="AggregateType" type="4" value="-1"/>
    <od:fieldProperty name="GUID" type="9" value="j3ZLOjkMRUqX/3QG3f8QTw==
    "/>
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
    <xsd:element name="Color" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:annotation>
    <xsd:appinfo>
    <od:fieldProperty name="ColumnWidth" type="3" value="-1"/>
    <od:fieldProperty name="ColumnOrder" type="3" value="5"/>
    <od:fieldProperty name="ColumnHidden" type="1" value="0"/>
    <od:fieldProperty name="Required" type="1" value="0"/>
    <od:fieldProperty name="AllowZeroLength" type="1" value="1"/>
    <od:fieldProperty name="DisplayControl" type="3" value="109"/>
    <od:fieldProperty name="IMEMode" type="2" value="0"/>
    <od:fieldProperty name="IMESentenceMode" type="2" value="3"/>
    <od:fieldProperty name="UnicodeCompression" type="1" value="1"/>
    <od:fieldProperty name="TextAlign" type="2" value="0"/>
    <od:fieldProperty name="AggregateType" type="4" value="-1"/>
    <od:fieldProperty name="GUID" type="9" value="j6yQFEDYy0utEnEK2WD6qg==
    "/>
    </xsd:appinfo>
    </xsd:annotation>
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="VinNumber" minOccurs="0" od:jetType="text" od:sqlSType="nvarchar">
    <xsd:annotation>
    <xsd:appinfo>
    <od:fieldProperty name="ColumnWidth" type="3" value="-1"/>
    <od:fieldProperty name="ColumnOrder" type="3" value="6"/>
    <od:fieldProperty name="ColumnHidden" type="1" value="0"/>
    <od:fieldProperty name="Required" type="1" value="0"/>
    <od:fieldProperty name="AllowZeroLength" type="1" value="1"/>
    <od:fieldProperty name="DisplayControl" type="3" value="109"/>
    <od:fieldProperty name="IMEMode" type="2" value="0"/>
    <od:fieldProperty name="IMESentenceMode" type="2" value="3"/>
    <od:fieldProperty name="UnicodeCompression" type="1" value="1"/>
    <od:fieldProperty name="TextAlign" type="2" value="0"/>
    <od:fieldProperty name="AggregateType" type="4" value="-1"/>
    <od:fieldProperty name="GUID" type="9" value="Th8IWbH8K0e3CRN4yUsKYQ==
    "/>
    </xsd:appinfo>
    </xsd:annotation>
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="Price" minOccurs="0" od:jetType="currency" od:sqlSType="money" type="xsd:double">
    <xsd:annotation>
    <xsd:appinfo>
    <od:fieldProperty name="ColumnWidth" type="3" value="-1"/>
    <od:fieldProperty name="ColumnOrder" type="3" value="7"/>
    <od:fieldProperty name="ColumnHidden" type="1" value="0"/>
    <od:fieldProperty name="Format" type="10" value="$#,##0.00;($#,##0.00)"/>
    <od:fieldProperty name="DecimalPlaces" type="2" value="255"/>
    <od:fieldProperty name="Required" type="1" value="0"/>
    <od:fieldProperty name="TextAlign" type="2" value="0"/>
    <od:fieldProperty name="AggregateType" type="4" value="-1"/>
    <od:fieldProperty name="GUID" type="9" value="eTU5LE4tLE2logmOBFG+mg==
    "/>
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
    <xsd:element name="Mileage" minOccurs="0" od:jetType="longinteger" od:sqlSType="int" type="xsd:int">
    <xsd:annotation>
    <xsd:appinfo>
    <od:fieldProperty name="ColumnWidth" type="3" value="-1"/>
    <od:fieldProperty name="ColumnOrder" type="3" value="8"/>
    <od:fieldProperty name="ColumnHidden" type="1" value="0"/>
    <od:fieldProperty name="DecimalPlaces" type="2" value="255"/>
    <od:fieldProperty name="Required" type="1" value="0"/>
    <od:fieldProperty name="DisplayControl" type="3" value="109"/>
    <od:fieldProperty name="TextAlign" type="2" value="0"/>
    <od:fieldProperty name="AggregateType" type="4" value="-1"/>
    <od:fieldProperty name="GUID" type="9" value="xxzM3MZ+LE2zz4PqYgOpJQ==
    "/>
    </xsd:appinfo>
    </xsd:annotation>
    </xsd:element>
    <xsd:element name="Pics" minOccurs="0" od:jetType="anyURI" od:sqlSType="nvarchar">
    <xsd:annotation>
    <xsd:appinfo>
    <od:fieldProperty name="ColumnWidth" type="3" value="-1"/>
    <od:fieldProperty name="ColumnOrder" type="3" value="10"/>
    <od:fieldProperty name="ColumnHidden" type="1" value="0"/>
    <od:fieldProperty name="Required" type="1" value="0"/>
    <od:fieldProperty name="AllowZeroLength" type="1" value="1"/>
    <od:fieldProperty name="DisplayControl" type="3" value="109"/>
    <od:fieldProperty name="IMEMode" type="2" value="0"/>
    <od:fieldProperty name="IMESentenceMode" type="2" value="3"/>
    <od:fieldProperty name="UnicodeCompression" type="1" value="1"/>
    <od:fieldProperty name="TextAlign" type="2" value="0"/>
    <od:fieldProperty name="AggregateType" type="4" value="-1"/>
    </xsd:appinfo>
    </xsd:annotation>
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="255"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    <dataroot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated="2010-11-09T16:11:16">
    <Cars>
    <ID>8</ID>
    <Make>Toyota</Make>
    <Model>Corolla</Model>
    <Yr>1992</Yr>
    <Color>Blue</Color>
    <VinNumber>1645kjdjdj</VinNumber>
    <Price>19326.3</Price>
    <Mileage>15362</Mileage>
    <Pics xmlns:xlink="http://www.w3.org/1999/xlink"> <-
        <link xlink:type="simple"                                   <-
          xlink:show="embed"                                        <-
          xlink:actuate="onLoad"                                    <-
          xlink:title="Well! This is an image!"                    <-
          xlink:href="2521299015.jpg">                           <-----this was last attempt also did not work
        </link>
       </Pics>
    </Cars>
    <Cars>
    <ID>9</ID>
    <Make>Toyota</Make>
    <Model>Yaris</Model>
    <Yr>2009</Yr>
    <Color>Blue</Color>
    <VinNumber>lakjladlajkd</VinNumber>
    <Price>12536</Price>
    <Mileage>21365</Mileage>
    <Pics>/images/2521299015.jpg</Pics>               <----this is what I've seen the most as what your supposed to have, also does not work for me
    </Cars>
    <Cars>
    <ID>10</ID>
    <Make>Nissan</Make>
    <Model>Sentra</Model>
    <Yr>1985</Yr>
    <Color>Red</Color>
    <VinNumber>akjlkdjf54454</VinNumber>
    <Price>5326</Price>
    <Mileage>24558</Mileage>
    </Cars>
    </dataroot>
    </root>
    no matter how i have tried formatting the image, adding img src etc...nothing makes the pic show up...i need to get this part to work more than any other. what do i put in the xml file that will make a image show up in the dynamic spry table? I cant add a table outside of the dynamically created one, if i do, how will the pics sort correctly with the spry table?

  • Bug in formatting Tables with cel styles + toolbox

    We continue to have major problems with the cel styles. Lines disappear due to adjacent cells.
    Let me ellaborate:
    I have a cel style that has no background and only a .5 line at the bottom.
    Underneith I have a cel style that has NO lines. What happens is that when I link that style, the line from the cel above disappears. Then I reselect the top cel and link the correct style again, the line appears.
    This is obviously a totally unworkable situation.
    What helps 80% of the time, is to go in the options menu for the style. Then give all lines 1pt, black and a style. And then, in exactly this order, delete the linethickness, set the color to ignore and then set the style to ignore (ignore is a translation from Dutch, I do not know the exact term used in the US version). After this I save the style and usually it works.
    This bug has been a part of InDesign since the introduction of celstyles.
    And while I am ranting, another thing that has been irritating us since the early days. Quite often multiple styles in the panels seem selected. This happens in all panes (paragraph, type, cell and table styles)
    It seems to us that Adobe is only paying attention to adding new features, instead of fixing well known bugs.
    Does anyone have a solution to my issues?
    Any help is well appreciated.

    My original post wasn't too clear (sorry). The bug is with TR.
    The following code should write the numbers 1 to 10 with four spaces separating each value. But no spaces are written.
    program tst2
    integer :: i
    do i=1,10
    write(10,'(I4)',advance='no')i
    write(10,'(TR4)',advance='no')
    end do
    close(10)
    end program tst2
    In fact the file fort.10 which is produced contains
    12345678910
    Whereas, with gfortran, open64, ifort, nag Fortran compilers I get (there are four spaces, this forum just doesn't show them all):
    1 2 3 4 5 6 7 8 9 10
    Edited by: davidb on 16-Oct-2011 15:07

Maybe you are looking for

  • Bridgetalk delays - what am I doing wrong?

    Hi, I'm playing with a bridgetalk script to pass just one argument back and forth between PS and AI all run from Bridge, this in the future will be a key driver to the main script, I have all the components of PS scripts and AI scripts ready, now wor

  • Can't Get Chapters to Show on iPad

    Hey, Well I think I've tried most everything I could find online and here but I still can't get my chapters to show, other than, "Chapter 1 - Chapter 2" etc. They do show in iTunes when playing the video but not when it's transfered to my iPad. I tri

  • Which Approach?---Scan into JPEGs and then save as PDF or scan into PDF?

    I am now learning to use my Canon Pixma MX870. I installed the full suite of Canon printing, scanning, faxing and whatever else software they provide for this all-in-one. There are several different ways you can approach things with this machine whic

  • Matshita CW-8122 Combo Drive

    I was wondering if it might be possible to use a Matshita CW-8122 slot loading Combo Drive in a G3 CRT iMac. I realize that none of the G3 CRT iMacs shipped with slot loading Combo Drives. I want to be able to watch DVDs from any region in the world

  • Connecting ipod to portable sound system...

    Hi everyone! I was told that you can buy a dock that will connect to any portable sound system where you can dock your ipod to play through the sound system and charge at the same time...is this true and if so where can i buy? Thanks in advance... Re