Ask a Question related to Adobe Indesign Windows, Design and Development.
-
Bartosz_Gorzynski@adobeforums.com #1
How import data into table from XML ?
and ( if possible ) headers. Is possible to have multiple tables in one
XML file (how ?)
I found this ( below) and after import XML in Indesign CS - we get
nothing except root
Here are some that produce a table.
<aid:table xmlns:aid="http://ns.adobe.com/AdobeInDesign/3.0/">
<aid:thead> -- The head of the Table
<aid:tr> -- The opening tag of a row for a Table
<aid:td> -- The opening tag
Test Data -- Data
</aid:td> -- The closing tag
</aid:tr> -- The closing tag for the row
</aid:thead> -- The closing tag for the Table Head
<aid:tbody> -- Opening tag for the body of a Table
<aid:tr>
<aid:td>
Test Data
</aid:td>
</aid:tr>
</aid:tbody> -- The closing tag for the Table Body
</aid:table> -- Closing tag of the Table
Bartosz_Gorzynski@adobeforums.com Guest
-
How to take data out of table, restructure the table and then put the data back in
Hi All Wonder if you could help, I have a bog standard table called STOCKPRICES that has served me well for a while, but now I need to change the... -
import Text file in MySQL table
I've a text file I've downloaded wich contains the datas I must use to fill a table. (postal code and cities). Here is the structure of my text... -
Import text file into database table
I need to build a web page that allows the user to select a text file and click a button to import the file into a database table. Does anyone... -
Import MYSQL table information from .sql file
If I have created a .sql file in my notepad named tables.sql and laved it in my inetpub folder what commands do I have to enter at the mySQL command... -
Changing a html table when new data is entered into SQL table.
Hi all, I was wondering if anyone has any ideas on how I would go about this task. What I have is a html table which is populated from 2 different... -
pjredman@adobeforums.com #2
Re: How import data into table from XML ?
Bartosz,
Try using the XML below.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Story>
<aid:table xmlns:aid="http://ns.adobe.com/AdobeInDesign/3.0/">
<aid:tbody>
<aid:tr>
<aid:td>data</aid:td>
<aid:td>data</aid:td>
<aid:td>data</aid:td>
<aid:td>data</aid:td>
</aid:tr>
</aid:tbody>
</aid:table>
</Story>
Multiple tables in a single XML file is not a problem. Just make sure they are set up as above.
Thanks,
Phil Redman
pjredman@adobeforums.com Guest
-
Unregistered #3
Re: How import data into table from XML ?
I'm trying to do the same thing. Would anyone know how to make those separate tables each appear in their own text frame? As in one table per text frame?
Thanks
MUnregistered Guest



Reply With Quote

