Bug Report T639558
Visible to All Users

TdxDBBreadcrumbEdit does not work?

created 7 years ago

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.

SQL
CREATE 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
Delphi
procedure 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;
Show previous comments (6)
DevExpress Support Team 7 years ago

    Frank,

    Would you please modify my example and clarify what actions we need to perform on our side to see the problem?

    FS FS
    Frank Semmling 7 years ago

      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.

      DevExpress Support Team 7 years ago

        We will examine the project and get back to you once we have any results or need additional information.

        Answers approved by DevExpress Support

        created 7 years ago

        Hello Frank,

        We've examined the project. The issue is caused by the fact that the ParentKey field should have unique values. You can read about this in the "TdxCustomDBBreadcrumbEdit.RootValue" help topic.
        In your case, it contains several NULL values. To resolve this, you need to have unique values in the ParentKey field. For example, set the RootValue property to "-1" and set the same value to the "Parent" column of the top record in the TDBGrid.

          Comments (2)
          FS FS
          Frank Semmling 7 years ago

            Sorry, but that does not work, what you propose.
            OK, we could create a root node, which is the only one in the first level. (that was already done in the demo), but this record can only have NULL as ParentKey, because what is he supposed to do?

            The problem is already identified and it is clearly a mistake in your component.
            RootValue = ID and not RootValue = Parent
            It can not be that we need to misdefine our data for this component to appear to work properly.
            [edit]
            OK, I could now paste RootNode into multiple tables for all our clients and rewrite the data, just so that this component can find the right one to find the wrong ID.
            see test applicaion "root with own id" and Root=NULL
            [/edit]

            Even if I only have a "single" root and define it as RootValue, then nothing works even though it is Unique.

            If your component is looking for the root then you have to look for Node.ID and not for Node.ParentID, where it can happen that there are several nodes under the root.

            But still it would be nice if this component behaved like a TcxDBTreeList because

            SQL
            CREATE TABLE testtable ( id VARCHAR (30) NOT NULL PRIMARY KEY, parent VARCHAR(30) ,--REFERENCES testtable , text VARCHAR(150) NOT NULL );

            Does not allow a record with ID = NULL, so no ROOT node can be inserted into these decades old tables.
            Also, your TcxDBTreeList does not allow you to hide this actually unnecessary RootNode. (without having to install it in every filter)

            And ParentKey can never be unique because a prorent node can have multiple sub-nodes!

            With -1 works absolutely nothing at all.
            I had already tried this, because it was set as RootValue on our TcxDBTreeList -1, although the root is actually zero.
            However, the TreeList shows the same tree with both settings without problems.

            Test Application :
            our data : without root & root=NULL
            your data with invalid reference ParantID>ID : with root and parent & root=-1

            DevExpress Support Team 7 years ago

              I've attached a modified example that demonstrates my suggestion in action.

              Other Answers

              created 7 years ago (modified 7 years ago)

              Sorry, I give it up.
              For a "nice to have" function, which could have been built in 5 minutes, to have to fumble for days.
              And then there was also the problem with the INSERT. https://www.devexpress.com/Support/Center/Question/Details/T641833/insert-not-possible-tdxdbbreadcrumbedit

              We also did not want to install another third-party component from another developer.
              In the end, I'll do everything myself, once I have the data for the display in the Tree and additionally the manually synchronized and specially prepared data for the breadcrumb.

              TreeListQuery: (TreeList.RootValue=NULL)

              SQL
              SELECT * FROM mytable ORDER BY id

              BreadcrumbQuery: (Breadcrumb.RootValue=NULL … müsste aber eigentlich -1 sein)

              SQL
              SELECT id, coalesce(parent, -1) AS parent, caption FROM mytable UNION SELECT -1, NULL, 'ROOT' ORDER BY id
              Delphi
              procedure TFormDBUpdates.TreeListQuery_AfterOpen_AfterRefresh(Sender: TObject); begin BreadcrumbQuery.OpenTable; BreadcrumbQuery.Locate('id', TreeListQuery.AsInteger('id')); end; procedure TFormDBUpdates.TreeListQuery_AfterScroll(Sender: TObject); begin //if not BreadcrumbQuery.IsEmpty // and (BreadcrumbQuery.AsInteger('id') <> TreeListQuery.AsInteger('id')) // and not TreeListQuery.ControlsDisabled then // BreadcrumbQuery.Locate('id', TreeListQuery.AsInteger('id')); BreadcrumbTimer.Enabled := False; BreadcrumbTimer.Enabled := True; end; procedure TFormDBUpdates.BreadcrumbTimer_OnTimer(Sender: TObject); begin BreadcrumbTimer.Enabled := False; if not BreadcrumbQuery.IsEmpty and (BreadcrumbQuery.AsInteger('id') <> TreeListQuery.AsInteger('id')) and not TreeListQuery.ControlsDisabled then BreadcrumbQuery.Locate('id', TreeListQuery.AsInteger('id')); end; procedure TFormDBUpdates.BreadcrumbQuery_AfterScroll(Sender: TObject); begin if (TreeListQuery.AsInteger('id') <> BreadcrumbQuery.AsInteger('id')) and not BreadcrumbQuery.ControlsDisabled then TreeListQuery.Locate('id', BreadcrumbQuery.AsInteger('id')); end;
                Comments (1)
                FS FS
                Frank Semmling 7 years ago

                  Regarding the timer (250ms).
                  With currently only 4000 records, the breadcrumb is somehow noticeably slow when the selection is changed in the TreeList.
                  > Cursor down and navigate through the rows of the tree

                  Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

                  Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.