<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: List field tooltips</title>
		<link>https://legacy.forums.gravityhelp.com/topic/list-field-tooltips</link>
		<description>Gravity Support Forums Topic: List field tooltips</description>
		<language>en-US</language>
		<pubDate>Fri, 17 Apr 2026 01:20:28 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/list-field-tooltips" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "List field tooltips"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/list-field-tooltips#post-41059</link>
			<pubDate>Mon, 14 Nov 2011 16:44:48 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">41059@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I was just about to respond to this but as I read down the last it appears you got everything sorted out.  Good to hear.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "List field tooltips"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/list-field-tooltips#post-41037</link>
			<pubDate>Mon, 14 Nov 2011 14:43:57 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">41037@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sorted.&#60;/p&#62;
&#60;p&#62; $('.add_list_item').attr(&#34;title&#34;, &#34;Add another easi-joist&#34;);&#60;br /&#62;
 $('.delete_list_item').attr(&#34;title&#34;, &#34;Delete this easi-joist&#34;);&#60;/p&#62;
&#60;p&#62;Simple as that, don't know why I didn't think of it before, although I had this idea in my mind that it may not be straightforward and that what ever I did would not affect the titles for the buttons on the new rows with them being dynamically added, shows how wrong I was.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "List field tooltips"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/list-field-tooltips#post-41033</link>
			<pubDate>Mon, 14 Nov 2011 14:18:56 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">41033@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;After a bit more experimenting I have got the tooltips working on the new rows as well using this function, not sure if it's the best way of doing it but it seems to work well.&#60;/p&#62;
&#60;p&#62;$('.add_list_item,.delete_list_item').live('hover', function() { $('.add_list_item,.delete_list_item').tipsy({}) });&#60;/p&#62;
&#60;p&#62;Still not figured out which way to go about modifying the title tags for the add and remove row buttons so they say 'Add another easi-joist' and 'Delete this easi-joist'
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "List field tooltips"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/list-field-tooltips#post-40932</link>
			<pubDate>Sun, 13 Nov 2011 04:47:38 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">40932@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Just to update I have included the add row button to the tipsy script but it is only acting on the first row, as other rows are added those new buttons aren't showing the tooltip.  This is the script I have included above the form that is calling tipsy &#60;a href=&#34;http://pastie.org/2855838&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/2855838&#60;/a&#62;&#60;br /&#62;
Tipsy can be found here &#60;a href=&#34;http://onehackoranother.com/projects/jquery/tipsy/&#34; rel=&#34;nofollow&#34;&#62;http://onehackoranother.com/projects/jquery/tipsy/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "List field tooltips"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/list-field-tooltips#post-40917</link>
			<pubDate>Sat, 12 Nov 2011 19:14:46 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">40917@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;With the release of 1.6 I decided to modify this form, &#60;a href=&#34;http://www.eandhbaxendale.com/online-enquiries/easi-joist-enquiry/&#34; rel=&#34;nofollow&#34;&#62;http://www.eandhbaxendale.com/online-enquiries/easi-joist-enquiry/&#60;/a&#62; to take advantage of the new list field by making it easier for customers to enquire about more than one joist size at a time.  I also decided to take the opportunity to add tooltips to some of the fields using the tipsy jquery script, I was originally planning on adding the tooltips directly to the fields so when the user tabs into the field the tooltip automatically appeared but in the end I decided to use the help icon from the admin side (hope that's OK).  I have ended up using a function &#60;a href=&#34;http://pastie.org/2854276&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/2854276&#60;/a&#62; to add the necessary icons and title attributes where I wanted them which seems to be working well.&#60;/p&#62;
&#60;p&#62;Now to the question would it be possible either by extending that function or by adding another or some other script to modify the title tags for the add and remove row img buttons so instead they say 'Add another easi-joist' and 'Delete this easi-joist'
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
