<?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: Preview: Java Bean support with Ext GWT</title>
	<atom:link href="http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/</link>
	<description>JavaScript UI Component Library</description>
	<lastBuildDate>Sat, 21 Nov 2009 23:37:38 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Gangurg</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-72515</link>
		<dc:creator>Gangurg</dc:creator>
		<pubDate>Wed, 12 Aug 2009 07:50:22 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-72515</guid>
		<description>Well Folks , I got the above stuff working , but now I am attaching a button to my vertical panel and on click of a button , i want to reload the grid from the server . I notice that inside of my button click if i do call loader.load it still gives me the old data , How do i refresh the grid .</description>
		<content:encoded><![CDATA[<p>Well Folks , I got the above stuff working , but now I am attaching a button to my vertical panel and on click of a button , i want to reload the grid from the server . I notice that inside of my button click if i do call loader.load it still gives me the old data , How do i refresh the grid .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gangurg</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-72513</link>
		<dc:creator>Gangurg</dc:creator>
		<pubDate>Wed, 12 Aug 2009 07:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-72513</guid>
		<description>Unable to get Bean Model Data Grid working . Can anyone help me out on why my data grid is not working . I checked the callback object . Its comming up right from the server . Here is my code .
Just the data grid with collumn header  comes up .
MY DTO : EmpCounty  implements BeanModelTag, Serializable 


VerticalPanel vp = new VerticalPanel();
		
		
		// proxy and reader  
	     final RpcProxy&lt;List&gt; proxyB = new RpcProxy&lt;List&gt;() {  
	      @Override  
	      public void load(Object loadConfig, AsyncCallback&lt;List&gt; callback) { 
	        String key = &quot;israel&quot;;
myService.loadObject(key, callback);
	    	    loader.load();  
	  	   	  
	    	  
	      }  
	    };  
	    
	    BeanModelReader reader = new BeanModelReader();
		
	    // loader and store  
  	    ListLoader&lt;ListLoadResult&gt; loader = new BaseListLoader&lt;ListLoadResult&gt;(proxyB, reader);  
  	    ListStore store ;
               store = new ListStore(loader);  
  	  loader.load()
  	  
  		
  	 // column model  
  	    List columns = new ArrayList();   
  	    columns.add(new ColumnConfig(&quot;name&quot;, &quot;name&quot;, 200));   
  	    columns.add(new ColumnConfig(&quot;country&quot;, &quot;country&quot;, 100));   
  	    ColumnModel cm = new ColumnModel(columns); 
  	    
  	    
  	    Grid grid = new Grid(store, cm);  
  	    grid.setAutoExpandColumn(&quot;country&quot;); 
  	    grid.setHeight(300);
  		
  	    vp.add(grid);
  		
  	  RootPanel.get().add(vp);</description>
		<content:encoded><![CDATA[<p>Unable to get Bean Model Data Grid working . Can anyone help me out on why my data grid is not working . I checked the callback object . Its comming up right from the server . Here is my code .<br />
Just the data grid with collumn header  comes up .<br />
MY DTO : EmpCounty  implements BeanModelTag, Serializable </p>
<p>VerticalPanel vp = new VerticalPanel();</p>
<p>		// proxy and reader<br />
	     final RpcProxy&lt;List&gt; proxyB = new RpcProxy&lt;List&gt;() {<br />
	      @Override<br />
	      public void load(Object loadConfig, AsyncCallback&lt;List&gt; callback) {<br />
	        String key = &#8220;israel&#8221;;<br />
myService.loadObject(key, callback);<br />
	    	    loader.load();  </p>
<p>	      }<br />
	    };  </p>
<p>	    BeanModelReader reader = new BeanModelReader();</p>
<p>	    // loader and store<br />
  	    ListLoader&lt;ListLoadResult&gt; loader = new BaseListLoader&lt;ListLoadResult&gt;(proxyB, reader);<br />
  	    ListStore store ;<br />
               store = new ListStore(loader);<br />
  	  loader.load()</p>
<p>  	 // column model<br />
  	    List columns = new ArrayList();<br />
  	    columns.add(new ColumnConfig(&#8221;name&#8221;, &#8220;name&#8221;, 200));<br />
  	    columns.add(new ColumnConfig(&#8221;country&#8221;, &#8220;country&#8221;, 100));<br />
  	    ColumnModel cm = new ColumnModel(columns); </p>
<p>  	    Grid grid = new Grid(store, cm);<br />
  	    grid.setAutoExpandColumn(&#8221;country&#8221;);<br />
  	    grid.setHeight(300);</p>
<p>  	    vp.add(grid);</p>
<p>  	  RootPanel.get().add(vp);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: medyum</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-72124</link>
		<dc:creator>medyum</dc:creator>
		<pubDate>Wed, 05 Aug 2009 16:30:28 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-72124</guid>
		<description>thanks a lot...
medyum oguz</description>
		<content:encoded><![CDATA[<p>thanks a lot&#8230;<br />
medyum oguz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zerrin egeliler</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-71442</link>
		<dc:creator>zerrin egeliler</dc:creator>
		<pubDate>Thu, 23 Jul 2009 17:05:55 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-71442</guid>
		<description>I think this can help you.</description>
		<content:encoded><![CDATA[<p>I think this can help you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ssk sorgulama</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-71427</link>
		<dc:creator>ssk sorgulama</dc:creator>
		<pubDate>Thu, 23 Jul 2009 15:00:43 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-71427</guid>
		<description>I am using eclipse and cypal. What do I configure?</description>
		<content:encoded><![CDATA[<p>I am using eclipse and cypal. What do I configure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: medyum</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-70195</link>
		<dc:creator>medyum</dc:creator>
		<pubDate>Fri, 03 Jul 2009 10:31:57 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-70195</guid>
		<description>Any idea on how to wire Enteprise Java Beans over the wire?
First problem is that the EJB wont compile in gwt becouse they relate to annotatioons in javax.persistence.*; &lt;a href=&quot;http://www.medyum.gen.tr&quot; rel=&quot;nofollow&quot;&gt;Medyum&lt;/a&gt; ;
I then made fake annotation files, that made the gwt js compile and run.
But then the gwt-servlet fails to serialize the beans for transmission</description>
		<content:encoded><![CDATA[<p>Any idea on how to wire Enteprise Java Beans over the wire?<br />
First problem is that the EJB wont compile in gwt becouse they relate to annotatioons in javax.persistence.*; <a href="http://www.medyum.gen.tr">Medyum</a> ;<br />
I then made fake annotation files, that made the gwt js compile and run.<br />
But then the gwt-servlet fails to serialize the beans for transmission</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: conner</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-22739</link>
		<dc:creator>conner</dc:creator>
		<pubDate>Sat, 24 Jan 2009 18:10:18 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-22739</guid>
		<description>If you want to develop GXT with Eclipse + Cypal, You can read this article 

http://extjs-gwt.blogspot.com/

I think this can help you.</description>
		<content:encoded><![CDATA[<p>If you want to develop GXT with Eclipse + Cypal, You can read this article </p>
<p><a href="http://extjs-gwt.blogspot.com/">http://extjs-gwt.blogspot.com/</a></p>
<p>I think this can help you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-22011</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Tue, 13 Jan 2009 09:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-22011</guid>
		<description>i got the same problem with this Errors:

still have this problem, hope someboby resolve it ,pls tell us! 3X!

Computing all possible rebind results for &#039;com.extjs.gxt.ui.client.data.BeanModelLookup&#039;
      Rebinding com.extjs.gxt.ui.client.data.BeanModelLookup
         Invoking 
            [ERROR] Class com.extjs.gxt.ui.client.data.BeanModelLookup not found.
java.lang.NullPointerException
	at com.extjs.gxt.ui.rebind.core.BeanModelGenerator.getMarkerBean(BeanModelGenerator.java:169)
	at com.extjs.gxt.ui.rebind.core.BeanModelGenerator.generate(BeanModelGenerator.java:53)
	at com.google.gwt.dev.cfg.RuleGenerateWith.realize(RuleGenerateWith.java:51)
	at com.google.gwt.dev.shell.StandardRebindOracle$Rebinder.tryRebind(StandardRebindOracle.java:116)
	at com.google.gwt.dev.shell.StandardRebindOracle$Rebinder.rebind(StandardRebindOracle.java:61)
	at com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.java:166)
	at com.google.gwt.dev.GWTCompiler$DistillerRebindPermutationOracle.getAllPossibleRebindAnswers(GWTCompiler.java:195)
	at com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.doFindAdditionalTypesUsingRebinds(WebModeCompilerFrontEnd.java:128)
	at com.google.gwt.dev.jdt.AbstractCompiler$CompilerImpl.process(AbstractCompiler.java:150)
	at org.eclipse.jdt.internal.compiler.Compiler.compile(Compiler.java:392)
	at com.google.gwt.dev.jdt.AbstractCompiler$CompilerImpl.compile(AbstractCompiler.java:84)
	at com.google.gwt.dev.jdt.AbstractCompiler$CompilerImpl.compile(AbstractCompiler.java:180)
	at com.google.gwt.dev.jdt.AbstractCompiler$CompilerImpl.access$400(AbstractCompiler.java:70)
	at com.google.gwt.dev.jdt.AbstractCompiler.compile(AbstractCompiler.java:493)
	at com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.getCompilationUnitDeclarations(WebModeCompilerFrontEnd.java:73)
	at com.google.gwt.dev.jjs.JavaToJavaScriptCompiler.(JavaToJavaScriptCompiler.java:277)
	at com.google.gwt.dev.GWTCompiler.distill(GWTCompiler.java:353)
	at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:564)
	at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:554)
	at com.google.gwt.dev.GWTCompiler.main(GWTCompiler.java:214)
[ERROR] Errors in &#039;file:/D:/iread_src/trunk/1.Manager/iReadManagerClient/src/com/extjs/gxt/ui/client/data/BeanModelLookup.java&#039;
   [ERROR] Line 17:  Failed to resolve &#039;com.extjs.gxt.ui.client.data.BeanModelLookup&#039; via deferred binding</description>
		<content:encoded><![CDATA[<p>i got the same problem with this Errors:</p>
<p>still have this problem, hope someboby resolve it ,pls tell us! 3X!</p>
<p>Computing all possible rebind results for &#8216;com.extjs.gxt.ui.client.data.BeanModelLookup&#8217;<br />
      Rebinding com.extjs.gxt.ui.client.data.BeanModelLookup<br />
         Invoking<br />
            [ERROR] Class com.extjs.gxt.ui.client.data.BeanModelLookup not found.<br />
java.lang.NullPointerException<br />
	at com.extjs.gxt.ui.rebind.core.BeanModelGenerator.getMarkerBean(BeanModelGenerator.java:169)<br />
	at com.extjs.gxt.ui.rebind.core.BeanModelGenerator.generate(BeanModelGenerator.java:53)<br />
	at com.google.gwt.dev.cfg.RuleGenerateWith.realize(RuleGenerateWith.java:51)<br />
	at com.google.gwt.dev.shell.StandardRebindOracle$Rebinder.tryRebind(StandardRebindOracle.java:116)<br />
	at com.google.gwt.dev.shell.StandardRebindOracle$Rebinder.rebind(StandardRebindOracle.java:61)<br />
	at com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.java:166)<br />
	at com.google.gwt.dev.GWTCompiler$DistillerRebindPermutationOracle.getAllPossibleRebindAnswers(GWTCompiler.java:195)<br />
	at com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.doFindAdditionalTypesUsingRebinds(WebModeCompilerFrontEnd.java:128)<br />
	at com.google.gwt.dev.jdt.AbstractCompiler$CompilerImpl.process(AbstractCompiler.java:150)<br />
	at org.eclipse.jdt.internal.compiler.Compiler.compile(Compiler.java:392)<br />
	at com.google.gwt.dev.jdt.AbstractCompiler$CompilerImpl.compile(AbstractCompiler.java:84)<br />
	at com.google.gwt.dev.jdt.AbstractCompiler$CompilerImpl.compile(AbstractCompiler.java:180)<br />
	at com.google.gwt.dev.jdt.AbstractCompiler$CompilerImpl.access$400(AbstractCompiler.java:70)<br />
	at com.google.gwt.dev.jdt.AbstractCompiler.compile(AbstractCompiler.java:493)<br />
	at com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.getCompilationUnitDeclarations(WebModeCompilerFrontEnd.java:73)<br />
	at com.google.gwt.dev.jjs.JavaToJavaScriptCompiler.(JavaToJavaScriptCompiler.java:277)<br />
	at com.google.gwt.dev.GWTCompiler.distill(GWTCompiler.java:353)<br />
	at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:564)<br />
	at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:554)<br />
	at com.google.gwt.dev.GWTCompiler.main(GWTCompiler.java:214)<br />
[ERROR] Errors in &#8216;file:/D:/iread_src/trunk/1.Manager/iReadManagerClient/src/com/extjs/gxt/ui/client/data/BeanModelLookup.java&#8217;<br />
   [ERROR] Line 17:  Failed to resolve &#8216;com.extjs.gxt.ui.client.data.BeanModelLookup&#8217; via deferred binding</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Howard</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-21589</link>
		<dc:creator>Mike Howard</dc:creator>
		<pubDate>Tue, 06 Jan 2009 03:42:16 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-21589</guid>
		<description>I am using eclipse and cypal. What do I configure?</description>
		<content:encoded><![CDATA[<p>I am using eclipse and cypal. What do I configure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gogus buyutme</title>
		<link>http://www.extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/comment-page-1/#comment-18078</link>
		<dc:creator>Gogus buyutme</dc:creator>
		<pubDate>Fri, 28 Nov 2008 22:36:47 +0000</pubDate>
		<guid isPermaLink="false">http://extjs.com/blog/2008/07/14/preview-java-bean-support-with-ext-gwt/#comment-18078</guid>
		<description>Any progress about this issue? Deferred binding for BeanModel works in hosted-mode browser, but it does not compile for deployment.</description>
		<content:encoded><![CDATA[<p>Any progress about this issue? Deferred binding for BeanModel works in hosted-mode browser, but it does not compile for deployment.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
