I have 5 textboxes in my form. In each of these I have an image like a question mark -('?') for further information about that particular field. When the user clicks on this image, I want to get a small pop up window with more details of that field (HELP). I am thinking of giving the details of ALL THE FIELDS in that form in one pop up window and when the user clicks on each '?', it should go to the respective section in the help file (popup window). Any clue!
Thanks,
Niradhip ChakrabortyPosted Jan 21, 2009, 5:12 PM
For opening pop up windoe,You can use the following code.
strUrl="LayoutPanelIE.aspx";
windowRef = window.open(strUrl, 'popup', 'dependent=YES,dialog=no,resizable=NO,scrollbars=No,location=0,left=0,
top=0,status=0,menubar=0,toolbar=0,width=1050px,height=700px,modal=yes');
You can use the single page to display all the ? mark data onclick.
Create different
Assign some id to each
r pPosted Jan 23, 2009, 5:39 PM
ArshadPosted Jan 23, 2009, 3:09 PM
Regards
Niradhip ChakrabortyPosted Jan 22, 2009, 7:20 AM
Remember MePosted Jan 22, 2009, 1:14 AM