Hi,
I am using the ContextChoiceController. I load it dynamically, sometimes I use an image and sometimes I don't. My problem is when I don't use a image, it seems to pick one--the first image (I imagine)--from the image list. Is there a way to disable the image list, or some other way to prevent images displaying?
'add item with image (works fine)
controller.Items.Add(st.tabname,ec.ContextChoiceController.Images(imagename))
'adding item without image (still displays a image)
controller.Items.Add(st.tabname)
'the way I add images to image list.
ec.ContextChoiceController.AddImage(imgName, img)
Thanks in advance.
vb.net please