akveo / ng2-smart-table

Angular Smart Data Table component
https://akveo.github.io/ng2-smart-table/
MIT License
1.63k stars 880 forks source link

upload image and show in cell of editor row ng2-smart-table #542

Open parisamashinchi opened 7 years ago

parisamashinchi commented 7 years ago

Is there any solution to upload image and show it in cell of editor row ?

NouhasH commented 5 years ago

Hi @parisamashinchi , add this lines to your codes

 image: {
          title: 'image_xx',
          type: 'html',
          valuePrepareFunction: (value) => { return '<img src= ' + value + '  />' }
        }

PS :I suppose that you name your column image . if not, just change it

let me know if you have any other questions.