View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003083 | JEDI VCL | 00 JVCL Components | public | 2005-07-08 02:56 | 2005-07-24 09:17 |
Reporter | Green | Assigned To | jfudickar | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 3.00 | ||||
Target Version | Fixed in Version | 3.00 | |||
Summary | 0003083: JvAppFileXMLStorage.IsFolderInt disfunctional | ||||
Description | Problem: JvAppFileXMLStorage.GetStoredValues(?,?,[aeoFolders,aeoReportListAsValue]) which uses IsFolder will not return the folder nodes (i.e. nodes containing subnodes) of the XML. Nor will JvAppFileXMLStorage.IsFolder function as expected. Solution: The bug in the code is at line 563 of JvAppXMLStorage.pas: ... Node := GetNodeFromPath(RefPath); Result := False; ... Change this to: ... Node := GetNodeFromPath(RefPath); Result := Assigned(Node) and (Node.Items.Count>0); ... should do the trick | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2005-07-08 02:56 | Green | New Issue | |
2005-07-24 08:32 | jfudickar | Note Added: 0007597 | |
2005-07-24 08:32 | jfudickar | Assigned To | => jfudickar |
2005-07-24 08:32 | jfudickar | Status | new => feedback |
2005-07-24 09:12 | Green | Note Added: 0007599 | |
2005-07-24 09:17 | jfudickar | Status | feedback => resolved |
2005-07-24 09:17 | jfudickar | Fixed in Version | => 3.00 |
2005-07-24 09:17 | jfudickar | Resolution | open => fixed |
2005-07-24 09:17 | jfudickar | Note Added: 0007600 |