Search Type: Posts; User: wiulma
Search: Search took 0.03 seconds.
-
3 May 2013 3:11 AM
- Replies
- 5
- Views
- 195
Hi guys!
I'm new to extjs4 and mvc, but not to Extjs.Until now I have developed with extjs3.
I have a single page app, with toolbar in the viewport north region, and a center region.
When I click... -
13 Oct 2010 8:19 AM
Jump to post Thread: how to read cell value rendered by wiulma
- Replies
- 4
- Views
- 1,421
ok it works!
-
13 Oct 2010 7:56 AM
Jump to post Thread: how to read cell value rendered by wiulma
- Replies
- 4
- Views
- 1,421
ok...now I have this code:
int col = grid.getColumnModel().getIndexById(idColumn);
...
// row=0, col=4
String app = grid.getView().getCell(row, col).getInnerHTML();
but I obtain this... -
13 Oct 2010 5:00 AM
Jump to post Thread: how to read cell value rendered by wiulma
- Replies
- 4
- Views
- 1,421
Hi!
I have to read the cell value in a grid view. (the rendered value, not the store value)
And I would like to read the cell value of the selected rows (by getSelectionModel().getSelectedItems()).... -
12 Oct 2010 9:11 AM
Jump to post Thread: serialize grid models by wiulma
- Replies
- 1
- Views
- 940
Hi guys!
I need submit a form with grid store serialized.
the grid model implements java.io.Serializable, but I haven't found how serialize the model to xml (in client side)
The form (with blank... -
14 Jun 2010 6:17 AM
Jump to post Thread: borderlayout problem by wiulma
- Replies
- 0
- Views
- 538
Hi!
I have a BorderLayout.
When I click a Button I'd like to create the east region programmatically and float it with slideIn affect, without resize the center region.
In the Border Layout... -
9 Jun 2010 6:37 AM
Jump to post Thread: rowExpander xTemplate issue by wiulma
- Replies
- 0
- Views
- 834
Hi!
I have a model map.
It has some properties and one of these is an Item (a map object, called F).
In the grid i'd like to render a field of F (for example F.description).
Now, if F is not null... -
14 May 2010 12:34 AM
Jump to post Thread: initialize component with configs by wiulma
- Replies
- 1
- Views
- 780
Hi!
In extjs I could initialize component with an array of costom properties
var arrConfig = new Array();
arrConfig ['width'] = 100;
arrConfig [id] = 'id';
...
var pnl = new... -
28 Apr 2010 4:07 AM
Jump to post Thread: Ext.Panel keypress event by wiulma
- Replies
- 1
- Views
- 1,111
Hi!
I would like to call a javascript function when the focus is in a specific panel (Ext.Panel, not Ext.FormPanel) of the page and I press the return key.
How can I do this?
thanks! -
21 Apr 2010 1:46 AM
Jump to post Thread: FileUploadField in gridPanel by wiulma
- Replies
- 0
- Views
- 825
I'd like to have a column with file upload.
any suggestion?
thanks! -
7 Apr 2010 6:09 AM
Jump to post Thread: override element's event by wiulma
- Replies
- 0
- Views
- 453
Hi!
I have to write a custom event (click event) that have to execute the default event code, and then execute custom code.
I defined a custom gridcolumn:
Ext.grid.CheckColumn =... -
30 Mar 2010 12:27 AM
- Replies
- 2
- Views
- 833
thanks...
I used "items.add" instead of "add" method.
I have also added fit layout to childs panel.
Now all is ok.
thanks! -
29 Mar 2010 7:02 AM
- Replies
- 2
- Views
- 833
Hi!
I have a tabPanel with many tab (tabA, tabB,...) with layout fit.
When I activate a specific tab (tab B I have to destroy every tab child and add a new Border layout programmatically.
Is... -
18 Mar 2010 8:00 AM
- Replies
- 0
- Views
- 468
Hi!
My page has a tabPanel, each tab has an editor grid panel. Each grid has an id property.
The grids have all the same column model, so I'd like to define only one column model, and apply it to... -
12 Mar 2010 9:05 AM
Jump to post Thread: multiple EditorGridPanel problem by wiulma
- Replies
- 2
- Views
- 672
I define so the columnmodel:
var columnModelConfig = {
columns:[
...
{
id: 'tipoQualifica',
dataIndex: 'TIPO_QUALIFICA_OGGETTI',
header: 'Tipologia', -
12 Mar 2010 3:33 AM
Jump to post Thread: multiple EditorGridPanel problem by wiulma
- Replies
- 2
- Views
- 672
I'm working in editgrid example.
Now...
If I create the grids in this way it works fine:
var grid = new Ext.grid.EditorGridPanel({
store: store,
cm: new... -
12 Mar 2010 3:03 AM
Jump to post Thread: multiple EditorGridPanel problem by wiulma
- Replies
- 2
- Views
- 672
Hi!
I have a page with many tabs, every tabs have an EditorGridPanel.
The problem is that if I try to edit the first column in each EditorGridPanel I can do it only in the first one.
Now the code.... -
9 Mar 2010 6:30 AM
- Replies
- 0
- Views
- 592
Hi!
I have an EditorGridPanel.
One column is a custom CheckColumn, with some hidden html fields.
...
renderer
:function(v, p, record){
this.on('click',this.onClick,this); -
3 Mar 2010 8:08 AM
- Replies
- 0
- Views
- 491
Hi!
I would create a grid, with a custom CheckboxSelectionModel, witch have some input hidden in each row, and these need some parameter that I have to initialize programmatically while I define the... -
17 Feb 2010 6:52 AM
Jump to post Thread: panel destroy problem by wiulma
- Replies
- 5
- Views
- 1,751
I have resolve by a function that find every component that has my panel as parent, but some components like combo or datefield seems not work.
So, I have added a config options (isFormField):
... -
15 Feb 2010 1:40 PM
Jump to post Thread: panel destroy problem by wiulma
- Replies
- 5
- Views
- 1,751
thanks!
now...I can't use pure HTML because every page has many ext component (panels, trees, combo, exc...) and when I click on a menu node I call a single standalone page.
So I need to destroy... -
11 Feb 2010 10:15 AM
Jump to post Thread: panel destroy problem by wiulma
- Replies
- 5
- Views
- 1,751
Hi!
I have a problem refreshing main Panel.
the main panel is:
var mainPanel =new Ext.Panel({
id:'mainPanel',border:false, -
11 Feb 2010 1:01 AM
Jump to post Thread: gridPanel mask by wiulma
- Replies
- 2
- Views
- 1,300
now it works!
thanks!! -
10 Feb 2010 9:04 AM
Jump to post Thread: gridPanel mask by wiulma
- Replies
- 2
- Views
- 1,300
Hi!
I would like to mask my gridPanel while store load data.
I create the gridPanel and the store in different moment, then after some control function the store is loaded.
Before I load the store... -
8 Feb 2010 7:18 AM
Jump to post Thread: GridFilter - StringFilter onchange by wiulma
- Replies
- 0
- Views
- 508
Hi!
I have a grid with StringFilter column.
I would like to call a function when change the filter value (like the onchange event in the input text).
How can I do this?
thanks!
Results 1 to 25 of 119
