CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Threaded View

  1. #1
    Join Date
    Nov 2016
    Posts
    2

    Question I'm making multicolumn grid with subcolumns (source inside). But something goes wrong

    I have xml:
    Code:
    <source>
    	<row>
    		<family>Expe</family>
    		<name>rium</name>
    		<kat>
    			<id>1</id>
    			<company>Mampf</company>
    			<date>17.1.2010</date>
    		</kat>
    		<kat>...</kat>
    	</row>
    	<row>
    		...
    		<kat>
    			<id>...</id>
    			<company>...</company>
    			<date>...</date>
    		</kat>
    		<kat>...</kat>
    		<kat>...</kat>
    	</row>
    </source>
    So I want to make table with 'family', 'name', and 'kat' colums. Column Kat has 'id', 'company' and 'date' subcolumns.
    Working code is below.
    What's wrong: in the first line I have full table in the third column. In the second line I have the same data in the third column.
    How to address to the concrete <row> when reading <kat>? How to correct my xaml code?

    And formatting, but it is easy quastion. I think I will resolve it myself.
    pic.PNG
    Last edited by weyland; November 14th, 2016 at 07:02 AM. Reason: mistype

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured