Celltable scrollbar

2012-05-22 Thread Ashu
Hi,
 
Is there any posibilty to add scrollbar to cellist
currently i am using pager but i have a reuirement that to add scroll bar.
 
Please let me know is there any way to add this?
 
Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/P2A4DkBTdJMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



sending data from client to server

2012-05-02 Thread Ashu
Hi Everyone,
 
I have a requirement that, I have to search something from the db and 
get back some results(Like a search button functionality).For this I am 
giving some inputs.
I have to send these inputs(like Beans) to server side.
I am using GWT2.4 request factory.
How can i do this?
do i need to use value proxies here?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/6nJVoE-VRtEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Runtime exception: com.google.web.bindery.requestfactory.server.UnexpectedException: Could not find static method with a single parameter of a key type

2012-04-27 Thread Ashu
How to initialize entity manager here
Iam not able to intialize this.
 
Could you please help me on this?
On Monday, 23 April 2012 17:21:48 UTC+5:30, Ashu wrote:

 Hi,
  
 I am getting the above exception while running the GWT application.
  
 I am using Entity and EntityProxies.
  
 Below is the code:
  
 @Entity
 @Table(name = tlkpState)
 public class State{
 .
 }
 @ProxyFor(value = State.class)
 public interface StateProxy extends EntityProxy {
   
  public String getFips();
  public String getName();
  EntityProxyIdStateProxy stableId();
 }
 @Service(value = StateServiceImpl.class)
  public interface StateRequest extends RequestContext {
   RequestListStateProxy getStates() throws Exception;
   //RequestVoid getStates() throws Exception;
  }
 in widget.java
 try {

 clientFactory.getRequestFactory().stateRequestContext().getStates().fire(new 
 ReceiverListStateProxy(){
 @Override
 public void onSuccess(ListStateProxy response) {
  // TODO Auto-generated method stub
  System.out.println(on success);
 }
 
  @Override
  public void onFailure(ServerFailure error) {
  System.out.println(on Failure);
  }
});
   } catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
   }
  
 when i call getstate() method with return type void it is working fine.
 but the same method with return type ListStateProxy it is throwing the 
 following exception:
  
  
 * 

 com.google.web.bindery.requestfactory.server.UnexpectedException
 *: Could not find static method with a single parameter of a key type 

 at com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.die(
 *ServiceLayerDecorator.java:216*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
 *ReflectiveServiceLayer.java:253*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
 *ReflectiveServiceLayer.java:271*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
 *ReflectiveServiceLayer.java:271*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.isLive(
 *ReflectiveServiceLayer.java:200*) 

 at 
 com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.isLive(
 *ServiceLayerDecorator.java:116*) 

 at 
 com.google.web.bindery.requestfactory.server.LocatorServiceLayer.doIsLive(
 *LocatorServiceLayer.java:186*) 

 at com.google.web.bindery.requestfactory.server.LocatorServiceLayer.isLive(
 *LocatorServiceLayer.java:85*) 

 at 
 com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.isLive(
 *ServiceLayerDecorator.java:116*) 

 at 
 com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.createReturnOperations(
 *SimpleRequestProcessor.java:274*) 

 at 
 com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(
 *SimpleRequestProcessor.java:232*) 

 at 
 com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(
 *SimpleRequestProcessor.java:127*) 

 at 
 com.google.web.bindery.requestfactory.server.RequestFactoryServlet.doPost(
 *RequestFactoryServlet.java:133*) 

 at javax.servlet.http.HttpServlet.service(
 *HttpServlet.java:637*) 

 at javax.servlet.http.HttpServlet.service(
 *HttpServlet.java:717*) 

 at org.mortbay.jetty.servlet.ServletHolder.handle(
 *ServletHolder.java:487*) 

 at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(
 *ServletHandler.java:1097*) 

 at com.yieldstar.mpfui.server.MpfAuthFilter.doFilter(
 *MpfAuthFilter.java:41*) 

 at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(
 *ServletHandler.java:1088*) 

 at org.mortbay.jetty.servlet.ServletHandler.handle(
 *ServletHandler.java:360*) 

 at org.mortbay.jetty.security.SecurityHandler.handle(
 *SecurityHandler.java:216*) 

 at org.mortbay.jetty.servlet.SessionHandler.handle(
 *SessionHandler.java:181*) 

 at org.mortbay.jetty.handler.ContextHandler.handle(
 *ContextHandler.java:729*) 

 at org.mortbay.jetty.webapp.WebAppContext.handle(
 *WebAppContext.java:405*) 

 at org.mortbay.jetty.handler.HandlerWrapper.handle(
 *HandlerWrapper.java:152*) 

 at org.mortbay.jetty.handler.RequestLogHandler.handle(
 *RequestLogHandler.java:49*) 

 at org.mortbay.jetty.handler.HandlerWrapper.handle(
 *HandlerWrapper.java:152*) 

 at org.mortbay.jetty.Server.handle(
 *Server.java:324*) 

 at org.mortbay.jetty.HttpConnection.handleRequest(
 *HttpConnection.java:505*) 

 at org.mortbay.jetty.HttpConnection$RequestHandler.content(
 *HttpConnection.java:843*) 

 at org.mortbay.jetty.HttpParser.parseNext(
 *HttpParser.java:647*) 

 at org.mortbay.jetty.HttpParser.parseAvailable(
 *HttpParser.java:211*) 

 at org.mortbay.jetty.HttpConnection.handle(
 *HttpConnection.java:380*) 

 at org.mortbay.io.nio.SelectChannelEndPoint.run(
 *SelectChannelEndPoint.java:395*) 

 at org.mortbay.thread.QueuedThreadPool$PoolThread.run(
 *QueuedThreadPool.java:488

Entities in GWT 2.4

2012-04-27 Thread Ashu
Hi,
 
I am using GWT2.4 version.
 
how to use value proxies without entities?
 
If possible please provide me some sample example.
 
Thanks

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/VZMr_N4-kSsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Runtime exception: com.google.web.bindery.requestfactory.server.UnexpectedException: Could not find static method with a single parameter of a key type

2012-04-25 Thread Ashu
could you please provide me the sample findby() method for reference?

On Monday, 23 April 2012 19:39:19 UTC+5:30, Thomas Broyer wrote:


 On Monday, April 23, 2012 2:14:38 PM UTC+2, Ashu wrote: 

 Thanks for the quick reply!!
 what is the use of this method and this class return type is my State 
 class. how can i write that?
 could you please give me more information about this?


 The find method should load your entity from your datastore, given its ID. 


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/cstsdp97HzkJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Runtime exception: com.google.web.bindery.requestfactory.server.UnexpectedException: Could not find static method with a single parameter of a key type

2012-04-25 Thread Ashu
  now i am getting the runtime exception for EMF class
 
Server Error: Could not initialize class com.shared.EMF 
 
 

On Monday, 23 April 2012 17:21:48 UTC+5:30, Ashu wrote:

 Hi,
  
 I am getting the above exception while running the GWT application.
  
 I am using Entity and EntityProxies.
  
 Below is the code:
  
 @Entity
 @Table(name = tlkpState)
 public class State{
 .
 }
 @ProxyFor(value = State.class)
 public interface StateProxy extends EntityProxy {
   
  public String getFips();
  public String getName();
  EntityProxyIdStateProxy stableId();
 }
 @Service(value = StateServiceImpl.class)
  public interface StateRequest extends RequestContext {
   RequestListStateProxy getStates() throws Exception;
   //RequestVoid getStates() throws Exception;
  }
 in widget.java
 try {

 clientFactory.getRequestFactory().stateRequestContext().getStates().fire(new 
 ReceiverListStateProxy(){
 @Override
 public void onSuccess(ListStateProxy response) {
  // TODO Auto-generated method stub
  System.out.println(on success);
 }
 
  @Override
  public void onFailure(ServerFailure error) {
  System.out.println(on Failure);
  }
});
   } catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
   }
  
 when i call getstate() method with return type void it is working fine.
 but the same method with return type ListStateProxy it is throwing the 
 following exception:
  
  
 * 

 com.google.web.bindery.requestfactory.server.UnexpectedException
 *: Could not find static method with a single parameter of a key type 

 at com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.die(
 *ServiceLayerDecorator.java:216*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
 *ReflectiveServiceLayer.java:253*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
 *ReflectiveServiceLayer.java:271*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
 *ReflectiveServiceLayer.java:271*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.isLive(
 *ReflectiveServiceLayer.java:200*) 

 at 
 com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.isLive(
 *ServiceLayerDecorator.java:116*) 

 at 
 com.google.web.bindery.requestfactory.server.LocatorServiceLayer.doIsLive(
 *LocatorServiceLayer.java:186*) 

 at com.google.web.bindery.requestfactory.server.LocatorServiceLayer.isLive(
 *LocatorServiceLayer.java:85*) 

 at 
 com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.isLive(
 *ServiceLayerDecorator.java:116*) 

 at 
 com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.createReturnOperations(
 *SimpleRequestProcessor.java:274*) 

 at 
 com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(
 *SimpleRequestProcessor.java:232*) 

 at 
 com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(
 *SimpleRequestProcessor.java:127*) 

 at 
 com.google.web.bindery.requestfactory.server.RequestFactoryServlet.doPost(
 *RequestFactoryServlet.java:133*) 

 at javax.servlet.http.HttpServlet.service(
 *HttpServlet.java:637*) 

 at javax.servlet.http.HttpServlet.service(
 *HttpServlet.java:717*) 

 at org.mortbay.jetty.servlet.ServletHolder.handle(
 *ServletHolder.java:487*) 

 at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(
 *ServletHandler.java:1097*) 

 at com.yieldstar.mpfui.server.MpfAuthFilter.doFilter(
 *MpfAuthFilter.java:41*) 

 at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(
 *ServletHandler.java:1088*) 

 at org.mortbay.jetty.servlet.ServletHandler.handle(
 *ServletHandler.java:360*) 

 at org.mortbay.jetty.security.SecurityHandler.handle(
 *SecurityHandler.java:216*) 

 at org.mortbay.jetty.servlet.SessionHandler.handle(
 *SessionHandler.java:181*) 

 at org.mortbay.jetty.handler.ContextHandler.handle(
 *ContextHandler.java:729*) 

 at org.mortbay.jetty.webapp.WebAppContext.handle(
 *WebAppContext.java:405*) 

 at org.mortbay.jetty.handler.HandlerWrapper.handle(
 *HandlerWrapper.java:152*) 

 at org.mortbay.jetty.handler.RequestLogHandler.handle(
 *RequestLogHandler.java:49*) 

 at org.mortbay.jetty.handler.HandlerWrapper.handle(
 *HandlerWrapper.java:152*) 

 at org.mortbay.jetty.Server.handle(
 *Server.java:324*) 

 at org.mortbay.jetty.HttpConnection.handleRequest(
 *HttpConnection.java:505*) 

 at org.mortbay.jetty.HttpConnection$RequestHandler.content(
 *HttpConnection.java:843*) 

 at org.mortbay.jetty.HttpParser.parseNext(
 *HttpParser.java:647*) 

 at org.mortbay.jetty.HttpParser.parseAvailable(
 *HttpParser.java:211*) 

 at org.mortbay.jetty.HttpConnection.handle(
 *HttpConnection.java:380*) 

 at org.mortbay.io.nio.SelectChannelEndPoint.run(
 *SelectChannelEndPoint.java:395*) 

 at org.mortbay.thread.QueuedThreadPool$PoolThread.run

Runtime exception: com.google.web.bindery.requestfactory.server.UnexpectedException: Could not find static method with a single parameter of a key type

2012-04-23 Thread Ashu
Hi,
 
I am getting the above exception while running the GWT application.
 
I am using Entity and EntityProxies.
 
Below is the code:
 
@Entity
@Table(name = tlkpState)
public class State{
.
}
@ProxyFor(value = State.class)
public interface StateProxy extends EntityProxy {
  
 public String getFips();
 public String getName();
 EntityProxyIdStateProxy stableId();
}
@Service(value = StateServiceImpl.class)
 public interface StateRequest extends RequestContext {
  RequestListStateProxy getStates() throws Exception;
  //RequestVoid getStates() throws Exception;
 }
in widget.java
try {
   clientFactory.getRequestFactory().stateRequestContext().getStates().fire(new 
ReceiverListStateProxy(){
@Override
public void onSuccess(ListStateProxy response) {
 // TODO Auto-generated method stub
 System.out.println(on success);
}

 @Override
 public void onFailure(ServerFailure error) {
 System.out.println(on Failure);
 }
   });
  } catch (Exception e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 
when i call getstate() method with return type void it is working fine.
but the same method with return type ListStateProxy it is throwing the 
following exception:
 
 
* 

com.google.web.bindery.requestfactory.server.UnexpectedException*: Could 
not find static method with a single parameter of a key type

at com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.die(*
ServiceLayerDecorator.java:216*)

at 
com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
*ReflectiveServiceLayer.java:253*)

at 
com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
*ReflectiveServiceLayer.java:271*)

at 
com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
*ReflectiveServiceLayer.java:271*)

