<
div
style
=
"width:80%"
>
<
h1
style
=
"color:green"
>GeeksforGeeks</
h1
>
<
h2
>Angular PrimeNG PickList Responsive</
h2
>
<
p-pickList
="sourceProducts"
[target]="targetProducts"
targetHeader
=
"Target List"
[dragdrop]="true"
[responsive]="true"
[sourceStyle]="{'height':'300px'}"
[metaKeySelection]="true"
sourceHeader
=
"Source List"
filterBy
=
"name"
sourceFilterPlaceholder
=
"Search by name"
targetFilterPlaceholder
=
"Search by name"
[targetStyle]="{'height':'300px'}"
style
=
"width:50%"
>
<
ng-template
let-product
pTemplate
=
"item"
>
<
div
class
=
"product-item"
>
<
div
class
=
"product-list-detail"
>
<
h5
class
=
"mb-2"
>{{product.name}}</
h5
>
<
img
[src]="product.image"
style="display:inline-block;
margin:2px 0 2px 2px"
width
=
"48"
>
<
span
class
=
"product-category"
>
{{product.category}}
</
span
>
</
div
>
<
div
class
=
"product-list-action"
>
<
h6
class
=
"mb-2"
>
Rs {{product.price}}
</
h6
>
</
div
>
</
div
>
</
ng-template
>
</
p-pickList
>
</
div
>