What do you want?
On resizing the window, the grid should adjust its width so that it fits inside current window?
Use
grid.getView().setForceFit(true);
If you want on resizing the...
Type: Posts; User: vardhan22
What do you want?
On resizing the window, the grid should adjust its width so that it fits inside current window?
Use
grid.getView().setForceFit(true);
If you want on resizing the...
By using params the post buffer will be URLencoded like data. if you replace it by jsonData ?then it will post raw JSON. I am hoping, you want raw JSON at your server.
See the thread...
Follow the link
http://www.sencha.com/blog/migrating-styles-and-themes-from-ext-gwt-2-to-gxt-3/
See under the section: Styling a GXT 3 application
Steps:
1) Create a class similar to...
Hi All,
I am facing this issue in GXT 3.0.1 with combobox as well as with DateField
Is this solved, in which release? GXT 3.0.6 or GXT 3.1
And this does not happen always. Only some times. In...
The stackoverflow link i gave, discussed it properly.
But,If your model is dynamic(everything coming from server response), then why it will be declared inside app.js
Just give controllers and...
There are a lot of links which discusses this:
http://stackoverflow.com/questions/5751289/dynamic-model-with-extjs-4
http://www.sencha.com/forum/showthread.php?266047...
I am not sure what exactly your issue is, but i suppose you want this
http://stackoverflow.com/questions/11375521/loading-mask-that-disables-underlying-html-elements
For every widget, the setOverFlow property is there. So, you can easily use that. In my opinion, there is no any direct way to pin the title of TabPanel at the top.
You can think of some other...
You must have been using any of Ext.Component like panel, tabpanel,container etc. All of them has method called setLoading(""). You can use this method inside your application load/init method. For...
Instead of label, use HTMLPanel, and add it your tabpanel.
See the code
TabPanel tabPanel = new TabPanel();
tabPanel.add(new Label("Really short test"), "Short text");
Perhaps you want
http://docs.sencha.com/extjs/4.2.0/#!/api/Ext.grid.Panel-method-reconfigure
The sample example is here.....
The Configs, Methods, properties options given in DOCS says that these are the configuratiions, methods associated with Button. Like this example...
Instead of
config: {
cls:'red-css'
}
use
You cab use profiler for IE to see whether any scripts related to ExtJs take a long time to load. The following link describes how to to JavScript profiling in IE...
I do not think, this has to do with ExtJs.
There might be some issue with your system.
How to solve it:
http://support.microsoft.com/kb/175500
DO NOT KEEP YOUR BROWSER IN COMPATIBILITY MODE...
1) See the example over here. http://docs.sencha.com/extjs/4.2.0/#!/example/build/KitchenSink/ext-theme-neptune/#cell-editing . It shows an image in last column, u can use something like that,...
Thanks, after removing the extra container it worked beautifully. So, extra containers, not only cause performance issue, but also layout issues.
Hi
Description:
I have a tabpanel, with two tabs.
Ext.define('App.view.panels.MainTabPanel',{
extend : 'Ext.tab.Panel',
Refresh the grid view after hiding column.
grid.getView().refresh();
It should work
You have to call dolayout() method of container in which you are adding elements. I assume, containerObj is the element which is added, and container A, is the parent container.
Generally, if...
I had similar problem, i was not specifying the DOCTYPE, so i used
<!doctype html>
in my index.html and it worked for me.
You can add a container to your center and add panels to it. Use autoScroll instead of increasing the height. Assign all the available height to your container and use anchor layout with style...
The type of looks and feel provided in that video was implemented in ruby in rails. I want to achieve something similar in ExtJs 4.1.1 for a client requirement. Need some idea regarding that
I guess, in the editor u have not given allowDecimals:false
Try with that. It should be like i explained
I have edited the example at...
Hi All,
I am trying to implement something similar to BaseCamp project management UI in ExtJs The linkhttp://vimeo.com/36917486 describes it. See the image attached for detail
How to achieve it....