at 
com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.isLive(*
ReflectiveServiceLayer.java:200*)

at 
com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.isLive(*
ServiceLayerDecorator.java:116*)

at 
com.google.web.bindery.requestfactory.server.LocatorServiceLayer.doIsLive(*
LocatorServiceLayer.java:186*)

at com.google.web.bindery.requestfactory.server.LocatorServiceLayer.isLive(*
LocatorServiceLayer.java:85*)

at 
com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.isLive(*
ServiceLayerDecorator.java:116*)

at 
com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.createReturnOperations(
*SimpleRequestProcessor.java:274*)

at 
com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(
*SimpleRequestProcessor.java:232*)

at 
com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(
*SimpleRequestProcessor.java:127*)

at 
com.google.web.bindery.requestfactory.server.RequestFactoryServlet.doPost(*
RequestFactoryServlet.java:133*)

at javax.servlet.http.HttpServlet.service(*HttpServlet.java:637*)

at javax.servlet.http.HttpServlet.service(*HttpServlet.java:717*)

at org.mortbay.jetty.servlet.ServletHolder.handle(*ServletHolder.java:487*)

at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(*
ServletHandler.java:1097*)

at com.yieldstar.mpfui.server.MpfAuthFilter.doFilter(*MpfAuthFilter.java:41*
)

