Hallo,
I'm new here.
I need a grid with a column for images. The images should have the ORIGINAL size. My Problem is, that the images are always rendered with 16x16.
How can I fix this or where can I find it in the API?
Here is my code:
Thanks
I'm new here.
I need a grid with a column for images. The images should have the ORIGINAL size. My Problem is, that the images are always rendered with 16x16.
How can I fix this or where can I find it in the API?
Here is my code:
Code:
isc.TreeGrid.create({
ID: "id",
data, d,
fields: [
{name: 'Name', title: 'Name'},
{name: 'Image', type: 'image', width: 50, title: 'Image', imageURLPrefix: 'icons/', imageURLSuffix: '.jpg'},
{name: 'Desc', title: 'Description'}
],
nodeIcon:"icons/16/person.png",
folderIcon:"icons/16/person.png",
showOpenIcons:false,
showDropIcons:false,
closedIconSuffix:"",
wrapCells: true,
// cellHeight: 56,
fixedRecordHeights : false
});
Comment