ToolTip
I have a customer who has requested that I add "popup" text (a la ToolTips) to a couple of pulldown lists in a DHTML form we have in our project.He says - Just use the ALT tag. I went and double checked, and the ALT property only shows up for the IMG tag. Can anyone help me with how to implement this? What they want is some amplification to the list selections.
View Replies
I have a dropdown list on my page. It is populated with values from database ;some values are unsually long that the DDL extends to the right of the screen where i need to scroll to find the arrow.
if i dont i wudn be able to read the values fully[i.e only half the length can be read]. Hence i wud like to provide a toottip for each <option> in the DDL whch will help me read the values onmouseover event. Hope I am clear abt it.Thus me scrolling to the right can be avioded.
View Replies
View Related
I have created an asp page which displays data in a tabular format. now i want that when one rolls mouse over any item in table a tooltip should be displayed displaying more info. about that particular data.
suppose if the mouse is over the name of a person, then the tooltip should display his address and other such info.
View Replies
View Related
I use ASP (not .NET) for my web applications. I use IE6 SP1 for all my clients. Since title attribute doesn't work on IE6SP1, I cant get the tool tip running. I use tooltip to lessen the dropdown width.
View Replies
View Related
I'm setting the title attribute of an input box to assign a tooltip. If I assign title the value "Agent does not exist", when hovering over the textbox the tooltip will only display "Agent" it's the same with all my tooltips (only the first word is displayed).
View Replies
View Related
I am creating a dropdown list in ASP. My problem is how to display tooltip for the drop down list in ASP.
I have used title property but it's not working.
<Select id="cboAction" name="cboAction" title="Select Action Type">
<Option value="0" selected></Option>
<Option value="1">One</Option>
<Option value="2">Two</Option>
</Select>
View Replies
View Related