Tagged Questions
1
vote
1answer
489 views
GridPanel as item of tabPanel
I'm having trouble knowing if I syntactically have this setup right. From another thread, I understand to add the GridPanel to the tabBar items, which I do so below. In my App.js, I define a grid ...
1
vote
2answers
745 views
ExtJS AJAX TabPanel tab load event?
Is there any way to add an event listener to the load/update event of a ajax based tabpanel in ExtJS v3.3.1? I need an event that fires after the tab content is retrieved and fully rendered, not right ...
1
vote
2answers
927 views
ExtJS 3.2.0, hide tabpanel's header
PLs tell me how i can hide header of tabpanel "..." if my tabpanel have only one tab?
I can't use Ext.Panel becose I use fairly sophisticated methods for generating extjs code on the server, and ...
1
vote
1answer
631 views
ExtJS Tabpanel and JSON data not loading?
I am using a tabpanel with two panels, where I am retrieving data through JSON. Retrieving data in the first tabpanel seems to work great, however, I can't parse the data retrieved from the JSON in ...
1
vote
1answer
871 views
ExtJS TabPanel content does not shrink in IE6
I'm using ExtJS 3.2 and have content inside of a tab panel, and the tab panel inside of a container in a Viewport. The actual TabPanel resizes correctly on the viewport size changes, but the content ...
1
vote
3answers
9k views
Extjs gridpanel doesn't expand horizontally within a tabPanel
Each of my 3 Extjs gridpanels do not expand horizontally within a tabPanel.
The each grid's properties:
id: grid_id,
ds: ds,
cm: cm,
loadMask: true,
view: grouping_view,
...
0
votes
2answers
103 views
Extjs4 tabpanel, disable all child item withuot looping them
is there are any way to disable all child items on Extjs4 tab panel, without looping them.
my code:
var myPanel = new Ext.TabPanel({
region: 'east',
title: 'my panel title',
width: 200,
...
0
votes
2answers
227 views
ExtJS4 - Extending Ext.tab.Panel to prevent setting of height values
I am migrating an application from ExtJS 3.x to v4 and have been having some troubles with the TabPanel's now that the "autoHeight" property has been removed. I know that if you do not explicitly ...
0
votes
1answer
179 views
Creating an “auto height” TabPanel in ExtJS 4 that is rendered to non-extjs HTML?
This was pretty easy to do in 3.x, simply by setting the "autoHeight" property of the TabPanel and the same for its children items via the "defaults" config. However it I have yet to seen a way to ...
0
votes
1answer
236 views
How to get child component of an active tab of a tabpanel in extjs4?
I have a simple tabpanel. I want to fetch currently active tab's child components and destroy them and doLayout(). The following code won't work:
...
0
votes
2answers
105 views
Adding non-selectable text tab to Ext.TabPanel?
I'm trying to create a TabPanel that has a text header just beside the tabs. That is, instead of
|Tab1|Tab2|Tab3|Tab4|, I want Text Here |Tab1|Tab2|Tab3|Tab4|
The text shouldn't be selectable as a ...
0
votes
1answer
266 views
Sencha Touch: Toolbar inside of TabPanel
I'm new to Sencha Touch and just trying to put a Toolbar inside of a TabPanel.
I do that because the TabPanel will be my main navigation and the Toolbar will provide several content-related ...
0
votes
1answer
107 views
ExtJs3: how to make closable tab of tabpanel not closable and back?
I want to be able to hide 'x' button near the tab title and to be able to show it back without a low level code manipulating DOM but using component level api functions if it is possible.
0
votes
1answer
89 views
ExtJs : How to use existing page in Tabpanel or panels
I have a question. Of late I have created different pages using ExtJs with backend database. Now I want to put things all together. How can I create a main page that is a view port and its regions are ...
0
votes
1answer
573 views
How to get a tabpanel inside a viewport with the ExtJS 4 class model?
I got problems with the extjs 4 class model. I want to get a tabpanel within a viewport. I get it running by defining a own element and auto loading it with xcode. But I'm not getting it done inside ...
0
votes
0answers
437 views
ExtJS Problem with combobox dropdown width in tabpanel
I have a tabpanel and combobox in it
On first tab the comboboxes render perfectly i.e the dropdown list width is the same as of combobox
But on second, third tab the dropdown list width is narrower ...
0
votes
1answer
2k views
JSON data not showing when grid in dynamic tab?
My grid isnt showing data when put to tab. This grid, store, model, JSON are working when renderd to body or div, or as a part of a viewport. Only not showing when put in tab, that is also created ...
0
votes
1answer
412 views
IE, Ext.TabPanel, and iFrame
Here is the case:
I have a page with an iFrame whose src points to another aspx page(same domain). The page the iFrame points to loads scripts that render Ext.TabPanel with some tabs in it. So, the ...
0
votes
2answers
724 views
Binding click events to a Tab in Ext JS
Aloha again, SO.
I'm busy working on a project that is pretty much all ExtJS for the frontend work. I'm using version 4.0.0, presuming that is something necessary to know. I've got some code along ...
0
votes
0answers
316 views
Buttons are not showing up using Ext.form.Panel in Ext JS 4.0.0
Aloha again, stackoverflow.
I'm experiencing a bit of an interesting situation here. I was previously using a setup that used a tab panel in order to display all of my content, but now, I'm rewriting ...
0
votes
1answer
870 views
Error adding and removing content to tabPanels - ExtJs
I have a web app built using ExtJS framework.
I have a tree in my west panel, and in the center panel a TabPanel. When I click on any of the nodes on the tree in the west panel it attempts to add a ...
0
votes
2answers
249 views
Why does my gridPanel in a tabPanel show the wrong height?
In the attached image, the grid does not show properly. The grid is inside a tabpanel. The layout of the tab is = 'fit'.
What setting error is causing the behavior?
EDIT:
Here is the class ...
0
votes
0answers
413 views
EXTJS AND PHP: how to fix tabPanel when close and re'display but no content
var test = new Ext.Panel({
//id: 'aaaa',
title : 'samplea',
layout:'fit',
html:'dasfasdf asdf asdfasf'
});
var aa2 = new Ext.Panel({
...
0
votes
1answer
1k views
ExtJs TabPanel Scrollbar behaviour if Tab items bigger than tab size
i need to make works this simple example to understand the behaviour of TabPanel.
I have read a lot of thread about it and the answer is often
-make the item (grid in this example) directly child of ...
0
votes
1answer
467 views
ExtJS and FormPanel: re-load doesn't work (going through the same code)
I've got a problem I really can't solve.
Here's my goal: I want to add dynamically Tabs to a TabPanel.
I've created my own component called EmpruntsTabPanel()
And when I create it I just have to give ...
0
votes
3answers
716 views
ExtJS, FormPanel, and TabPanel component: post doesn't send all the fields
Here's my problem: as long as the tabs are not shown, the data contained within the tabs are not sent. If I click on a tab, the data is added to the "stack" and is sent through the post event. (See ...
0
votes
0answers
234 views
how to close tabpanel in GWT
hii,
I have using two tabpanels(GWT EXT) in my web page,first panel is closable,inside it agaian i am using one more tabpanel.its not closable.when i try to close the first tabpanel content is going ...
0
votes
1answer
263 views
How to insert and show element inserted in panel with extjs
I want insert new a element in panel, the insert is good but hide.
If I want show my update I can change the current panel of tabpanel and rewind into my panel modified...
I search to view directly ...
0
votes
1answer
394 views
0
votes
1answer
393 views
extjs 3 - Check which tabs are hidden and which are not in tabpanel
I have a tabpanel where some tabs are hidden. How can i check which tabs are hidden and which are not.
For example:
- There are 5 tabs tab1, tab2, tab3, tab4, tab5. tab2 and tab4 are hidden.
- if i m ...
0
votes
1answer
666 views
Extjs TabPanel Auto Height is not working in IE
Extjs TabPanel is Working on FireFox, Chrome & Safari with autoHeight While not in IE.
0
votes
2answers
2k views
How can I update the content of a tab in an ExtJS TabPanel?
I have a tab panel like this:
var tab1 = {
id: 'section1',
title: 'First Section',
padding: 10,
html: '(this content will be replaced with an ajax load)'
}
var tab2 = {
id: ...
0
votes
3answers
795 views
Extjs: Reuse the same grid in TabPanel
in a Extjs application I have a Grid and a Tabs line over it. Content of the Grid depends on the selected Tab.
Say tabs has Jan-Feb-Mar-... values. Clicking of the Tab I would reload grid's store
...
0
votes
2answers
319 views
How can I attach an react to user clicking on tabs in Ext.TabPanel
When I want to react to the user selecting a row on a grid, I use this:
var grid = new Ext.grid.GridPanel({
region: 'center',
...
});
grid.getSelectionModel().on('rowselect', function(sm, ...
0
votes
2answers
2k views
How to get height of Ext.Panel to fill parent area
I have the following Ext.TabPanel:
var modules_info_panel = new Ext.TabPanel({
activeTab: 0,
defaults:{autoScroll:true},
//layout: 'fit', // makes component disappear
viewConfig: {
...
0
votes
0answers
378 views
How to handle beforetabchange event?
I am using ext.js tab panel of coolite. How to handle the beforetabchange event in case of tab panel. Please help me with some sample codes.
thx in advance
EDITED:
Here is the following html code and ...
0
votes
1answer
671 views
extjs submit tabpanel under formpanel?
layout:window-->tabpanel-->formpanel.
if i want submit formpanel,but have a lot formpanel,
i don't know how to do!
is layout problem ?
i'm java programmer.i use struts2+extjs...
0
votes
2answers
645 views
extjs show validation when switching tabs
HI,
I hope somebody can help me here with the extjs framework.
The problem I am having is that the field validation is not being rendered for the tabs that are not visibele on initialisation off the ...
0
votes
1answer
516 views
Panel does not expand vertically in a TabPanel
Using Extjs, I've got a TabPanel containing two Panels. Those panels do not automatically expand vertically. All layout are set with type 'fit' and forceFit is true.
I've pastebin my code here: ...