<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Sencha Forum</title>
		<link>http://www.sencha.com/forum/</link>
		<description>Sencha Forums</description>
		<language>en</language>
		<lastBuildDate>Thu, 20 Jun 2013 08:47:02 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.sencha.com/forum/images/misc/rss.png</url>
			<title>Sencha Forum</title>
			<link>http://www.sencha.com/forum/</link>
		</image>
		<item>
			<title>2.2.1 Form Fields right corners are not round anymore</title>
			<link>http://www.sencha.com/forum/showthread.php?266291-2.2.1-Form-Fields-right-corners-are-not-round-anymore&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 08:16:14 GMT</pubDate>
			<description>Hi there, 
 
I just discovered that all my textfields and other formfields do not have the rounded corners on the right anymore, that they used to...</description>
			<content:encoded><![CDATA[<div>Hi there,<br />
<br />
I just discovered that all my textfields and other formfields do not have the rounded corners on the right anymore, that they used to have in 2.0...<br />
<br />
Is this a bug ot a feature?<br />
<br />
Thanks for reading.</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?92-Sencha-Touch-2.x-Bugs">Sencha Touch 2.x: Bugs</category>
			<dc:creator>diractor</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266291-2.2.1-Form-Fields-right-corners-are-not-round-anymore</guid>
		</item>
		<item>
			<title>Setting disableCache throws exception in Loader</title>
			<link>http://www.sencha.com/forum/showthread.php?266290-Setting-disableCache-throws-exception-in-Loader&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 07:53:07 GMT</pubDate>
			<description>I want to debug my Sencha touch 2.2.1 project (set up with microloader) in Chrome.  
As I need some custom breakpoints I tried to use url parameter...</description>
			<content:encoded><![CDATA[<div><font size="2"><span style="font-family: arial">I want to debug my Sencha touch 2.2.1 project (set up with microloader) in Chrome. <br />
As I need some custom breakpoints I tried to use url parameter <b>?breakpoint</b> or alternatively set the Ext.Loader configuration to <b>disableCache:false<br />
</b>But when I use one of these options I get an exception that &quot;touch/src/fx/animation/Pop.js&quot; failed to load. However, the file exists and the app is working if caching is set....<br />
<br />
Has anybody experienced similar problems or does anybody know how to fix this? <br />
I know that I could use &quot;debugger;&quot; statements directly in code - but I want to avoid this....<br />
<br />
Thanks for your help!<br />
<br />
Wolfe</span></font></div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?90-Sencha-Touch-2.x-Q-amp-A"><![CDATA[Sencha Touch 2.x: Q&A]]></category>
			<dc:creator>wolfgang18</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266290-Setting-disableCache-throws-exception-in-Loader</guid>
		</item>
		<item>
			<title>window inside window</title>
			<link>http://www.sencha.com/forum/showthread.php?266289-window-inside-window&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 07:52:46 GMT</pubDate>
			<description>hallo, 
 
ich have a problem with mowing window after add them to other window. 
 
window1 is the first window 
window2 is one added to window1...</description>
			<content:encoded><![CDATA[<div>hallo,<br />
<br />
ich have a problem with mowing window after add them to other window.<br />
<br />
window1 is the first window<br />
window2 is one added to window1<br />
window3 is one added to window 2<br />
<br />
on mowing window1, window2 disappear and move (is ok) but window3 dont disappear and dont move.<br />
on mowing window2, window3 disappear and move (is ok)<br />
<br />
is there a bug in Eventmanagement or do i something wrong?<br />
<br />
thanks for help<br />
 <div class="cms_table"><table width="40" class="cms_table"><tr valign="top" class="cms_table_tr"><td class="cms_table_td"></td>
</tr>
</table></div>
</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?81-Ext-Discussion">Ext: Discussion</category>
			<dc:creator>peter seliger</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266289-window-inside-window</guid>
		</item>
		<item>
			<title>Xml errorReader in Form failis</title>
			<link>http://www.sencha.com/forum/showthread.php?266288-Xml-errorReader-in-Form-failis&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 07:34:12 GMT</pubDate>
			<description>I am using ExtJS 4.0.2.  
I have a simple form. On submit it receives xml response back.  
I have added errorReader as per the Submit API docs. 
The...</description>
			<content:encoded><![CDATA[<div>I am using ExtJS 4.0.2. <br />
I have a simple form. On submit it receives xml response back. <br />
I have added errorReader as per the Submit API docs.<br />
The response is sent correctly by server. But ExtJS errorReader apparently fails to parse the xml and throws a message :Uncaught TypeError: Cannot read property 'prototype' of undefined <br />
<br />
<br />
My form is as follows:<br />
<br />
<br />
Code:<br />
var CwWebLoginPanel = Ext.create('Ext.form.Panel', {<br />
  defaultType: 'textfield',<br />
  url: 'loginUser',<br />
  method: 'GET',<br />
  items: <br />
  [<br />
    {<br />
      fieldLabel: 'User ID',<br />
      name: 'userId',<br />
      blankText: 'Please enter the User ID'<br />
    },<br />
    {<br />
      fieldLabel: 'Password*',<br />
      name: 'password',<br />
      inputType: 'password'<br />
    }<br />
  ],<br />
  errorReader: new Ext.data.reader.Xml({  //This xml reader copied from Submit API documentation<br />
      record : 'field',<br />
      success: '@success'<br />
    },<br />
    [ 'id', msg ]<br />
  ),<br />
  buttons: <br />
  [<br />
    {<br />
      text: 'Login',<br />
      formBind: true,<br />
      handler: function(btn, eventObj) {<br />
        var formPanel = btn.findParentByType('form');<br />
        var form = formPanel.getForm();<br />
        if(form.isValid()) {<br />
          form.submit( { <br />
            scope: this,<br />
            clientValidation: true,<br />
            submitEmptyText: false,<br />
            failure: function(form, action) {<br />
              console.log(action);<br />
            },<br />
            success: function(form, action) {<br />
              console.log(action);<br />
            },<br />
            waitMsg: 'Processing Form Submission',<br />
            waitTitle: 'Status'<br />
          });<br />
	}<br />
      } <br />
    }<br />
  ]<br />
});<br />
<br />
<br />
The xml sent from server is same as that in API documentation for Submit action<br />
This xml response used from Submit API documentation<br />
<br />
<br />
Code:<br />
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br />
&lt;message success=&quot;false&quot;&gt;<br />
&lt;errors&gt;<br />
    &lt;field&gt;<br />
        &lt;id&gt;userId&lt;/id&gt;<br />
        &lt;msg&gt;&lt;![CDATA[Code not found. &lt;br /&gt;&lt;i&gt;This is a test validation message from the server &lt;/i&gt;]]&gt;&lt;/msg&gt;<br />
    &lt;/field&gt;<br />
    &lt;field&gt;<br />
        &lt;id&gt;password&lt;/id&gt;<br />
        &lt;msg&gt;&lt;![CDATA[Port not found. &lt;br /&gt;&lt;i&gt;This is a test validation message from the server &lt;/i&gt;]]&gt;&lt;/msg&gt;<br />
    &lt;/field&gt;<br />
&lt;/errors&gt;<br />
&lt;/message&gt;<br />
<br />
<br />
Thanks,<br />
James</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?81-Ext-Discussion">Ext: Discussion</category>
			<dc:creator>javajames</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266288-Xml-errorReader-in-Form-failis</guid>
		</item>
		<item>
			<title>window.location.reload() issue in ST 2.2.1</title>
			<link>http://www.sencha.com/forum/showthread.php?266285-window.location.reload()-issue-in-ST-2.2.1&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 06:53:18 GMT</pubDate>
			<description><![CDATA[Hi , 
I'm using Sencha touch 2.2.1 to develop an app and sencha cmd v3.1.2.342 to  build an iPhone native app . After re-loading a session via my...]]></description>
			<content:encoded><![CDATA[<div>Hi ,<br />
I'm using Sencha touch 2.2.1 to develop an app and sencha cmd v3.1.2.342 to  build an iPhone native app . After re-loading a session via my logout function window.location.reload(); or window.location.href=' ' I loose all access to my native app and it shows splash screen . When I manually reset app then It work fine.Does if you know of a way to reload a native Sencha app without losing access to the device layer?<br />
<br />
<br />
Same method (window.location.reload()) works fine in sencha touch2.0.1.1. Also this app works fine in chrome on desktop/pc.<br />
<br />
<br />
It will be a great favor if you can help me.<br />
<br />
<br />
Thanks,<br />
Vishwas</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?8-Sencha-Cmd">Sencha Cmd</category>
			<dc:creator>Vishwastalule</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266285-window.location.reload()-issue-in-ST-2.2.1</guid>
		</item>
		<item>
			<title><![CDATA[[OPEN] [4.2.1 GA] Column layout can crash if vertical scrolling]]></title>
			<link>http://www.sencha.com/forum/showthread.php?266284-4.2.1-GA-Column-layout-can-crash-if-vertical-scrolling&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 06:17:05 GMT</pubDate>
			<description>_*REQUIRED INFORMATION*_   *_ 
 
Ext version tested:_*  
* Ext 4.2.1 
 
  *_Browser versions tested against:_*  
* Chrome 
* IE9 
 
  *_DOCTYPE...</description>
			<content:encoded><![CDATA[<div><u><b><font color="green">REQUIRED INFORMATION</font></b></u>   <b><u><br />
<br />
Ext version tested:</u></b> <ul><li>Ext 4.2.1</li>
</ul>  <b><u>Browser versions tested against:</u></b> <ul><li>Chrome</li>
<li>IE9</li>
</ul>  <b><u>DOCTYPE tested against:</u></b> <ul><li>&lt;!DOCTYPE html&gt;</li>
</ul>  <b><u>Description:</u></b> <ul><li>A column layout can crash if vertical scrolling. The test case below produces &quot;Layout run failed&quot; caused by a not finished column layout. Well, the test case layout can look fake, it is just a stripped down version of the real page. See the comments in the test case.</li>
<li>The problem is partially discussed here.</li>
</ul><div style="margin-left:40px"><a href="http://www.sencha.com/forum/showthread.php?256500" target="_blank">http://www.sencha.com/forum/showthread.php?256500</a><br />
<br />
</div>  <b><u>Steps to reproduce the problem:</u></b> <ul><li> Just run the test case</li>
</ul>  <b><u>The result that was expected:</u></b> <ul><li> No &quot;Layout run failed&quot;</li>
</ul>  <b><u>The result that occurs instead:</u></b> <ul><li> &quot;Layout run failed&quot; occurs</li>
</ul>  <b><u>Test Case:</u></b>  <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&nbsp; &nbsp; &lt;title&gt;Column layout can crash if vertical scrolling&lt;/title&gt;<br />
<br />
&nbsp; &nbsp; &lt;link rel=&quot;stylesheet&quot; href=&quot;../resources/css/ext-all.css&quot; /&gt;<br />
<br />
&nbsp; &nbsp; &lt;script src=&quot;../ext-all-dev.js&quot;&gt;&lt;/script&gt;<br />
<br />
&nbsp; &nbsp; &lt;script&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; Ext.onReady(function () {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Ext.create(&quot;Ext.Viewport&quot;, {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; renderTo: Ext.getBody(),<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: &quot;fit&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; autoScroll: true, // Remove it and the issue goes.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; type: &quot;vbox&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align: &quot;stretch&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; heigt: 400,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //flex: 1, // Uncomment it and remove &quot;height: 400&quot; and the issue goes.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; type: &quot;hbox&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align: &quot;stretch&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex: 1,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; type: &quot;hbox&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align: &quot;stretch&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex: 1,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; type: &quot;vbox&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align: &quot;stretch&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex: 1,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{ // Remove it and the issue goes.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; title: &quot;Title&quot; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex: 1,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; type: &quot;vbox&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align: &quot;stretch&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: 3000,&nbsp; // Made it big to ensure you get vertical scrolling. Make it smaller to avoid vertical scrolling and the issue goes.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; type: &quot;vbox&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align: &quot;stretch&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xtype: &quot;tabpanel&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; flex: 1,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xtype: &quot;panel&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; title: &quot;Music Oriented&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: &quot;column&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; autoScroll: true, // Remove it and the issue goes.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; columnWidth: 1,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xtype: &quot;panel&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layout: &quot;fit&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items: [{&nbsp; // Remove it and the issue goes.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; title: &quot;Title&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }]<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code><hr />
</div>     <u><b><font color="green"><br />
<br />
<br />
HELPFUL INFORMATION</font></b></u>   <br />
<br />
<b><u>Debugging already done:</u></b> <ul><li>Debugging the Auto layout's calculate and calculateOverflow methods sheds some light on the problem.</li>
</ul><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Ext.layout.container.Column.override({<br />
&nbsp; &nbsp; calculate: function(ownerContext) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; var me = this,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; state = ownerContext.state,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; containerSize = me.getContainerSize(ownerContext, true),<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // If subclass has a calculateItems method, call it and cache the result<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; calculatedItems = state.calculatedItems ||<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (state.calculatedItems = me.calculateItems ?<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; me.calculateItems(ownerContext, containerSize) : true);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; me.setCtSizeIfNeeded(ownerContext, containerSize);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (calculatedItems &amp;&amp; ownerContext.hasDomProp('containerChildrenSizeDone')) {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; me.calculateContentSize(ownerContext);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (containerSize.gotAll) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (me.manageOverflow &amp;&amp; !ownerContext.state.secondPass &amp;&amp; !me.reserveScrollbar) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font color="#ff0000">me.calculateOverflow(ownerContext, containerSize);</font> <font color="#ff0000">// (1) It is executed on one of &quot;calculate&quot; calls</font><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; me.done = false;<br />
&nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; calculateOverflow: function (ownerContext) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; var me = this,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width, height, scrollbarSize, scrollbars, xauto, yauto, targetEl;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // Determine the dimensions that have overflow:auto applied. If these come by<br />
&nbsp; &nbsp; &nbsp; &nbsp; // way of component config, this does not require a DOM read:<br />
&nbsp; &nbsp; &nbsp; &nbsp; xauto = (me.getOverflowXStyle(ownerContext) === 'auto');<br />
&nbsp; &nbsp; &nbsp; &nbsp; yauto = (me.getOverflowYStyle(ownerContext) === 'auto');<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (xauto || yauto) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; scrollbarSize = Ext.getScrollbarSize();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; targetEl = ownerContext.overflowContext.el.dom;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; scrollbars = 0;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (targetEl.scrollWidth &gt; targetEl.clientWidth) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // has horizontal scrollbar<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; scrollbars |= 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (targetEl.scrollHeight &gt; targetEl.clientHeight) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // has vertical scrollbar<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; scrollbars |= 2;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width = (yauto &amp;&amp; (scrollbars &amp; 2)) ? scrollbarSize.width : 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height = (xauto &amp;&amp; (scrollbars &amp; 1)) ? scrollbarSize.height : 0;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (<font color="#ff0000">width !== me.lastOverflowAdjust.width</font> || height !== me.lastOverflowAdjust.height) { <font color="#ff0000">// (2)</font> <font color="#ff0000">The red condition meets (there 0 !== 17) if vertical scrolling</font><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font color="#ff0000">me.done = false; // (3) It marks a layout that it is not finished. <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  // Then the calculate method is called again twice, but the layout is not marked as done again.<br />
</font><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // we pass overflowAdjust and overflowState in as state for the next<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // cycle (these are discarded if one of our ownerCt's invalidates):<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ownerContext.invalidate({<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; state: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; overflowAdjust: {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: width,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: height<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; overflowState: scrollbars,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; secondPass: true<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
});</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?80-Ext-Bugs">Ext:Bugs</category>
			<dc:creator>Daniil</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266284-4.2.1-GA-Column-layout-can-crash-if-vertical-scrolling</guid>
		</item>
		<item>
			<title>window.location.reload() issue in ST 2.2.1</title>
			<link>http://www.sencha.com/forum/showthread.php?266283-window.location.reload()-issue-in-ST-2.2.1&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 06:16:56 GMT</pubDate>
			<description><![CDATA[Hi , 
I'm using Sencha touch 2.2.1 to build an iPhone native app. After re-loading a session via my logout function window.location.reload(); or...]]></description>
			<content:encoded><![CDATA[<div>Hi ,<br />
I'm using Sencha touch 2.2.1 to build an iPhone native app. After re-loading a session via my logout function window.location.reload(); or window.location.href=' ' I loose all access to my native app and it shows splash screen . When I manually reset app then It work fine.Does if you know of a way to reload a native Sencha app without losing access to the device layer?<br />
<br />
Same app works fine in sencha touch2.0.1.1. Also this app works fine in chrome on desktop/pc.<br />
<br />
It will be a great favor if you can help me.<br />
<br />
Thanks,<br />
Vishwas</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?90-Sencha-Touch-2.x-Q-amp-A"><![CDATA[Sencha Touch 2.x: Q&A]]></category>
			<dc:creator>Vishwastalule</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266283-window.location.reload()-issue-in-ST-2.2.1</guid>
		</item>
		<item>
			<title>How to handle the CheckBox state changing</title>
			<link>http://www.sencha.com/forum/showthread.php?266282-How-to-handle-the-CheckBox-state-changing&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 06:10:13 GMT</pubDate>
			<description>In my Grid I need to handle the changing of the state of the CheckBox to save changes right after it was changed</description>
			<content:encoded><![CDATA[<div>In my Grid I need to handle the changing of the state of the CheckBox to save changes right after it was changed</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?88-Ext-GWT-Q-amp-A"><![CDATA[Ext GWT: Q&A]]></category>
			<dc:creator>Mike_javaJunior</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266282-How-to-handle-the-CheckBox-state-changing</guid>
		</item>
		<item>
			<title>How to make store.removeAt() wait for server response?</title>
			<link>http://www.sencha.com/forum/showthread.php?266281-How-to-make-store.removeAt()-wait-for-server-response&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 05:32:33 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm using the removeAt() method on my store to delete records from the database. It works, but I don't like how the removal is instantly...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm using the removeAt() method on my store to delete records from the database. It works, but I don't like how the removal is instantly reflected in the interface, as if there's an error, it provides false assurance that the record has actually been deleted. I'd prefer for it to wait for a server response (showing some kind of loading indicator in the meantime), and only actually remove the record from the interface/store if the server returns a successful status.<br />
<br />
Can anyone tell me how to achieve this?<br />
<br />
Thanks</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?87-Ext-Q-amp-A"><![CDATA[Ext: Q&A]]></category>
			<dc:creator>wardrop</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266281-How-to-make-store.removeAt()-wait-for-server-response</guid>
		</item>
		<item>
			<title><![CDATA[extjs cmd  to build project get [ERROR] NULL]]></title>
			<link>http://www.sencha.com/forum/showthread.php?266280-extjs-cmd-to-build-project-get-ERROR-NULL&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 05:15:08 GMT</pubDate>
			<description>HI EVERY ONE, 
 
i am using sencha  command . i  am generating project with sencha command and try to build project i am getting following error 
 
...</description>
			<content:encoded><![CDATA[<div>HI EVERY ONE,<br />
<br />
i am using sencha  command . i  am generating project with sencha command and try to build project i am getting following error<br />
<br />
<br />
    <br />
E:\workspace\.sencha\workspace\TEST&gt;sencha app build<br />
[ERR] null<br />
     at com.sencha.tools.pkg.HttpRepository.fixUrl(HttpRepository.java:136)<br />
     at com.sencha.tools.pkg.HttpRepository.&lt;init&gt;(HttpRepository.java:31)<br />
     at com.sencha.tools.pkg.RemoteRepository$Type$1.create(RemoteRepository.java:33)<br />
     at com.sencha.tools.pkg.RemoteRepository.&lt;init&gt;(RemoteRepository.java:74)<br />
     at com.sencha.tools.pkg.RemoteRepository.&lt;init&gt;(RemoteRepository.java:102)<br />
     at com.sencha.tools.pkg.RemoteRepository.&lt;init&gt;(RemoteRepository.java:106)<br />
     at com.sencha.tools.pkg.RepositoryRemoteManagerImpl$1.accept(RepositoryRemoteManagerImpl.java:8 at java.io.File.listFiles(Unknown Source)<br />
at com.sencha.tools.pkg.RepositoryRemoteManagerImpl.&lt;init&gt;(RepositoryRemoteManagerImpl.java:26)<br />
     at com.sencha.tools.pkg.LocalRepository.loadConfig(LocalRepository.java:876<br />
)<br />
     at com.sencha.tools.pkg.LocalRepository.&lt;init&gt;(LocalRepository.java:82)<br />
     at com.sencha.command.environment.WorkspaceRepository.getLocalRepository(Wo<br />
rkspaceRepository.java:113)<br />
     at com.sencha.command.environment.WorkspaceRepository.getCatalog(WorkspaceR<br />
epository.java:92)<br />
     at com.sencha.command.environment.WorkspaceEnvironment.resolvePackageModels<br />
(WorkspaceEnvironment.java:103)<br />
     at com.sencha.command.environment.WorkspaceEnvironment.resolvePackageEnviro<br />
nments(WorkspaceEnvironment.java:90)<br />
     at com.sencha.command.environment.AppOrPackageEnvironment.getRequiredPackag<br />
eEnvironments(AppOrPackageEnvironment.java:165)<br />
     at com.sencha.command.environment.AppOrPackageEnvironment.getRequiredPackag<br />
esNoThemes(AppOrPackageEnvironment.java:212)<br />
     at com.sencha.command.environment.AppOrPackageEnvironment.getRequiredPackag<br />
eNamesNoThemes(AppOrPackageEnvironment.java:203)<br />
     at com.sencha.command.environment.AppEnvironment.&lt;init&gt;(AppEnvironment.java<br />
:66)<br />
     at com.sencha.command.environment.BuildEnvironment.load(BuildEnvironment.ja<br />
va:193)<br />
     at com.sencha.command.Sencha.loadBuildEnvironment(Sencha.java:374)<br />
     at com.sencha.command.Sencha.main(Sencha.java:127)<br />
<br />
<br />
please some one help me</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?87-Ext-Q-amp-A"><![CDATA[Ext: Q&A]]></category>
			<dc:creator>javapurna</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266280-extjs-cmd-to-build-project-get-ERROR-NULL</guid>
		</item>
		<item>
			<title>Autocomplete combobox with ajax call</title>
			<link>http://www.sencha.com/forum/showthread.php?266279-Autocomplete-combobox-with-ajax-call&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 05:11:24 GMT</pubDate>
			<description>when we click on the arrow on combo box first time it shows whole list and when we filter with the minChars the list is visible and the problem is...</description>
			<content:encoded><![CDATA[<div>when we click on the arrow on combo box first time it shows whole list and when we filter with the minChars the list is visible and the problem is when we delete the filtered value again when i click on the arrow of combo box the whole list is NOT visible. I want the list has to be visible.<br />
<br />
Code:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xtype : 'combobox',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; x : 50,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; y : 20,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width : 310,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; itemId : 'srcAppName',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; queryMode : 'remote',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; displayField : 'name',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; forceSelection : true,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; id : 'searchId',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; enableKeyEvents: true,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fieldLabel : 'Search',&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; triggerAction: 'all',&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; name : 'appSearch',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; minChars : 2,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; store : {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; autoLoad : true,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fields : ['name'],<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; proxy : {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; type : 'ajax',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; url : 'appSearchNameJsonData',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; reader : {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; root : 'searchableName',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; type : 'json'<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; listeners : {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; buffer : 50,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; change : function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var store = this.store;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; store.clearFilter();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; store.filter({<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; property : 'name',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; value : this.getValue()<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?87-Ext-Q-amp-A"><![CDATA[Ext: Q&A]]></category>
			<dc:creator>deepakbellale</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266279-Autocomplete-combobox-with-ajax-call</guid>
		</item>
		<item>
			<title>TVtoMobi app released - push notification based app with Sencha and phonegap</title>
			<link>http://www.sencha.com/forum/showthread.php?266278-TVtoMobi-app-released-push-notification-based-app-with-Sencha-and-phonegap&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 05:01:11 GMT</pubDate>
			<description>We’re in a soft-launch release for our second screen app called TVtoMobi and would love some feedback from Sencha developers. We were able to launch...</description>
			<content:encoded><![CDATA[<div><span style="font-family: Arial">We’re in a soft-launch release for our second screen app called TVtoMobi and would love some feedback from Sencha developers. We were able to launch our iPhone, iPad, Android smartphone and Android tablet versions all within a week of each other. Some of the other competing apps with huge development teams brag about launching their Android tablet version 6 months after their Android mobile version and a whole year after their iPhone version.</span><br />
<br />
<span style="font-family: Arial">We have our iPhone/iPad version available at:</span><br />
<font color="#1155CC"><u><a href="https://itunes.apple.com/us/app/tvtomobi/id647715674?mt=8&amp;ign-mpt=uo%3D4" target="_blank" rel="nofollow">https://itunes.apple.com/us/app/tvto...ign-mpt=uo%3D4</a></u></font><br />
<br />
<span style="font-family: Arial">Our Android phone and tablet version is also available at:</span><br />
<font color="#1155CC"><span style="font-family: Arial"><u><a href="https://play.google.com/store/apps/details?id=com.tvtomobi.activity3&amp;feature=nav_result#?t=W251bGwsMSwxLDMsImNvbS50dnRvbW9iaS5hY3Rpdml0eTMiXQ" target="_blank" rel="nofollow">https://play.google.com/store/apps/d...Y3Rpdml0eTMiXQ</a></u></span></font><br />
<br />
We are a hybrid app in-a-way as we did have to write some native code for the push notifications. We mostly used phonegap plugins there and Sencha handles everything else.<br />
<br />
Greatly appreciate any suggestions, or maybe catching some bugs that we missed.<br />
<br />
Thanks!</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?105-Sencha-Touch-2.x-Examples-and-Showcases">Sencha Touch 2.x: Examples and Showcases</category>
			<dc:creator>revilo78</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266278-TVtoMobi-app-released-push-notification-based-app-with-Sencha-and-phonegap</guid>
		</item>
		<item>
			<title>Hide window border And show Irregular shapes</title>
			<link>http://www.sencha.com/forum/showthread.php?266277-Hide-window-border-And-show-Irregular-shapes&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 04:48:50 GMT</pubDate>
			<description>Hi, 
    I plan to develop a desktop chat app and use my own ui，does SenchaDesktopPackager can hide window border and background ,at the same time it...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
    I plan to develop a desktop chat app and use my own ui，does SenchaDesktopPackager can hide window border and background ,at the same time it only show part lrregular shapes ? :)</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?112-Desktop-Packager">Desktop Packager</category>
			<dc:creator>yangfanlxy</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266277-Hide-window-border-And-show-Irregular-shapes</guid>
		</item>
		<item>
			<title>numberfield beforeBlur() does not call rawToValue()</title>
			<link>http://www.sencha.com/forum/showthread.php?266276-numberfield-beforeBlur()-does-not-call-rawToValue()&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 04:38:37 GMT</pubDate>
			<description>_*REQUIRED INFORMATION*_ 
 
 
*_Ext version tested:_* 
* Ext 4.2.0 
 
*_Browser versions tested against:_* 
* Chrome 27.0.1453.110 m 
 
*_DOCTYPE...</description>
			<content:encoded><![CDATA[<div><u><b><font color="green">REQUIRED INFORMATION</font></b></u><br />
<br />
<br />
<b><u>Ext version tested:</u></b><ul><li>Ext 4.2.0</li>
</ul><b><u>Browser versions tested against:</u></b><ul><li>Chrome <font color="#303942"><span style="font-family: Segoe UI">27.0.1453.110 m</span></font></li>
</ul><b><u>DOCTYPE tested against:</u></b><ul><li>html5</li>
</ul><b><u>Description:</u></b><ul><li>When an Ext.form.field.Number is blurred, the beforeBlur method fails to convert the raw value</li>
</ul><b><u>Steps to reproduce the problem:</u></b><ul><li>Extend the Ext.form.field.Number class</li>
<li>Implement a custom rawToValue method on the extended class</li>
<li> Instantiate a component of the custom class</li>
<li>enter a value</li>
<li>blur the component</li>
<li>call the getValue() method()</li>
</ul><b><u>The result that was expected:</u></b><ul><li>the getValue() method returns the raw html value</li>
</ul><b><u>The result that occurs instead:</u></b><ul><li>the getValue() method should return a value converted by the custom rawToValue() method</li>
</ul><b><u>Test Case:</u></b><br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; <br />
<br />
&nbsp; &nbsp; Ext.onReady(function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; Ext.define('CustomNumberField', {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; extend: 'Ext.form.field.Number',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; valueToRaw: function(value) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var rawVal = value * 2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return this.callParent([rawVal])<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; },<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rawToValue:function(rawValue){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var val = rawValue / 2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return this.callParent([val])<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; })<br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; var cnf = Ext.create('CustomNumberField', {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fieldLabel:'CNF test',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; value:20,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 400,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; renderTo: Ext.getBody()<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; console.log('init raw value should be 40', cnf.getRawValue())<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; //fake a user entered value<br />
&nbsp; &nbsp; &nbsp; &nbsp; cnf.setRawValue(50)<br />
&nbsp; &nbsp; &nbsp; &nbsp; console.log('raw value should be 50', cnf.getRawValue())<br />
&nbsp; &nbsp; &nbsp; &nbsp; console.log('value should be 25', cnf.getValue())<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; //fake a blur event<br />
&nbsp; &nbsp; &nbsp; &nbsp; cnf.triggerBlur()<br />
&nbsp; &nbsp; &nbsp; &nbsp; console.log('value should be 25', cnf.getValue(),'&lt;-- the getValue() returns the raw value. the beforeBlur bypasses the rawToValue()')<br />
&nbsp; &nbsp; &nbsp; &nbsp; console.log('raw value should be 50', cnf.getRawValue(),'&lt;-- the raw value has been passed diectly into the setValue() method, resulting in a doubled rawValue ')<br />
&nbsp; &nbsp; })</code><hr />
</div> <br />
<br />
<u><b><font color="green">HELPFUL INFORMATION</font></b></u><br />
<br />
<br />
<b><u>Possible fix:</u></b><ul><li>Override the beforeBlur() method, adding in the rawToValue()</li>
</ul><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Ext.define('MyApp.override.NumberField', {<br />
&nbsp; &nbsp; override: 'Ext.form.field.Number',<br />
<br />
<br />
&nbsp; &nbsp; beforeBlur : function() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; var me = this,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; v = me.parseValue(me.getRawValue());<br />
&nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp;  /* Need to convert the raw value */<br />
&nbsp; &nbsp; &nbsp; &nbsp; v = this.rawToValue(v)<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (!Ext.isEmpty(v)) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; me.setValue(v);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; },</code><hr />
</div> <br />
<b><u>Operating System:</u></b><ul><li>Windows 7</li>
</ul></div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?80-Ext-Bugs">Ext:Bugs</category>
			<dc:creator>mbudm</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266276-numberfield-beforeBlur()-does-not-call-rawToValue()</guid>
		</item>
		<item>
			<title><![CDATA[CSS references to resource/images don't work in IE10 on production builds]]></title>
			<link>http://www.sencha.com/forum/showthread.php?266275-CSS-references-to-resource-images-don-t-work-in-IE10-on-production-builds&amp;goto=newpost</link>
			<pubDate>Thu, 20 Jun 2013 04:27:28 GMT</pubDate>
			<description><![CDATA[I've been porting our tablet app to IE10 for our sales force. The app runs fine in development with the dev micro-loader. When you run your app...]]></description>
			<content:encoded><![CDATA[<div>I've been porting our tablet app to IE10 for our sales force. The app runs fine in development with the dev micro-loader. When you run your app through Sencha Cmd for a production build, any image references in CSS to a file in resource/images doesn't work - IE is trying to find it based off the root path.<br />
<br />
Steps to reproduce: <br />
<br />
Use Sencha Cmd to build the Kitchen Sink app shipped with ST 2.2 for production.<br />
Run the production build in Chrome and IE10.<br />
Chrome will correctly show the &quot;../images/noise.gif&quot; background on the right side inital page load. IE10 will not be able to load it.<br />
<br />
From what I saw, the development microloader writes a &lt;link&gt; tag on the page for CSS. The production microloader instead outputs the whole CSS content on the page. Prior to this operation, it creates a &lt;base&gt; href tag to fool the browser into the path of the CSS.  This doesn't seem to work in IE10.<br />
<br />
If reproducable, I consider this a major bug for IE10. It's a show stopper for us. I would love to know how other users are using Sencha Touch 2.2 for IE10/Win8.</div>

 ]]></content:encoded>
			<category domain="http://www.sencha.com/forum/forumdisplay.php?92-Sencha-Touch-2.x-Bugs">Sencha Touch 2.x: Bugs</category>
			<dc:creator>composer47</dc:creator>
			<guid isPermaLink="true">http://www.sencha.com/forum/showthread.php?266275-CSS-references-to-resource-images-don-t-work-in-IE10-on-production-builds</guid>
		</item>
	</channel>
</rss>
