Search Type: Posts; User: kjordan
Search: Search took 0.03 seconds.
-
16 Jan 2013 2:55 PM
- Replies
- 5
- Views
- 1,593
Looks like fixing the LiveGridView issue is as easy as extending it and putting a flag around the super.updateRows call:
@Override
protected void updateRows(int newIndex,
boolean... -
15 Jan 2013 6:57 PM
- Replies
- 5
- Views
- 1,593
Has anyone used the LiveGridView under GWT 2.5? I seem to be getting an infinite update loop:
com.google.gwt.core.client.JavaScriptException: (RangeError) : Maximum call stack size exceeded
... -
9 Apr 2007 11:09 PM
Jump to post Thread: firebug by kjordan
- Replies
- 12
- Views
- 2,665
I don't know if I find Firebug slower, but Firefox does seem to get slower as it stays open. Perhaps they are related, I don't know.
-
9 Apr 2007 4:05 AM
- Replies
- 7
- Views
- 2,441
Set a renderer:
{header:"blah" ...
renderer: renderBlah},
var renderBlah = function(v,p,r) {
return r.data['devCode'];
} -
6 Apr 2007 7:05 AM
- Replies
- 8
- Views
- 2,031
I think it's probably because inline scripts are evaled and srced scripts are put into the header (which are executed when added).
-
6 Apr 2007 6:52 AM
- Replies
- 8
- Views
- 2,031
Actually if you look at update, the first argument can be an object the way he has it. The second argument is params which are encoded and passed to the url.
-
6 Apr 2007 6:41 AM
- Replies
- 8
- Views
- 2,031
Are your scripts actually getting executed when they are loaded? Add an alert in the body of the script (i.e. not in a function). Also try putting it in another file and srcing to that file and see...
-
6 Apr 2007 3:54 AM
- Replies
- 7
- Views
- 2,441
Not sure I understand, but are you wanting to have the grid submit one value, but display another?
-
6 Apr 2007 3:49 AM
Jump to post Thread: yui-utilities.js vs. utilities.js by kjordan
- Replies
- 2
- Views
- 1,748
yui-utilities.js is a cut down version of utilities.js for what Ext needs from it. You can use Yahoo's version, but be aware that the latest version of it might not always work with Ext.
-
5 Apr 2007 8:31 PM
Jump to post Thread: ComboBox Values by kjordan
- Replies
- 3
- Views
- 1,650
1. Use combo.getValue();
2. It would be Ext.get('ftt').dom.value, but use the getValue function in Combo.js
3. You might look into using Jack's Form class (although he says it's still rough and... -
5 Apr 2007 10:57 AM
Jump to post Thread: Form class? by kjordan
- Replies
- 7
- Views
- 3,891
Ah, I see now, that happens when you specify a hiddenName which then makes a hidden input field which gets the value.
-
5 Apr 2007 8:43 AM
Jump to post Thread: Form class? by kjordan
- Replies
- 7
- Views
- 3,891
Jack, are there any plans to make the form submit the valueField for a combobox instead of the value inside the input field (displayField)? I realize though that at the moment it is using Yahoo's...
-
3 Apr 2007 8:42 AM
Jump to post Thread: Form class? by kjordan
- Replies
- 7
- Views
- 3,891
Ah, thanks.
-
3 Apr 2007 7:50 AM
Jump to post Thread: Form class? by kjordan
- Replies
- 7
- Views
- 3,891
I'm trying to figure out how to add elements to a Form object, but without success so far.
If I do it:
this.partForm = new Ext.Form(createPartForm);... -
1 Apr 2007 8:20 PM
- Replies
- 4
- Views
- 1,989
I haven't had a chance to modify my code to use beta 1 yet, but what happens if you make your own editorgrid? Jack has said that all the examples haven't been updated yet, so maybe you're running...
-
1 Apr 2007 8:18 PM
Jump to post Thread: Licensing Question by kjordan
- Replies
- 9
- Views
- 2,062
I think distribution in this sense is for repackaging. You need only worry about them if you're selling or distributing an app with ext inside it (i.e. the source and stuff is in there and not just...
-
1 Apr 2007 4:58 PM
Jump to post Thread: Ext JS 3.1 FINAL Available by kjordan
- Replies
- 120
- Views
- 137,532
Ah, those are always fun :D
Hmm, been a while since I was on a vBulletin board, looks like they use Yahoo smileys now. -
1 Apr 2007 3:48 PM
Jump to post Thread: Ext JS 3.1 FINAL Available by kjordan
- Replies
- 120
- Views
- 137,532
What's been added to beta 1? It seems drag and drop works again in the examples, but what else has been changed/added?
-
28 Mar 2007 3:35 PM
- Replies
- 6
- Views
- 2,556
No, actually the HTML select is completely removed and replaced with a TriggerField (namely ComboBox) which consists of an HTML text input and a trigger (the arrow). So submitting a form or getting...
-
28 Mar 2007 3:14 PM
- Replies
- 4
- Views
- 1,702
Are you wanting to stop single clicks as well? Or just double clicks? You might try on('dblclick',...), but I don't know if Jack made that specific to stuff like Grid.
-
28 Mar 2007 3:09 PM
- Replies
- 2
- Views
- 3,875
Are you loading all their datastores at the start? That may explain a lot of the calls. Just do a load when the panel is activated.
-
28 Mar 2007 3:05 PM
- Replies
- 6
- Views
- 2,556
Are you submitting it through a form? Or using asynchronous calls? As far as the second one, that would be nice too, but it's really just a stylized input box, so I doubt that will happen. In that...
-
27 Mar 2007 6:43 PM
Jump to post Thread: editor grid iteration? by kjordan
- Replies
- 1
- Views
- 970
for (i = 0; i < ds.getCount(); i++) {
var record = ds.getAt(i);
//print out each column in record
alert(record.data['columnName1']);
} -
25 Mar 2007 7:54 PM
- Replies
- 5
- Views
- 1,879
The second argument to your callback also says whether it was successful (true) or not (false).
-
24 Mar 2007 2:33 PM
Jump to post Thread: Next Revision - Curious by kjordan
- Replies
- 7
- Views
- 2,619
He must be working hard on it since I haven't seen him much on the forum the past few days.
Results 1 to 25 of 114
