<?xml version="1.0" encoding="UTF-8"?><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"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Looking for Impromptu Advice</title> <atom:link href="http://trentrichardson.com/2009/03/10/looking-for-impromptu-advice/feed/" rel="self" type="application/rss+xml" /><link>http://trentrichardson.com/2009/03/10/looking-for-impromptu-advice/</link> <description>practical web design &#38; development</description> <lastBuildDate>Fri, 18 May 2012 18:53:09 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: trent</title><link>http://trentrichardson.com/2009/03/10/looking-for-impromptu-advice/comment-page-1/#comment-13358</link> <dc:creator>trent</dc:creator> <pubDate>Sun, 15 Nov 2009 20:06:32 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=284#comment-13358</guid> <description>As of now this problem still existes, although Impromptu does use a percentage to move as close to the top as possible, long prompts will still encounter this.  For large prompts I have have begun organizing the content into columns to keep the height shorter, plus it looks neater.  However to answer your question it hasn&#039;t been fixed.</description> <content:encoded><![CDATA[<p>As of now this problem still existes, although Impromptu does use a percentage to move as close to the top as possible, long prompts will still encounter this.  For large prompts I have have begun organizing the content into columns to keep the height shorter, plus it looks neater.  However to answer your question it hasn&#8217;t been fixed.</p> ]]></content:encoded> </item> <item><title>By: Pierre Olivier Martel</title><link>http://trentrichardson.com/2009/03/10/looking-for-impromptu-advice/comment-page-1/#comment-13336</link> <dc:creator>Pierre Olivier Martel</dc:creator> <pubDate>Sat, 14 Nov 2009 19:33:07 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=284#comment-13336</guid> <description>So did a solution get implemented? I downloaded the latest version and I get the scrolling problem when my prompt is bigger than my window. I tried setting the prompt to absolute instead of fixed and it worked except that the fade does not cover the whole document.</description> <content:encoded><![CDATA[<p>So did a solution get implemented? I downloaded the latest version and I get the scrolling problem when my prompt is bigger than my window. I tried setting the prompt to absolute instead of fixed and it worked except that the fade does not cover the whole document.</p> ]]></content:encoded> </item> <item><title>By: trent</title><link>http://trentrichardson.com/2009/03/10/looking-for-impromptu-advice/comment-page-1/#comment-9950</link> <dc:creator>trent</dc:creator> <pubDate>Thu, 12 Mar 2009 11:50:35 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=284#comment-9950</guid> <description>I think the fade in Impromptu takes the height of &quot;box&quot;.  Box is just a container for the fade and the prompt.  So to make it cover the entire document you will need to change the height of it.  Did you try using jQuery&#039;s method to get the document height?The reason I changed it from this to simply the viewing window&#039;s size is because the document could be smaller than the window, and it left a large unfaded area at the bottom, so I just saw it easier to always make the fade the size of the window.. sorry lol</description> <content:encoded><![CDATA[<p>I think the fade in Impromptu takes the height of &#8220;box&#8221;.  Box is just a container for the fade and the prompt.  So to make it cover the entire document you will need to change the height of it.  Did you try using jQuery&#8217;s method to get the document height?</p><p>The reason I changed it from this to simply the viewing window&#8217;s size is because the document could be smaller than the window, and it left a large unfaded area at the bottom, so I just saw it easier to always make the fade the size of the window.. sorry lol</p> ]]></content:encoded> </item> <item><title>By: Ben K</title><link>http://trentrichardson.com/2009/03/10/looking-for-impromptu-advice/comment-page-1/#comment-9949</link> <dc:creator>Ben K</dc:creator> <pubDate>Thu, 12 Mar 2009 05:31:35 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=284#comment-9949</guid> <description>i had trouble positioning the fade over the entire document instead of window in ie6. i got frustrated with it and gave up.</description> <content:encoded><![CDATA[<p>i had trouble positioning the fade over the entire document instead of window in ie6. i got frustrated with it and gave up.</p> ]]></content:encoded> </item> <item><title>By: trent</title><link>http://trentrichardson.com/2009/03/10/looking-for-impromptu-advice/comment-page-1/#comment-9945</link> <dc:creator>trent</dc:creator> <pubDate>Wed, 11 Mar 2009 12:02:23 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=284#comment-9945</guid> <description>Thanks shad, I just hate to automatically resize the prompt and take the control out the developers hands.  I keep getting the feeling of when people use to resize windows with javascript and that aggravated me.  Perhaps I should just add an option as Ben K suggest.  jQuery now has the dimension functions within it so I can more easily determine the window size, scroll position, etc.. Here&#039;s what I&#039;m thinking:-Make the fade cover the entire document(not window as it currently does)
-if the option is to use position fixed the prompt will function as normal, this will be the default for backwards compatibility
-if the option is to use absolute, the prompt will get the current scroll position, and place the prompt according to thatThis solution might take a little time, I have this and a few more minor changes to make.  Please keep commenting with ideas!</description> <content:encoded><![CDATA[<p>Thanks shad, I just hate to automatically resize the prompt and take the control out the developers hands.  I keep getting the feeling of when people use to resize windows with javascript and that aggravated me.  Perhaps I should just add an option as Ben K suggest.  jQuery now has the dimension functions within it so I can more easily determine the window size, scroll position, etc.. Here&#8217;s what I&#8217;m thinking:</p><p>-Make the fade cover the entire document(not window as it currently does)<br
/> -if the option is to use position fixed the prompt will function as normal, this will be the default for backwards compatibility<br
/> -if the option is to use absolute, the prompt will get the current scroll position, and place the prompt according to that</p><p>This solution might take a little time, I have this and a few more minor changes to make.  Please keep commenting with ideas!</p> ]]></content:encoded> </item> <item><title>By: Ben K</title><link>http://trentrichardson.com/2009/03/10/looking-for-impromptu-advice/comment-page-1/#comment-9941</link> <dc:creator>Ben K</dc:creator> <pubDate>Wed, 11 Mar 2009 03:55:38 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=284#comment-9941</guid> <description>I have a impromptu form where a user can ajax upload an image onto it.
If the image uploaded is large, the impromptu form will grow off the page.
this especially happens if the users are using a smaller desktop size eg 1024x768.My suggestion would be to add an appropriately named parameter e.g. &quot;fixed&quot; that allows you to either have the box scroll or be fixed.i was very close to implementing this but i can&#039;t get the darned fader overlay to be fixed in ie6 ;)</description> <content:encoded><![CDATA[<p>I have a impromptu form where a user can ajax upload an image onto it.<br
/> If the image uploaded is large, the impromptu form will grow off the page.<br
/> this especially happens if the users are using a smaller desktop size eg 1024&#215;768.</p><p>My suggestion would be to add an appropriately named parameter e.g. &#8220;fixed&#8221; that allows you to either have the box scroll or be fixed.</p><p>i was very close to implementing this but i can&#8217;t get the darned fader overlay to be fixed in ie6 ;)</p> ]]></content:encoded> </item> <item><title>By: Shad</title><link>http://trentrichardson.com/2009/03/10/looking-for-impromptu-advice/comment-page-1/#comment-9940</link> <dc:creator>Shad</dc:creator> <pubDate>Wed, 11 Mar 2009 02:48:18 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=284#comment-9940</guid> <description>How about checking the width and height of the browser window and set the width and height of the prompt to be smaller?</description> <content:encoded><![CDATA[<p>How about checking the width and height of the browser window and set the width and height of the prompt to be smaller?</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/13 queries in 0.028 seconds using disk: basic
Object Caching 304/305 objects using disk: basic

Served from: trentrichardson.com @ 2012-05-21 03:52:31 -->
