hi,
in my DCT i need to display the images as a tooltip. is it possible then please help me to do this. thanks
I'm not sure what you mean by "displaying the images as a tooltip" - If you mean providing a thumbnail of the selected image inline within the DCT form - there is a FormAPI setting for that, which is documented in the FormAPI manual - IWDatacapture.enableImagePreview() - read the FormAPI manual for more information.
thanks for your replay. my requirement is i have a container when i am click on th add it ask me the option like image & text, Text & table and Text only. when i mouse over the images i need show the thumb image as tooltip as like my sample attached here.
Karthik
Thanks ghoti,
I accept your concept. But in my scenario is bit different. We are going to use 3 different thumb images for the three options. These images are static it never be change. Please advise any option or way.
You can use jQuery to display your images as and when required. I'm giving you a sample here.
<!DOCTYPE html><html><head><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script><script>$(document).ready(function(){$('.techinfo').hide(); $('.main-container').hover(function(){ $('.techinfo').fadeIn(500) })});</script></head><body><div class="main-container"> hover here....</div><div class="techinfo">Here's the image <br/><img class="hover" src="http://www.w3schools.com/images/lamp.jpg" /></div></body></html>
I leave it upto you to customize as per your requirement.
regards,
Praveen