Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Can't activate the placeholder and preview programmatically #25405

Unanswered
NathanBraslavski asked this question in Q&A
Discussion options

I am trying to add placeholder and template using

dragRef
 .withPlaceholderTemplate(placeholder)
 .withPreviewTemplate(preivew);

But I had no luck so far.
I was trying to reverse engineer the source code and it looks I am doing the same.

I am defining the placeholder and preview elements before start event

 dragRef.beforeStarted.subscribe(() => {
 const placeholder = {
 template: this.placeholderRef,
 context: undefined,
 viewContainer: this.viewContainerRef,
 };
 const preivew = {
 template: this.previewRef,
 context: undefined,
 viewContainer: this.viewContainerRef,
 };

and getting the template with ViewChild

 @ViewChild('preview', { read: TemplateRef })
 previewRef: TemplateRef<HTMLElement>;
 @ViewChild('placeholder', { read: TemplateRef })
 placeholderRef: TemplateRef<any>;

Here is a link to the stackblitz project
https://stackblitz.com/edit/material-drag-drop-js?file=src%2Fapp%2Fcdk-drag-drop-custom-preview-example.ts

You must be logged in to vote

Replies: 0 comments

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant

AltStyle によって変換されたページ (->オリジナル) /