Breadcrumb.Root often is not the right node -> it's often an arbitrary entry in the first level.
It will only display paths, which are located under this false root path and otherwise the breadcrumb is empty.
SQLCREATE TABLE dbupdates (
id VARCHAR(30) NOT NULL DEFAULT current_timestamp::VARCHAR PRIMARY KEY,
parent VARCHAR(30),
text VARCHAR(150) NOT NULL,
...
);
> id NOT NULL … So there exists no root node.
and parent=NULL are in the first level.
It not works with NULL and without RootNode.
SQL-- Breadcrumb.RootValue = NULL
SELECT id, parent, text
FROM table
ORDER BY id
(but everything works in a TcxDBTreeList)
With a dummy it only works sometimes.
But most of the time, Breadcrumb.Root is wrong.
It is very often on one id=something / parent=NULL (Root.ParentKeyValue=NULL) instead of id=NULL (Root.KeyValue=NULL).
SQL-- Breadcrumb.RootValue = NULL
SELECT id, parent, text FROM table
UNION SELECT NULL, NULL, 'ROOT'
ORDER BY id NULLS FIRST
An attempt to replace the NULL did not change anything.
It is also very often on one id=something / parent='*' (Root.ParentKeyValue='*') instead of id='*' (Root.KeyValue='*').
SQL-- Breadcrumb.RootValue = '*'
SELECT id, coalesce(parent, '*') AS parent, text FROM table
UNION SELECT '*', NULL, 'ROOT' -- the dummy
ORDER BY id
Delphiprocedure TForm1.Button1Click(Sender: TObject);
begin
ShowMessage('RootValue=' + VarToStr(Breadcrumb.RootValue) + #10
+ 'SelectedPath=' + Breadcrumb.SelectedPath + #10);
if Assigned(Breadcrumb.Root) then
ShowMessage('Root.KeyValue='+VarToStr(Breadcrumb.Root.KeyValue) + #10
+ 'Root.ParentKeyValue=' + VarToStr(Breadcrumb.Root.ParentKeyValue) + #10
+ 'Root.Path=' + Breadcrumb.Root.Path + #10);
if Assigned(Breadcrumb.Selected) then
ShowMessage('Selected.KeyValue=' + VarToStr(Breadcrumb.Selected.KeyValue) + #10
+ 'Selected.ParentKeyValue=' + VarToStr(Breadcrumb.Selected.ParentKeyValue) + #10
+ 'Selected.Path=' + Breadcrumb.Selected.Path + #10);
end;
As soon as you have asked your question, you already find something strange.
procedure TdxDBBreadcrumbEditDataLoader.BuildStructure(AList: TList); begin ... if FindLoadedNode(AList, Control.GetRootValue, ANode) then begin RootNode.KeyValue := ANode.KeyValue; RootNode.ParentKeyValue := ANode.ParentKeyValue; RootNode.ImageIndex := ANode.ImageIndex; RootNode.Name := ANode.Name; ... end; end; // FindLoadedNode(AList, AParentKeyValue, ANode); -> AParentKeyValue?
That could never have worked that way?
Hello Frank,
Unfortunately, the problem you faced is not quite clear to me. Would you please provide us with a small test project (with minimum of code and test data) and provide us with screenshots that demonstrate the current and expected result?
The component shows either nothing or only the paths below ONE of the paths. (one of the childs under root)
The determination of the root node is wrong.
Search for Node.ParentID instead of Node.ID and that hits one of the nodes in the first level.
SELECT * FROM (VALUES --(NULL, NULL, 'ROOT'), (1, NULL, '1'), (11, 1, '1-1'), (111, 11, '1-1-1'), (12, 1, '1-2'), (2, NULL, '2'), (21, 2, '2-1'), (211, 21, '2-1-1'), (22, 2, '2-2'), (3, NULL, '3'), (31, 3, '3-1'), (311, 31, '3-1-1'), (32, 3, '3-2'), (4, NULL, '4'), (41, 4, '4-1'), (411, 41, '4-1-1'), (42, 4, '4-2') ) AS test (id, parent, caption);
// TdxDBBreadcrumbEdit Breadcrumb.DataBinding.KeyField = 'id' Breadcrumb.DataBinding.NameField = 'caption' Breadcrumb.DataBinding.ParentKeyField = 'parent' Breadcrumb.RootValue = Null // TcxDBTreeList TreeList.DataController.ParentField = 'parent' TreeList.DataController.KeyField = 'id' TreeList.RootValue = Null
Frank,
I've created a small test project based on your description. However, I'm not sure how to replicate the problem with our TdxDBBreadcrumbEdit. Would you please clarify what actions we need to perform on our side to see the issue?
TdxDBBreadcrumbEditDataLoader.BuildStructure uses a wrong function to search the RootNode. It will look for Node.ParentID, but Node.ID should be searched.
See FindLoadedNode in my first comment.
hard-coded absolute C:\Temp\test.mdb
Frank,
Would you please modify my example and clarify what actions we need to perform on our side to see the problem?
Your precompiled example already shows the problem.
Go through all records, in the right grid.
Only below the ID "1", ie with the IDs 1, 11 and 111, a path is displayed in the breadcrumb and otherwise it is empty.
Just for testing, I also had a specially added a RootNode, but our data actually have no root.
However, independent of this, the path is never displayed for all nodes. only in one of the subnodes and its childs, because your component determines a wrong root.
We will examine the project and get back to you once we have any results or need additional information.