Page 1 of 1

HOW TO: mark records with images from servoy medialib

PostPosted: Wed Sep 14, 2005 6:27 pm
by maarten
create an unstored calc called "myUnstoredCalc"
with following code(works on crm demo)
Code: Select all
if(companiesid == 3015 || companiesid == 3020)
{
return "media:///myPicture.gif"
}


place a data provider in your listview with following properties
displayType = IMAGE_MEDIA
dataprovider = myUnstoredCalc


This is a more convenient way of marking records.
(instead of returning html code into a textfield)