Hello,
I have an xml document such as this:
Can I display this data in a hierarchical radgridview where child records/tables of "Message" can be both "Comment" tables and "CustomerIdentifyingRecord" tables?
Simply loading the xml as a dataset does not appear to be sufficient.
Is this possible with the radgridview?
Thanks
I have an xml document such as this:
| <Message> |
| <SequenceNumber>1</SequenceNumber> |
| <Comments> |
| <Comment> |
| <SequenceNumber>1</SequenceNumber> |
| <CommentSource>REMOTE_HOST</CommentSource> |
| <CommentText>Free text comment data</CommentText> |
| <CommentType>FT</CommentType> |
| </Comment> |
| <Comment> |
| <SequenceNumber>2</SequenceNumber> |
| <CommentSource>REMOTE_SOURCE</CommentSource> |
| <CommentText>Free text comment data</CommentText> |
| <CommentType>FT</CommentType> |
| </Comment> |
| </Comments> |
| <DelimiterDefinition>|\^~</DelimiterDefinition> |
| <SenderID>REMOTE_HOST</SenderID> |
| <ReceiverID>LOCAL_HOST</ReceiverID> |
| <Comment>EmptyComment</Comment> |
| <ProcessingID>Production</ProcessingID> |
| <Version>1</Version> |
| <DateTime>0001-01-01 00:00:00</DateTime> |
| <CustomerIdentifying> |
| <CustomerIdentifyingRecord> |
| <SequenceNumber>1</SequenceNumber> |
| <Comments> |
| <Comment> |
| <SequenceNumber>1</SequenceNumber> |
| <CommentSource>REMOTE_SOURCE</CommentSource> |
| <CommentText>Free text comment data</CommentText> |
| <CommentType>FT</CommentType> |
| </Comment> |
| </Comments> |
| <Name>Jones^David</Name> |
| <MothersMaidenName /> |
| <BirthDate>1964-03-15</BirthDate> |
| <Sex>M</Sex> |
| <EthnicOrigin>NotSpecified</EthnicOrigin> |
| <Address /> |
| <TelephoneNumber /> |
| <TestOrder> |
| <TestOrderRecord> |
| <SequenceNumber>1</SequenceNumber> |
| <Comments /> |
| <Priority>U</Priority> |
| <UserField1>Order Comments</UserField1> |
| <UserField2 /> |
| </TestOrderRecord> |
| </TestOrder> |
| </CustomerIdentifyingRecord> |
| </CustomerIdentifying> |
| </Message> |
Can I display this data in a hierarchical radgridview where child records/tables of "Message" can be both "Comment" tables and "CustomerIdentifyingRecord" tables?
Simply loading the xml as a dataset does not appear to be sufficient.
Is this possible with the radgridview?
Thanks