<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jensbits.com &#187; IE</title>
	<atom:link href="http://www.jensbits.com/tag/ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jensbits.com</link>
	<description></description>
	<lastBuildDate>Wed, 21 Jul 2010 03:44:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>ColdFusion cfgrid Selected Row Disappearing / Blank in IE</title>
		<link>http://www.jensbits.com/2009/10/28/coldfusion-cfgrid-selected-row-disappearing-blank-in-ie/</link>
		<comments>http://www.jensbits.com/2009/10/28/coldfusion-cfgrid-selected-row-disappearing-blank-in-ie/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 13:45:06 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/?p=449</guid>
		<description><![CDATA[After selecting a row in cfgrid in Internet Explorer, the selected row goes blank or all white. The data is still there and the row is selected, you just can&#8217;t tell. The problem lies in a css file that ColdFusion uses for the cfgrid. According to some other posts on the web, there is some [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>After selecting a row in cfgrid in Internet Explorer, the selected row goes blank or all white. The data is still there and the row is selected, you just can&#8217;t tell.</p>
<p>The problem lies in a css file that ColdFusion uses for the cfgrid. According to <a href="http://blog.seguetech.com/?p=149">some other posts on the web</a>, there is some incorrectly commented out css rules. They are commented out with &#8216;//&#8217; rather than &#8216;/*&#8230;*/&#8217;. The file is ext-all.css and on my set up with IIS, I found it at C:\Inetpub\wwwroot\CFIDE\scripts\ajax\resources\ext\css\ext-all.css.</p>
<p>When the comments are correctly marked up, it got better (the text showed up) but the background color did not behave even though I specified the select background color in the cfgrid attributes with selectColor=&#8221;#FF3300&#8243;. BTW, the selectColor worked for FireFox, IE didn&#8217;t seem to care.</p>
<p>My solution (although imperfect) was to edit the ext-all.css by properly commenting out the bad comments and adding my own background color for the selected td. It&#8217;s imperfect because it overrides the selectColor in FireFox.</p>
<pre class="brush: css;">
.x-grid-row-selected td, .x-grid-locked .x-grid-row-selected td{
	background-color: #316ac5; /* added */
	/*color: white;*/
}

.x-grid-row-selected span, .x-grid-row-selected b, .x-grid-row-selected div, .x-grid-row-selected strong, .x-grid-row-selected i{
	color:white !important;
}

.x-grid-row-selected .x-grid-cell-text{
	/*color: white;*/
}

.x-grid-cell-selected{
	/*color: white;*/
}

.x-grid-cell-selected span{
	/*color: white !important;*/
}

.x-grid-cell-selected .x-grid-cell-text{
	/*color: white;*/
}
</pre>
<p>Hope this helps someone else and I hope Adobe fixes it.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2009/10/28/coldfusion-cfgrid-selected-row-disappearing-blank-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Override &#8220;Print Background Colors and Images&#8221; Option in Browser</title>
		<link>http://www.jensbits.com/2009/09/18/override-printing-of-background-images-and-colors/</link>
		<comments>http://www.jensbits.com/2009/09/18/override-printing-of-background-images-and-colors/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 17:39:36 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/?p=422</guid>
		<description><![CDATA[Internet Explorer and Firefox, to name a few, have an option that allows for the printing of background colors and images. The user can check this option to override the print style sheet and print the backgrounds that were removed to increase legibility, protect copyright, or whatever other reason was necessary. By default, this option [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer and Firefox, to name a few, have an option that allows for the printing of background colors and images. The user can check this option to override the print style sheet and print the backgrounds that were removed to increase legibility, protect copyright, or whatever other reason was necessary. </p>
<p>By default, this option is off in browsers and the user has to manually check a box. In IE it is under Tools, Internet Options, Advanced, Printing. In Firefox it is in Page Setup of the Print Preview window.</p>
<p>Here is what is looks like in FF:<br />
<img src="/images/ff_printsettings.gif" alt="Firefox print settings" /><br />
To prevent the browser from printing backgrounds when this is checked, add the following to your print style sheet:</p>
<pre class="brush: css;">
* {
  background-color: white !important;
  background-image: none !important;
  }
</pre>
<p>Now, I&#8217;m not one to take all control away from the user, but there are situations when you must.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2009/09/18/override-printing-of-background-images-and-colors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Explorer (IE) Not Submitting Form on Enter</title>
		<link>http://www.jensbits.com/2009/08/03/internet-explorer-ie-not-submitting-form-on-enter/</link>
		<comments>http://www.jensbits.com/2009/08/03/internet-explorer-ie-not-submitting-form-on-enter/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 13:52:31 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/?p=332</guid>
		<description><![CDATA[While working on a ColdFusion application, I noticed that the login form was not submitted when enter was pressed in Internet Explorer. Other browsers, Firefox and Chrome specifically, did not have this issue. There are many methods used to fix this error if you Google it, but I found that the simplest solutions are usually [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>While working on a ColdFusion application, I noticed that the login form was not submitted when enter was pressed in Internet Explorer. Other browsers, Firefox and Chrome specifically, did not have this issue. There are many methods used to fix this error if you Google it, but I found that the simplest solutions are usually the best. No javascript, no funky CSS to hide fields, yada, yada, yada.</p>
<h3>The Situation</h3>
<p>This app had a form with a single text field and a submit button. The form submitted back to its own page were the logic executed if form.submit (the submit button itself) came back with the form variables collection.</p>
<p>When you pressed the enter button, IE did not send the input type=submit field back with the form vars and the form logic did not execute. The page appeared to refresh and you started over again.</p>
<h3>The Solution</h3>
<p>All that was necessary was to add a hidden input field that the form logic used instead.</p>
<pre class="brush: xml;">
&lt;input type=&quot;hidden&quot; name=&quot;login&quot; value=&quot;loginSubmit&quot; /&gt;
</pre>
<p>If form.login and form.login = &#8216;loginSubmit&#8217;, the form logic executes and the user is logged in.</p>
<p>So, from now on, I am not going to rely on the input submit button to check for form submission. Call me crazy, but I think IE has the right idea here; the input submit should not be part of the form variables collection.</p>
<p class="donate">If this post helped you out, please consider donating to help pay the hosting fees. 100% of the donations go to the web host.</p>

<!-- Begin PayPal Donations by http://wpstorm.net/ -->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="jen@jensbits.com" /><input type="hidden" name="return" value="http://www.jensbits.com/thank-you/" /><input type="hidden" name="item_name" value="Help pay hosting. All donations go to hosting fees for this site." /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
<!-- End PayPal Donations -->



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2009/08/03/internet-explorer-ie-not-submitting-form-on-enter/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
