<?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>《给我留言》的评论</title>
	<atom:link href="http://www.ineeke.com/guestbook/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ineeke.com</link>
	<description>悄悄记录点点滴滴</description>
	<lastBuildDate>Sat, 04 Feb 2012 03:20:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>作者：solier</title>
		<link>http://www.ineeke.com/guestbook/comment-page-3/#comment-4837</link>
		<dc:creator>solier</dc:creator>
		<pubDate>Sat, 04 Feb 2012 03:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://ineeke.com/?page_id=2#comment-4837</guid>
		<description>博主元宵节快乐！ :grin:</description>
		<content:encoded><![CDATA[<p>博主元宵节快乐！ <img src='http://www.ineeke.com/wp-content/themes/Micro-M/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Neeke</title>
		<link>http://www.ineeke.com/guestbook/comment-page-3/#comment-4836</link>
		<dc:creator>Neeke</dc:creator>
		<pubDate>Thu, 02 Feb 2012 02:55:07 +0000</pubDate>
		<guid isPermaLink="false">http://ineeke.com/?page_id=2#comment-4836</guid>
		<description>你贴的代码，我也看不出来问题，试试在那个extWindow里面放一个panel，然后用这个panel去load你要现实的页面。</description>
		<content:encoded><![CDATA[<p>你贴的代码，我也看不出来问题，试试在那个extWindow里面放一个panel，然后用这个panel去load你要现实的页面。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：梁健</title>
		<link>http://www.ineeke.com/guestbook/comment-page-3/#comment-4834</link>
		<dc:creator>梁健</dc:creator>
		<pubDate>Mon, 30 Jan 2012 08:16:14 +0000</pubDate>
		<guid isPermaLink="false">http://ineeke.com/?page_id=2#comment-4834</guid>
		<description>嗯，是的，可是其他input都能正常显示，就是select下拉列表不显示，我尝试把modal:true改成modal:false就能显示出来了，但是弹出框后面的东西就又可以操作了。</description>
		<content:encoded><![CDATA[<p>嗯，是的，可是其他input都能正常显示，就是select下拉列表不显示，我尝试把modal:true改成modal:false就能显示出来了，但是弹出框后面的东西就又可以操作了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Neeke</title>
		<link>http://www.ineeke.com/guestbook/comment-page-3/#comment-4833</link>
		<dc:creator>Neeke</dc:creator>
		<pubDate>Mon, 30 Jan 2012 08:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://ineeke.com/?page_id=2#comment-4833</guid>
		<description>你说的select是extWindow.load()进来的页面中的？</description>
		<content:encoded><![CDATA[<p>你说的select是extWindow.load()进来的页面中的？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：梁健</title>
		<link>http://www.ineeke.com/guestbook/comment-page-3/#comment-4831</link>
		<dc:creator>梁健</dc:creator>
		<pubDate>Sun, 29 Jan 2012 04:53:54 +0000</pubDate>
		<guid isPermaLink="false">http://ineeke.com/?page_id=2#comment-4831</guid>
		<description>var extWindow = null;
function extOpenWindow(url,w,h,title,iconCls,callbackFn){
	var extWindowConf = {
		modal:true, //设置成true时，会导致下拉列表看不到，liangjian update 2011-12-31 16:58:19
		titleCollapse:true,
		layout:&#039;fit&#039;,
		closeAction:&#039;close&#039;,
		resizable:false,
		shadow:true,
		closable:true,
		bodyStyle:&#039;padding:0 0 0 0&#039;,
		animCollapse:true,
		title:title,
		width:w,
		height:h
	};
	extWindowConf.iconCls=iconCls
	extWindow = new Ext.Window(extWindowConf);
	extWindow.show();
	extWindow.load({//加载要显示的页面
		url:url,
		callback:callbackFn
	});
	return extWindow;
}
以上代码中，因为modal:true，导致我页面中的select下拉列表不能显示，但我还要将弹出框后面的遮盖，需要怎么配置才能让modal:true的同时，而select下拉列表也能正常显示呢？</description>
		<content:encoded><![CDATA[<p>var extWindow = null;<br />
function extOpenWindow(url,w,h,title,iconCls,callbackFn){<br />
	var extWindowConf = {<br />
		modal:true, //设置成true时，会导致下拉列表看不到，liangjian update 2011-12-31 16:58:19<br />
		titleCollapse:true,<br />
		layout:&#8217;fit&#8217;,<br />
		closeAction:&#8217;close&#8217;,<br />
		resizable:false,<br />
		shadow:true,<br />
		closable:true,<br />
		bodyStyle:&#8217;padding:0 0 0 0&#8242;,<br />
		animCollapse:true,<br />
		title:title,<br />
		width:w,<br />
		height:h<br />
	};<br />
	extWindowConf.iconCls=iconCls<br />
	extWindow = new Ext.Window(extWindowConf);<br />
	extWindow.show();<br />
	extWindow.load({//加载要显示的页面<br />
		url:url,<br />
		callback:callbackFn<br />
	});<br />
	return extWindow;<br />
}<br />
以上代码中，因为modal:true，导致我页面中的select下拉列表不能显示，但我还要将弹出框后面的遮盖，需要怎么配置才能让modal:true的同时，而select下拉列表也能正常显示呢？</p>
]]></content:encoded>
	</item>
</channel>
</rss>

