Subject: Need help combing two elements
From: "Fatbob" <fatbob73@xxxxxxxxxxx>
Date: Thu, 26 Mar 2009 17:44:08 -0400
|
Hi everyone,
Is it possible to combine two elements using XSL so that they display as
one?
Here is a sample of my XML file...
<Row Type="Data">
<Cell longDate="1143122100140" ChangeContext="FID=50020" ShowLink="true"
Status="Normal">Mar 23, 2006</Cell>
<Cell ChangeContext="FID=50020" ShowLink="true"
Status="Normal">08:44</Cell>
</Row>
As you can see the first cell is a date and the second is a time, I need to
combine and also convert that date to yyyy-MM-dd HH:mm format.
So the example above would end up displaying like 2006-05-23 08:44. Well the
time is fine, just the date needs to be converted.
Is this possible to do in XSL?
Thanks!
|