at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(*
ServletHandler.java:1088*)

at org.mortbay.jetty.servlet.ServletHandler.handle(*ServletHandler.java:360*
)

at org.mortbay.jetty.security.SecurityHandler.handle(*
SecurityHandler.java:216*)

at org.mortbay.jetty.servlet.SessionHandler.handle(*SessionHandler.java:181*
)

at org.mortbay.jetty.handler.ContextHandler.handle(*ContextHandler.java:729*
)

at org.mortbay.jetty.webapp.WebAppContext.handle(*WebAppContext.java:405*)

at org.mortbay.jetty.handler.HandlerWrapper.handle(*HandlerWrapper.java:152*
)

at org.mortbay.jetty.handler.RequestLogHandler.handle(*
RequestLogHandler.java:49*)

at org.mortbay.jetty.handler.HandlerWrapper.handle(*HandlerWrapper.java:152*
)

at org.mortbay.jetty.Server.handle(*Server.java:324*)

at org.mortbay.jetty.HttpConnection.handleRequest(*HttpConnection.java:505*)

at org.mortbay.jetty.HttpConnection$RequestHandler.content(*
HttpConnection.java:843*)

at org.mortbay.jetty.HttpParser.parseNext(*HttpParser.java:647*)

at org.mortbay.jetty.HttpParser.parseAvailable(*HttpParser.java:211*)

