<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>ExtJs  Extender Controls</title><link>http://www.codeplex.com/ExtJsExtenderControl/Project/ProjectRss.aspx</link><description>A collection of Asp.net Extender controls wrapping the ExtJs Framework.   Controls&amp;#58; Grid,TreePanel,ResizableExtender,DatePicker,BorderLayout   and more to come...   see http&amp;#58;&amp;#47;&amp;#47;www.extendersamples.qsh.eu .      </description><item><title>New Post: I don see de grid header with de 2.0 version</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=34021</link><description>&lt;div style="line-height: normal;"&gt;hi&amp;nbsp;&lt;br&gt;
in my test a bind de datagrid with sqldatasource in framework 2.0 the rows appear but the header not
&lt;/div&gt;</description><author>wascar</author><pubDate>Thu, 21 Aug 2008 20:07:54 GMT</pubDate><guid isPermaLink="false">New Post: I don see de grid header with de 2.0 version 20080821080754P</guid></item><item><title>New Post: Cannot load the project</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33998</link><description>&lt;div style="line-height: normal;"&gt;Try loading only the ExtExenders project ..if you are able to do that then your vs installation is missing the web project part.&lt;br&gt;
&lt;/div&gt;</description><author>rodiniz</author><pubDate>Thu, 21 Aug 2008 16:00:12 GMT</pubDate><guid isPermaLink="false">New Post: Cannot load the project 20080821040012P</guid></item><item><title>New Post: Cannot load the project</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33998</link><description>&lt;div style="line-height: normal;"&gt;Hi, when I try to load the project GridControl.sln with VS2008 the return is:&lt;br&gt;
&lt;br&gt;
&amp;quot;The application for the project is not installed&amp;quot; and the project in not loaded.&lt;br&gt;
&lt;br&gt;
What application?&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
&lt;/div&gt;</description><author>poinciana</author><pubDate>Thu, 21 Aug 2008 14:47:47 GMT</pubDate><guid isPermaLink="false">New Post: Cannot load the project 20080821024747P</guid></item><item><title>New Post: Help adding row into Grid with EnableEdit="true"</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33943</link><description>&lt;div style="line-height: normal;"&gt;I think you are wasting time trying to create an empty row to insert data inline in the grid.&lt;br&gt;
I have tried this before and it just feels like a huge workaround because of the cell editing system ( you have a event for a cell edited, but not for a row edited).&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>rodiniz</author><pubDate>Thu, 21 Aug 2008 12:00:35 GMT</pubDate><guid isPermaLink="false">New Post: Help adding row into Grid with EnableEdit="true" 20080821120035P</guid></item><item><title>New Post: YuiGrid (Events) and Masterpages</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33979</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
i tried to use the YuiGrid in my Webpage.&lt;br&gt;
&lt;br&gt;
But i have the problem, that the events not fire (and so i cant retrieve the selected row value).&lt;br&gt;
&lt;br&gt;
This only happens, if the grid is used in a webform which references to a master page.&lt;br&gt;
&lt;br&gt;
Without a MasterPage it works perfect.&lt;br&gt;
&lt;br&gt;
Anyone solved this problem?&lt;br&gt;
&lt;br&gt;
Ben&lt;br&gt;
&lt;/div&gt;</description><author>benfatto</author><pubDate>Thu, 21 Aug 2008 09:49:35 GMT</pubDate><guid isPermaLink="false">New Post: YuiGrid (Events) and Masterpages 20080821094935A</guid></item><item><title>New Post: Help adding row into Grid with EnableEdit="true"</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33943</link><description>&lt;div style="line-height: normal;"&gt;thanks rodiniz, but i have no idea how to use javascript debugger.&lt;br&gt;
everytime i debug it shows minified ext-yui.js that hard to understand..&lt;br&gt;
should i change it to ext-yui-debug.js? anyone have it for extjs 2.0.2?&lt;br&gt;
&lt;br&gt;
i noticed that function store.insert() need second parameter&amp;nbsp;type has to be a record.&lt;br&gt;
i changed codes to below and it works. &lt;br&gt;
actually i try to extend editorgrid with create/remove/update function.&lt;br&gt;
wish get it worked out in these couple days..&lt;br&gt;
&lt;br&gt;
this.insertRow=function(){&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var eventArgs = new ExtExtenders.GridEventArgs();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var arguments= new Object();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var grid=this.get_Grid();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var store=grid.getStore();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var colModel=grid.getColumnModel();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var _p = new Object();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var _rec = [];&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i = 0; i &amp;lt; colModel.getColumnCount(); i++) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _p[colModel.getDataIndex(i)]=null;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _rec.push({name:colModel.getDataIndex(i)});&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var rec = Ext.data.Record.create(_rec);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var p = new rec(_p);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; grid.stopEditing();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; store.insert(0,p);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; grid.startEditing(0,0);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/div&gt;</description><author>elisaczn</author><pubDate>Thu, 21 Aug 2008 03:03:50 GMT</pubDate><guid isPermaLink="false">New Post: Help adding row into Grid with EnableEdit="true" 20080821030350A</guid></item><item><title>New Post: Help adding row into Grid with EnableEdit="true"</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33943</link><description>&lt;div style="line-height: normal;"&gt;Add a debugger to see where this error is coming...there is a chance that  GridControlBehaviour.js is cached, so check this also.&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>rodiniz</author><pubDate>Wed, 20 Aug 2008 20:55:27 GMT</pubDate><guid isPermaLink="false">New Post: Help adding row into Grid with EnableEdit="true" 20080820085527P</guid></item><item><title>New Post: Help adding row into Grid with EnableEdit="true"</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33943</link><description>&lt;div style="line-height: normal;"&gt;Hi, i'm trying to add new row to grid,&lt;br&gt;
returning error: Object doesn't support this property/method.&lt;br&gt;
&lt;br&gt;
My step is added code to GridControlBehaviour.js&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; this.insertRow=function(){&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var grid=this.get_Grid();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var store=grid.getStore();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var p =&amp;nbsp;[];&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; grid.stopEditing();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; store.insert(0,p);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; grid.startEditing( 0, 1 );&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
which is called from&amp;nbsp;modified GridInlineEditing.aspx&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function InsertRow(){&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var extender=$find(&amp;quot;YuiGrid1&amp;quot;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;extender.insertRow();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;br&gt;
&lt;br&gt;
Any enlightment would be highly appreciated. thanks ^^
&lt;/div&gt;</description><author>elisaczn</author><pubDate>Wed, 20 Aug 2008 20:33:21 GMT</pubDate><guid isPermaLink="false">New Post: Help adding row into Grid with EnableEdit="true" 20080820083321P</guid></item><item><title>New Post: Format String</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=30006</link><description>&lt;div style="line-height: normal;"&gt;You can do something similar...you can loop you data source , format it and assign it to another datasource and&lt;br&gt;
use the second datasource to bind the grid.&lt;br&gt;
Or you can use SQL to format your data to aviod the overhead.&lt;br&gt;
&lt;/div&gt;</description><author>rodiniz</author><pubDate>Wed, 20 Aug 2008 14:26:38 GMT</pubDate><guid isPermaLink="false">New Post: Format String 20080820022638P</guid></item><item><title>New Post: Web.config</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33620</link><description>&lt;div style="line-height: normal;"&gt;Soh lembrando que esse erro acontece, nos componentes que trabalhan com data ou referenca de outro objeto...&lt;br&gt;
portanto pode ser erros de programação mesmuu....&lt;br&gt;
&lt;br&gt;
pois alguns componentes funcionam corretamente....&lt;br&gt;
&lt;/div&gt;</description><author>ricajedidia</author><pubDate>Wed, 20 Aug 2008 12:38:59 GMT</pubDate><guid isPermaLink="false">New Post: Web.config 20080820123859P</guid></item><item><title>New Post: Web.config</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33620</link><description>&lt;div style="line-height: normal;"&gt;No web.config ja foi adicionado automaticamente essa tag&lt;br&gt;
&amp;lt;add name=&amp;quot;ScriptModule&amp;quot; type=&amp;quot;System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&amp;quot;/&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
perceba que não tem esse preCondition=&amp;quot;managedHandler&amp;quot; mas tudo bem...&lt;br&gt;
porem o erro perciste....&lt;br&gt;
OBS: tenhuu o Ajax instalado e o Tookit.... precisa de mais algo pra funcionar???&lt;br&gt;
&lt;/div&gt;</description><author>ricajedidia</author><pubDate>Wed, 20 Aug 2008 12:13:01 GMT</pubDate><guid isPermaLink="false">New Post: Web.config 20080820121301P</guid></item><item><title>New Post: Web.config</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33620</link><description>&lt;div style="line-height: normal;"&gt;Adicione a linha abaixo debaixo da tag &amp;lt;httpModules&amp;gt;e da tag &amp;lt;modules&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;lt;add name=&amp;quot;ScriptModule&amp;quot; preCondition=&amp;quot;managedHandler&amp;quot;&lt;br&gt;
&amp;nbsp;type=&amp;quot;System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.0.0, &lt;br&gt;
Culture=neutral, PublicKeyToken=31BF3856AD364E35&amp;quot;/&amp;gt;&lt;br&gt;
&lt;br&gt;
obs : não tenho certeza com relação a versão do System.Web.Extensions, verifique no seu web.config&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>rodiniz</author><pubDate>Tue, 19 Aug 2008 22:26:47 GMT</pubDate><guid isPermaLink="false">New Post: Web.config 20080819102647P</guid></item><item><title>New Post: Web.config</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33620</link><description>&lt;div style="line-height: normal;"&gt;Os exemplos estão usando o frameWork 3.5... e eu o 2.0&lt;br&gt;
não posso copiar o Web.config do exemplo senão da Erro.&lt;br&gt;
&lt;br&gt;
se tiver um exemplo do 2.0.. ow manda o web.config.. fico grato...&lt;br&gt;
&lt;/div&gt;</description><author>ricajedidia</author><pubDate>Tue, 19 Aug 2008 20:14:01 GMT</pubDate><guid isPermaLink="false">New Post: Web.config 20080819081401P</guid></item><item><title>New Post: Format String</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=30006</link><description>&lt;div style="line-height: normal;"&gt;I am trying to format a column as currency and another column with a link. Generally, I can do this on the DataBound or PreRender event by doing a For each row in GridView kind of thing. ... how can I format a column on the server side with the YUI grid?? Please provide an example. Thanks...
&lt;/div&gt;</description><author>briandus</author><pubDate>Tue, 19 Aug 2008 18:13:59 GMT</pubDate><guid isPermaLink="false">New Post: Format String 20080819061359P</guid></item><item><title>New Post: big sized web resources </title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=24359</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi there - I'm having the same problem. The grid control is fantastic, first off...I'm so excited about this. Unfortunately, I'm trying to use it in a project with 25k - 45K rows and it just took 18 minutes for the page to render (appx 90 seconds for the query to return data..the rest is just rendering the grid). Sadly, that's obviously not going to work. Anyone have any ideas on resolving this...I'd really love to be able to use the control...&lt;/p&gt;
&lt;p&gt;Thanks and great work on the asp.net implementation.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>briandus</author><pubDate>Mon, 18 Aug 2008 20:29:50 GMT</pubDate><guid isPermaLink="false">New Post: big sized web resources  20080818082950P</guid></item><item><title>New Post: YuiGrid Paging problem</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33724</link><description>&lt;div style="line-height: normal;"&gt;Manish,&lt;br&gt;
&lt;br&gt;
I have actaully been working on enabling paging (and other options) for the grouped but have not yet posted the patch. I plan to release a patch later this week.&lt;br&gt;
&lt;br&gt;
Don
&lt;/div&gt;</description><author>disbell</author><pubDate>Mon, 18 Aug 2008 19:17:04 GMT</pubDate><guid isPermaLink="false">New Post: YuiGrid Paging problem 20080818071704P</guid></item><item><title>New Post: Web.config</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33620</link><description>&lt;div style="line-height: normal;"&gt;Fala... no último release tem uma versão da dll pro framework 2.0 .&lt;br&gt;
E sim...você tem que mudar seu web.config. Copie o web.config do site de exemplo e mude a conexão com o banco de&lt;br&gt;
dados..&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>rodiniz</author><pubDate>Mon, 18 Aug 2008 19:15:25 GMT</pubDate><guid isPermaLink="false">New Post: Web.config 20080818071525P</guid></item><item><title>New Post: YuiGrid Paging problem</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33724</link><description>&lt;div style="line-height: normal;"&gt;The group grid (until now) does not work with pagination. &lt;br&gt;
&lt;/div&gt;</description><author>rodiniz</author><pubDate>Mon, 18 Aug 2008 18:32:54 GMT</pubDate><guid isPermaLink="false">New Post: YuiGrid Paging problem 20080818063254P</guid></item><item><title>New Post: YuiGrid Paging problem</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33724</link><description>&lt;div style="line-height: normal;"&gt;Whenever I group the grid, paging tool bar disappear. How to enable both functionalities i.e. paging and grouping in the YUIGrid at the same time.&lt;br&gt;
In simple way, I want pagination on the result of grouped grid.&lt;br&gt;
Please help.&lt;br&gt;
&lt;br&gt;
Thanks In Advance.&lt;br&gt;
Manish
&lt;/div&gt;</description><author>manishsahare</author><pubDate>Mon, 18 Aug 2008 12:30:59 GMT</pubDate><guid isPermaLink="false">New Post: YuiGrid Paging problem 20080818123059P</guid></item><item><title>New Post: Web.config</title><link>http://www.codeplex.com/ExtJsExtenderControl/Thread/View.aspx?ThreadId=33620</link><description>&lt;div style="line-height: normal;"&gt;Axo que eu estou usando a dll do Visual Studio 2008...&lt;br&gt;
porem atualmente eu uso o 2005....&lt;br&gt;
&lt;br&gt;
qual o ultimo projeto do visual Studio&amp;nbsp;2005, se alguem puder me falar o numero do&amp;nbsp;&lt;span&gt;Change Set agradeço&lt;br&gt;
&lt;br&gt;
Abraçosss&lt;/span&gt;
&lt;/div&gt;</description><author>ricajedidia</author><pubDate>Sat, 16 Aug 2008 11:41:09 GMT</pubDate><guid isPermaLink="false">New Post: Web.config 20080816114109A</guid></item></channel></rss>