Jump to content

Recommended Posts

Posted

Hi,

 

Yes it is possible, but you should think about synchronization with the server

function beforeInit(sender, config) {
    config.viewConfig = {
        plugins: {
            ptype: 'treeviewdragdrop'
        }
    };
}

Best regards,

Posted

Hi,

 

Yes it is possible, but you should think about synchronization with the server

function beforeInit(sender, config) {
    config.viewConfig = {
        plugins: {
            ptype: 'treeviewdragdrop'
        }
    };
}

Best regards,

How could you make it so that in ondrag drop it could be added as no child in another?

Posted

How can I capture the Dragdrop event?

 

function beforeInit(sender, config) {
    config.viewConfig = {
        plugins: {
            ptype: 'treeviewdragdrop'
        }
    };
}

 

 

O código acima apenas permite o drag de uma posição superior/inferior. Necessito mover nós entre níveis. Colocar um nó dentre de outro. 

Como posso capturar o nó que esta sendo movido, e sobre qual nó esta sendo sobreposto.
 
The above code only allows drag from an upper / lower position. I need to move knots between levels. Put one knot from another.
How can I capture the node being moved, and which node is being overlapped.
 
in vlc
 
procedure TfrmGrupo.trvMenuDragDrop(Sender, Source: TObject;
  X, Y: Integer);
var
  AnItem: TTreeNode;
   AttachMode: TNodeAttachMode;
   HT: THitTests;
begin
     if trvMenu.Selected = nil then Exit;
        HT := trvMenu.GetHitTestInfoAt(X, Y) ;
     AnItem := trvMenu.GetNodeAt(X, Y) ;
     if (HT - [htOnItem, htOnIcon, htNowhere, htOnIndent]<> HT) then
     begin
          if (htOnItem in HT) or (htOnIcon in HT) then
             AttachMode := naAddChild
          else
          if htNowhere in HT then
             AttachMode := naAdd
          else
          if htOnIndent in HT then
             AttachMode := naInsert;
 
          trvMenu.Selected.MoveTo(AnItem, AttachMode);
 
   end;
end;
  • 1 month later...
  • 3 months later...
  • 1 month later...
Posted

Hi,

 

Yes it is possible, but you should think about synchronization with the server

function beforeInit(sender, config) {
    config.viewConfig = {
        plugins: {
            ptype: 'treeviewdragdrop'
        }
    };
}

Best regards,

I need to drag dragdrop between us, putting one inside of others, with all his children if they have. How can I do this? I did not find anything in the forum

  • 3 weeks later...
Posted

Hi,

 

I need to drag dragdrop between us, putting one inside of others, with all his children if they have. How can I do this? I did not find anything in the forum

 

Need to analyze

Posted

OK, we have to deal with accounting plans, and it's tricky to deal with it without this option, as there are multiple levels of accounts, which can be changed.

  • 11 months later...
  • 3 years later...
  • 1 month later...
Posted
On 11/26/2022 at 8:26 PM, Tokay said:

Up

 

1 hour ago, VolkovVitalD said:

I also really need such functionality :)

Hello, 

The main logic of these things is done on the server side and stored in the database. Do you have server side logic using DB?

Posted
18 hours ago, Sherzod said:

The main logic of these things is done on the server side and stored in the database. Do you have server side logic using DB?

There is no problem to make the base side: just change one, node root, id. But graphical interface of drag-drop is ugly as in UniDbTreeView as in UniTreeView. And it's important for us.

Posted
On 1/12/2023 at 9:34 PM, Sherzod said:

 

Hello, 

The main logic of these things is done on the server side and stored in the database. Do you have server side logic using DB?

I use UniTreeView, and the tree is stored in the database. I understand that I will need to implement the logic of moving nodes in storage on my own.

  • 2 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...