at org.mortbay.jetty.HttpConnection.handle(*HttpConnection.java:380*)

at org.mortbay.io.nio.SelectChannelEndPoint.run(*
SelectChannelEndPoint.java:395*)

at org.mortbay.thread.QueuedThreadPool$PoolThread.run(*
QueuedThreadPool.java:488*)

 

I am using gwt 2.4 version.

Not using locators.

could any one help on this.

 

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/F-eZF9EYAD8J.
To post to this group, send email to 

Re: Runtime exception: com.google.web.bindery.requestfactory.server.UnexpectedException: Could not find static method with a single parameter of a key type

2012-04-23 Thread Ashu
Thanks for the quick reply!!
what is the use of this method and this class return type is my State 
class. how can i write that?
could you please give me more information about this?
 
 

On Monday, 23 April 2012 17:21:48 UTC+5:30, Ashu wrote:

 Hi,
  
 I am getting the above exception while running the GWT application.
  
 I am using Entity and EntityProxies.
  
 Below is the code:
  
 @Entity
 @Table(name = tlkpState)
 public class State{
 .
 }
 @ProxyFor(value = State.class)
 public interface StateProxy extends EntityProxy {
   
  public String getFips();
  public String getName();
  EntityProxyIdStateProxy stableId();
 }
 @Service(value = StateServiceImpl.class)
  public interface StateRequest extends RequestContext {
   RequestListStateProxy getStates() throws Exception;
   //RequestVoid getStates() throws Exception;
  }
 in widget.java
 try {

 clientFactory.getRequestFactory().stateRequestContext().getStates().fire(new 
 ReceiverListStateProxy(){
 @Override
 public void onSuccess(ListStateProxy response) {
  // TODO Auto-generated method stub
  System.out.println(on success);
 }
 
  @Override
  public void onFailure(ServerFailure error) {
  System.out.println(on Failure);
  }
});
   } catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
   }
  
 when i call getstate() method with return type void it is working fine.
 but the same method with return type ListStateProxy it is throwing the 
 following exception:
  
  
 * 

 com.google.web.bindery.requestfactory.server.UnexpectedException
 *: Could not find static method with a single parameter of a key type 

 at com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.die(
 *ServiceLayerDecorator.java:216*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
 *ReflectiveServiceLayer.java:253*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
 *ReflectiveServiceLayer.java:271*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.getFind(
 *ReflectiveServiceLayer.java:271*) 

 at 
 com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.isLive(
 *ReflectiveServiceLayer.java:200*) 

 at 
 com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.isLive(
 *ServiceLayerDecorator.java:116*) 

 at 
 com.google.web.bindery.requestfactory.server.LocatorServiceLayer.doIsLive(
 *LocatorServiceLayer.java:186*) 

 at com.google.web.bindery.requestfactory.server.LocatorServiceLayer.isLive(
 *LocatorServiceLayer.java:85*) 

 at 
 com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.isLive(
 *ServiceLayerDecorator.java:116*) 

 at 
 com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.createReturnOperations(
 *SimpleRequestProcessor.java:274*) 

 at 
 com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(
 *SimpleRequestProcessor.java:232*) 

 at 
 com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(
 *SimpleRequestProcessor.java:127*) 

 at 
 com.google.web.bindery.requestfactory.server.RequestFactoryServlet.doPost(
 *RequestFactoryServlet.java:133*) 

 at javax.servlet.http.HttpServlet.service(
 *HttpServlet.java:637*) 

 at javax.servlet.http.HttpServlet.service(
 *HttpServlet.java:717*) 

 at org.mortbay.jetty.servlet.ServletHolder.handle(
 *ServletHolder.java:487*) 

 at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(
 *ServletHandler.java:1097*) 

 at com.yieldstar.mpfui.server.MpfAuthFilter.doFilter(
 *MpfAuthFilter.java:41*) 

 at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(
 *ServletHandler.java:1088*) 

 at org.mortbay.jetty.servlet.ServletHandler.handle(
 *ServletHandler.java:360*) 

 at org.mortbay.jetty.security.SecurityHandler.handle(
 *SecurityHandler.java:216*) 

 at org.mortbay.jetty.servlet.SessionHandler.handle(
 *SessionHandler.java:181*) 

 at org.mortbay.jetty.handler.ContextHandler.handle(
 *ContextHandler.java:729*) 

 at org.mortbay.jetty.webapp.WebAppContext.handle(
 *WebAppContext.java:405*) 

 at org.mortbay.jetty.handler.HandlerWrapper.handle(
 *HandlerWrapper.java:152*) 

 at org.mortbay.jetty.handler.RequestLogHandler.handle(
 *RequestLogHandler.java:49*) 

 at org.mortbay.jetty.handler.HandlerWrapper.handle(
 *HandlerWrapper.java:152*) 

 at org.mortbay.jetty.Server.handle(
 *Server.java:324*) 

 at org.mortbay.jetty.HttpConnection.handleRequest(
 *HttpConnection.java:505*) 

 at org.mortbay.jetty.HttpConnection$RequestHandler.content(
 *HttpConnection.java:843*) 

 at org.mortbay.jetty.HttpParser.parseNext(
 *HttpParser.java:647*) 

 at org.mortbay.jetty.HttpParser.parseAvailable(
 *HttpParser.java:211*) 

 at org.mortbay.jetty.HttpConnection.handle(
 *HttpConnection.java:380*) 

 at org.mortbay.io.nio.SelectChannelEndPoint.run(
 *SelectChannelEndPoint.java:395

GWT 2.4

2012-04-20 Thread Ashu
Could you please provide me the detail sample example for multiple
activities and places using UIBinder.

I have a requirement that- in the UI I must have

1.Header part -  That contains image and currentdate

2.Menubar - contains menu

3.when i click on the menu on the other part it should display some
other ui

Please provide me the detila sample example for this.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Flextable is not working with ui.xml

2012-04-20 Thread Ashu
how to use FlexTable with ui.xml. when  i tried to add this i am not
able to add the lables and textboxes further?

i have a ui with different colwidth, so in this case which layout is
better other than this Flextable




-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Flextable is not working with ui.xml

2012-04-20 Thread Ashu
can any one help me in this?

On Apr 16, 6:37 pm, Ashu swathi.kambhamp...@gmail.com wrote:
 how to use FlexTable with ui.xml. when  i tried to add this i am not
 able to add the lables and textboxes further?

 i have a ui with different colwidth, so in this case which layout is
 better other than this Flextable

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT 2.4

2012-04-20 Thread Ashu
can any one help me in this??

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



update in listgrid

2011-11-04 Thread Ashu
Hi,

iam using gwt in my application.
currently we are updating while editing the listgrid and select some
other panel or tab.this is ok
but my requirement is after updating i need to give some information
to user like 'updated succesfully'
if it is updated or else updation not successfull like

can you plese tell me how can we do this

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



TextBox and Other Boxes not working

2011-04-27 Thread ashu
I am designing a page using GWT designer and this is the hierarchy

rootPanel
||
VerticalPanel
||
FlexTable

Now whenever I try to add a textbox to Flextable the mouse just
doesn't pick it. and I 'm unable to add it.
When I switch to Editor mode I can add the textbox and it shows no
error. But just when I switch to Designer mode the GWT designer
crashes and says it is unable to parse.

Am I doing something wrong or is it a bug?

Awaiting reply.
Regards

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Browser scrollbar jumps to the top when clicking on a hyperlink in gwt based application

2009-05-08 Thread Ashu

I have four widgets on my webpage. when I click on hyperlink placed in
one of the widgets, webpage scrollbar jumps to the top. Anyone faced
similar problem?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---