View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0005613 | JEDI VCL | 00 JVCL Components | public | 2011-07-04 18:57 | 2011-07-10 14:05 |
Reporter | YEisen | Assigned To | jfudickar | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | |||||
Target Version | Fixed in Version | ||||
Summary | 0005613: TJvCustomAppStorage.WritePersistent does not pass IgnoreProperties to Recursive calls | ||||
Description | When setting IgnoreProperties for nested PropNames they are ignored since TJvCustomAppStorage.WritePersistent does not pass IgnoreProperties to Recursive calls. if (IgnoreProperties = nil) or (IgnoreProperties.IndexOf(PropName) = -1) then WriteProperty(PropPath, PersObj, PropName, Recursive); should be WriteProperty(PropPath, PersObj, PropName, Recursive, IgnoreProperties); and passed back from WriteProperty. | ||||
Tags | No tags attached. | ||||
|
Did you have a sample showing the problem? Regards Jens |
|
TableView1 points to a TcxGridDBTableView (DevExpress QuantumGrid), since DataSource is a Property of TableView1.DataController (class TcxGridDBDataController) all DataSource properties are included in the xml file generated. HTH procedure TForm1.Button1Click(Sender: TObject); var AStringList: TStringList; begin JvAppXMLFileStorage1.Xml.XMLData := ''; AStringList := TStringList.Create; try AStringList.Add('DataSource'); AStringList.Add('OptionsData'); AStringList.Add('LookupItems'); JvAppXMLFileStorage1.WritePersistent('TableView', TableView1, True, AStringList); JvAppXMLFileStorage1.Xml.SaveToFile('MyXmlTest.xml'); finally AStringList.Free; end; end; |
|
Changed in SVN |
Date Modified | Username | Field | Change |
---|---|---|---|
2011-07-04 18:57 | YEisen | New Issue | |
2011-07-04 22:39 | jfudickar | Note Added: 0018811 | |
2011-07-04 23:51 | YEisen | Note Added: 0018812 | |
2011-07-05 00:08 | jfudickar | Assigned To | => jfudickar |
2011-07-10 14:05 | jfudickar | Note Added: 0018818 | |
2011-07-10 14:05 | jfudickar | Status | new => resolved |
2011-07-10 14:05 | jfudickar | Resolution | open => fixed |