ext

gwt ext tooltip and panel

hi, i am adding the tooltip to the panels.i have to check weather the tooltip is added to the panel or not. Thanks Usman ...

how to make a Ext gwt Grid movable ?

i have created a simple grid widget.but it sticks to the browser window.how to make it movable i.e dragable ...

How do I create a Single Select checkbox list using Ext.ListView component?

Hi all, I'm trying to create a checkbox list using ListView component. Below is my code. <script type="text/javascript"> Ext.onReady(function(){ Ext.BLANK_IMAGE_URL = 'blank.gif'; var genres = new Ext.data.SimpleStore({ fields: ['id','genre'], data: [['1','Comedy'],['4','Drama'],['3','Action']] }); var list1 = new Ext.li...

Ext Js uploading file brings up one file dialog on response

I have the following code which I am submitting to an aspx page fp.getForm().submit({ url: 'SomeAspxPage', method: 'POST', waitMsg: 'Uploading your file...', isUpload: true, success: function(fp, o){ ...

jersey webservice returns a 415 when executing a PUT from Ext.Ajax.request

Hey all, So, I've got a pretty simple RESTful jersey webservice, and I'm wanting to call it from my javascript code. I have no problem executing a GET request, but for some reason, when I execute a PUT, I get back a "415 Unsupported Media Type" error. Any idea what I'm doing wrong? Here's my webservice : package servlet; import jav...