Servoy 3.0 Release Candidate 3

Johan,

I also see that images returned by calculations are not yet shown in the WebClient. My specific setup:

  • A tableview in a tablesss tabpanel.
  • One of the columns inthe tableview is a label with an onActionMethod atached (so in effect it becomes a button) and as dataprovider the following calculation:
switch(state) 
{ 
case -1: 
   return plugins.http.getMediaData("media:///ledyellow.png"); 
case 0: 
   return plugins.http.getMediaData("media:///ledred.png"); 
case 1: 
   return plugins.http.getMediaData("media:///ledgreen.png"); 
default: 
   return plugins.http.getMediaData("media:///ledorange.png"); 
}

What is shown in the webclient is a button with the text: “[B@xxxxx]”, where xxx differs per instance

Paul