Drag&Drop in the Organization Chart - drag-and-drop

Drag and Drop is available for many Highcharts, but not seen it in the organization Chart. First of all is there a possible way to drag and drop the taks to a different Person and make a "new Connection". And second of all is it possible to Drag and Drop so it gets Right in the middle of 2 People and "concets" to both?
Thanks in Advance
Juli.w

Related

Generated a reusable APEX component from a Page

I want to save myself some time (I have two weeks of my internship left) by creating a simple reusable component based on a Region I created for a reporting page.
It consists out of a Static Region with the collapsible Template, containing 3 very similar Diagrams.
There is one Value which is the same for all 3 Diagrams, and 2 Values I need to change for each diagram.
Any tips how to reach that goal? Copying is dreadful, since I need that component 19 times on this page. I have no experience with creating plugins for APEX.
if you have already created the region you can duplicate it as many times as you like on that page by right clicking the region in the Rendering Tab on the left side of Page Designer and clicking the Duplicate option from the menu:
This is a lot faster than recreating the region from scratch each time. You can also do this to duplicate buttons, page items and dynamic actions.

How to add an issue on a github board

There are a lot of menu's and + buttons but I've not been able to find any that can be used to just add a new card to the board. All I've been able to do is add a note.
How do I do this?
The UI is a bit confusing
Do this through the "Issues" tab.
Add the issue
Then move it to the board column

How to get drop downs on top o figure Matlab App Designer

I want a drop down box to be in my figure. The figure will be updated based on drop down selection; thus I want drop down to remain on top. I think I want the drop down to be a child of the figure/axis, but I do not know where to put this in the script. I am using App Designer in MATLAB 2017B. The Mathworks Documentation doesn't provide an example. It states under UI Figure Parent/Chlildren, "empty GraphicsPlaceholder array (default) | 1-D array of component objects"
Can someone provide an example code. I am sure this is simple, but spent hours searching. Thanks in Advance.
Tim
When I made the app, I added the drop downs, then the figure. The only way I could fix this was to delete the drop downs and then add them back. Unfortunately, the part of the script that Matlab creates the components is locked, so there was no way of moving the drop downs to after the figure. It took alot of work since I had a lot of drop downs, but its done.
Tim

Rally: drag drop multi cards in board

I create an rally taskboard app by using the following source code: https://github.com/RallyApps/app-catalog/tree/master/src/apps/taskboard
Anyone know to drag drop multi task cards by one times?
Thanks.
Currently the drag and drop features on rally components (grids, boards) are single item operations. I don't think there is anyway to do multi drag and drop.

Dynamics AX Form Item Ordering

For the most part, AX forms seem to follow the AOT layout and appear in order. However, in some cases, the form items appear in seemingly arbitrary order, and in others, the items in the AOT won't even reorder. No matter how you drag and drop items in the AOT, they are always in the same order. This problem happened on occasion in AX 2009, but seems to be worse in AX 2012. The only way I've found to get around it is to drop the non-reordering items and recreate them.
Has anyone else had similar experiences? Anyone have a fix?
Ok, I've found that dragging and dropping only works part of the time. However, if you use ALT+the arrow keys to move items up and down in the hierarchy, that seems to work just fine.
The way I read your question it seems you are referring to control layout within a form. If your question is about something else please clarify.
To change form control layout you need to use AOT \Forms[FormName]\Designs\Design node. You can drag and drop controls and control groups.
If you drag a control (let's call it "dragControl") and drop it on top of another control (say "dropControl"), then dragControl will be placed after dropControl. This means that if you want to change the first control of a control group, you need to drag the first control, as dropping any control on top of the first one will place them after the first control.
Also make sure your form does not have changes is some higher layer that would override the changes you are making in a lower layer.
Does this answer your question?