Change src image in Materialbox materialize directive Angular 2, angular2-materialize -


i need change image src, bind original image, not thumb. code, need bind src, original image. like: {{item.original_picture}}

this code:

<div class="col s4 m4" *ngfor="let item of regular_guest.picture; let = index">    <button (click)="deleteimageitem(item)" type="button"><i class="tiny material-icons">cancel</i></button>     <img materialize="materialbox" src="{{item.picture_url}}" class="materialboxed media-object" /> </div> 


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -