Submitted by reesd on 2011/09/15 12:22
It seems that opml import is not correctly setting the ParentID (¯Items.ParentID) or LinkOrder. So even though items have a parent, they are not shown under the parent in the grid.
 
So for instance, if I import this simple OPML
<opml version="1.0">
    <head>
        <title>Outline1</title>
    </head>
    <body>
        <outline text="a">
            <outline text="aa">
                <outline text="aaa"></outline>
                <outline text="aab"></outline>
            </outline>
            <outline text="ab">
                <outline text="aba"></outline>
                <outline text="abb"></outline>
            </outline>
        </outline>
    </body>
</opml>
 
I get this in the Grid
 
 
And I see this for aaa in the properties:
 
 
If I Alt-Left and Alt-Right on aaa to reparent it under aa I see this and its correctly shown only under aa:
 
 
PS, I am viewing ParentID by using a SQL field IDMainParent with the following source definition:
<Source>SELECT ¯Items.ParentID AS IDMainParent, ¯Items.ID AS ItemID
FROM ¯Items;</Source>

Comments