06-27-2012 02:49 AM
I want on listfield, in case user clicks on this to go to new page
graphics.drawBitmap(5, yPos, image.getWidth(), image.getHeight(), image, 0, 0);
{
navigationclick
}
but there is no navigationclick, how can i on click of image go to new page...and send the selected row index.
06-27-2012 03:09 AM
06-27-2012 03:20 AM
06-27-2012 03:23 AM
Hi
Here you need to create your own row.
for example:create a horizontal manager and your images and text on this.And add this manager in a loop on a vertical field manager.it will behave as a list and now you can override click event for each part of the list.
06-27-2012 03:25 AM
06-27-2012 03:29 AM
06-27-2012 04:49 AM
The method suggested by heretocode is a good start. You may have performance issues if you are displaying a large number of rows because this approach is significantly more processor intensive than ListField.
Another approach is display a choice popup screen and let the user choose the image or music function.
06-27-2012 04:56 AM
06-30-2012 03:11 AM