Search Type: Posts; User: Bobafart
Search: Search took 0.03 seconds.
-
24 May 2007 5:42 PM
- Replies
- 3
- Views
- 1,403
You missed something vital in the above post.
-
22 May 2007 5:19 PM
- Replies
- 3
- Views
- 1,403
For a while now I have been trying to refresh a layout dialog when opened from an editable grid.
I and other people in the community have been unable to solve this problem.
So I thought I would... -
21 May 2007 2:42 PM
- Replies
- 12
- Views
- 3,219
thanks for the reply.. I have tried that as well and it doesn't refresh the dialog
I have pasted the nocache: true code here:
http://gabbr.com/c/departmentofdefense/army/indexExt5.php -
20 May 2007 4:42 PM
- Replies
- 12
- Views
- 3,219
Hi Jason,
thanks for the reply.
the problem I am having isn't with refreshing of the grid -- it is refreshing of the dialog box.
correct me if I am wrong but your idea is references refresh... -
19 May 2007 3:56 PM
- Replies
- 12
- Views
- 3,219
anyone else have any ideas on this pulease?
-
19 May 2007 12:30 PM
- Replies
- 12
- Views
- 3,219
thanks for the reply.
the dialog gets created/loaded in the following function:
function openDialog(grid, rowIndex, colIndex, e) { ... } -
19 May 2007 9:51 AM
- Replies
- 12
- Views
- 3,219
Hmm.. this is interesting.
I got rid of the lazy creation of the dialog to see what would happen:
http://gabbr.com/c/departmentofdefense/army/indexExt5.php
Unfortunately, the more dialogs... -
19 May 2007 9:09 AM
- Replies
- 12
- Views
- 3,219
I have successfully created an editable grid where, if you click a specific column, a Layout Dialog pops up and async loads data based on the item clicked.
It works for the first click.
The... -
18 May 2007 10:30 AM
- Replies
- 3
- Views
- 2,973
does anyone have a working example of a grid that allows the user to click a column of the grid and a Layout Dialog opens with more detailed information asyncronously loaded into the Layout Dialog...
-
18 May 2007 7:46 AM
- Replies
- 9
- Views
- 1,651
Can someone else give me a hand with this? Preferrably someone with some politeness?
I am unsure how to tackle the problem I posted 2 posts above this one.
If someone can point me to an... -
18 May 2007 6:52 AM
- Replies
- 9
- Views
- 1,651
I am using Ext.LayoutDialog.
I am trying to insert the XML data in the Layout Dialog based on the table column that is clicked. I have a column of soliders for a web game I am making for fun. If... -
17 May 2007 12:45 AM
- Replies
- 9
- Views
- 1,651
Needless to say I tested it and played around with it.
dialog.load is not a function is the repeated error I get.
Can someone please give me some advice on how to utilize this? -
16 May 2007 3:52 PM
- Replies
- 9
- Views
- 1,651
I am trying to open a layout dialog that async loads XML data when the user clicks a row in a grid. The XML data that async loads changes based on the troopId column of the grid that was clicked.
... -
2 May 2007 6:20 PM
- Replies
- 5
- Views
- 2,370
Amen to that brother! User friendliness is a shortcoming with Extjs
-
2 May 2007 6:15 PM
- Replies
- 9
- Views
- 1,651
I have an addListener for my grid. When the user clicks on a cell I want the layout dialog to update with the data from the cell click row.
My addListener code is partially here:
... -
2 May 2007 5:36 PM
- Replies
- 1
- Views
- 939
I am trying to create a hidden column in my grid columnModel:
var cm = new Ext.grid.ColumnModel([
{header: "SoldierID", isHidden: true, dataIndex: 'troopId'},
with that code the... -
2 May 2007 10:26 AM
- Replies
- 14
- Views
- 2,392
[QUOTE=TopKatz;27595]you need to add the listner in the grid code, not the dialog, and it needs to hapen before you render it:
grid.addListener("rowclick", rowClicked, this);
grid.render();
... -
2 May 2007 10:23 AM
- Replies
- 1
- Views
- 1,086
I created an editor grid and in my columnModel I have a combobox.
The grid loads fine with no errors.
How do I make an async request to update my backend database if the user decides to... -
2 May 2007 10:10 AM
- Replies
- 14
- Views
- 2,392
The below code loads fine with no errors.
The selectionModel.getSelected is not a function error occurs only when the cell is clicked (and the addListener is activated):
<script... -
2 May 2007 9:13 AM
- Replies
- 14
- Views
- 2,392
Bummer. I put it in the same order as you and it still outputs the same error.
Hmm.. -
2 May 2007 8:01 AM
- Replies
- 14
- Views
- 2,392
Hmm weird.. I keep getting this error:
Error: selectionModel.getSelected is not a function
I am looking for getSelected in the docs and I can't seem to find it either. I wish there was a... -
2 May 2007 7:49 AM
- Replies
- 14
- Views
- 2,392
gotcha. thanks! much appreciated.
using your advice now. -
2 May 2007 7:39 AM
- Replies
- 14
- Views
- 2,392
Hi TopKatz,
thanks for your help.
I am trying to get the database ID of the row that was clicked, not the number of the row clicked.
So, using my above example if soldier "Joe" is ID = 3 in... -
2 May 2007 6:50 AM
- Replies
- 14
- Views
- 2,392
I have made a grid with the following structure:
id(not shown) | Soldier Name | Soldier Specialty
3 | Joe | Sniper
7 | Mack | Heavy Weapons
The first column is not actually shown, it is... -
30 Apr 2007 2:46 PM
- Replies
- 5
- Views
- 1,733
for this line:
var myRec = myStore.getAt("rowIndex");
I assume "myStore" is the name of your grid, right?
Also, where is "getAt" located in the documentation?
Results 1 to 25 of 115
