Angular Material: Remove item onDrop outside cdk componentDrag & Drop - Angular Material 2 Experimental CDK - Reordering Horizontally Stacked ItemsUpdating Angular material packages(@angular/cdk and @angular/material) to beta versionCdkDragAndDrop how to prevent draggingcdk-virtual-scroll when parent is outside of the componentHow to disable sort in a CdkDropList using angular cdk v7.0.0+Angular - Angular Material - Drag and drop questionsCancel drag on key press Angular cdk Drag and DropAngular drag drop cdk does not have feature to make one container only draggable while other droppableHow restrict the drag element between one boundary in Angular Material 7 CDK?CDK DropLists in separate components
How do I handle a potential work/personal life conflict as the manager of one of my friends?
Gatling : Performance testing tool
Why doesn't using multiple commands with a || or && conditional work?
Table mislabeled as figure
Unlock My Phone! February 2018
What do you call someone who asks many questions?
How do I gain back my faith in my PhD degree?
What killed these X2 caps?
Why do bosons tend to occupy the same state?
Saudi Arabia Transit Visa
Assassin's bullet with mercury
Am I breaking OOP practice with this architecture?
How much of data wrangling is a data scientist's job?
What is the difference between 仮定 and 想定?
What reasons are there for a Capitalist to oppose a 100% inheritance tax?
Why is this clock signal connected to a capacitor to gnd?
Mathematica command that allows it to read my intentions
Forgetting the musical notes while performing in concert
Why would the Red Woman birth a shadow if she worshipped the Lord of the Light?
How dangerous is XSS?
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
What is a romance in Latin?
Ambiguity in the definition of entropy
What does “the session was packed” mean in this context?
Angular Material: Remove item onDrop outside cdk component
Drag & Drop - Angular Material 2 Experimental CDK - Reordering Horizontally Stacked ItemsUpdating Angular material packages(@angular/cdk and @angular/material) to beta versionCdkDragAndDrop how to prevent draggingcdk-virtual-scroll when parent is outside of the componentHow to disable sort in a CdkDropList using angular cdk v7.0.0+Angular - Angular Material - Drag and drop questionsCancel drag on key press Angular cdk Drag and DropAngular drag drop cdk does not have feature to make one container only draggable while other droppableHow restrict the drag element between one boundary in Angular Material 7 CDK?CDK DropLists in separate components
I am currently using angular material CDK DragAnDrop for some list functionalities.
What I'm trying to accomplish is:
I drag an element from List A and drop it into List B.
If I drag the element from List B and drop it outside List B (outside List A also) I would like to remove the element from List B.Is there some directive or api that I can use to validate that I'm dropping an element outside cdkDropList component?

add a comment |
I am currently using angular material CDK DragAnDrop for some list functionalities.
What I'm trying to accomplish is:
I drag an element from List A and drop it into List B.
If I drag the element from List B and drop it outside List B (outside List A also) I would like to remove the element from List B.Is there some directive or api that I can use to validate that I'm dropping an element outside cdkDropList component?

add a comment |
I am currently using angular material CDK DragAnDrop for some list functionalities.
What I'm trying to accomplish is:
I drag an element from List A and drop it into List B.
If I drag the element from List B and drop it outside List B (outside List A also) I would like to remove the element from List B.Is there some directive or api that I can use to validate that I'm dropping an element outside cdkDropList component?

I am currently using angular material CDK DragAnDrop for some list functionalities.
What I'm trying to accomplish is:
I drag an element from List A and drop it into List B.
If I drag the element from List B and drop it outside List B (outside List A also) I would like to remove the element from List B.Is there some directive or api that I can use to validate that I'm dropping an element outside cdkDropList component?


edited Mar 22 at 4:51


Abhishek Kumar
1,455417
1,455417
asked Mar 21 at 21:36
Oscar_sgcOscar_sgc
7211
7211
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Is there some directive or api that I can use to validate that I'm dropping an element outside cdkDropList component?
You may use the isPointerOverContainer
property of CdkDragDrop event.
If the item is dropped outside a container, it will be set to false, otherwise true.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55289616%2fangular-material-remove-item-ondrop-outside-cdk-component%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is there some directive or api that I can use to validate that I'm dropping an element outside cdkDropList component?
You may use the isPointerOverContainer
property of CdkDragDrop event.
If the item is dropped outside a container, it will be set to false, otherwise true.
add a comment |
Is there some directive or api that I can use to validate that I'm dropping an element outside cdkDropList component?
You may use the isPointerOverContainer
property of CdkDragDrop event.
If the item is dropped outside a container, it will be set to false, otherwise true.
add a comment |
Is there some directive or api that I can use to validate that I'm dropping an element outside cdkDropList component?
You may use the isPointerOverContainer
property of CdkDragDrop event.
If the item is dropped outside a container, it will be set to false, otherwise true.
Is there some directive or api that I can use to validate that I'm dropping an element outside cdkDropList component?
You may use the isPointerOverContainer
property of CdkDragDrop event.
If the item is dropped outside a container, it will be set to false, otherwise true.
answered Mar 21 at 22:05


GCSDCGCSDC
841720
841720
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55289616%2fangular-material-remove-item-ondrop-outside-cdk-component%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown