Search Type: Posts; User: Carel
Search: Search took 0.02 seconds.
-
8 Nov 2007 1:26 AM
- Replies
- 9
- Views
- 11,473
and with a hard-coded store I do this
myCombo.setValue(valuesToSelect) -
5 Nov 2007 7:23 AM
Jump to post Thread: combobox not showing items by Carel
- Replies
- 1
- Views
- 1,140
Solved but an inline version would be nice too, like store.add(['c','ccc']), much less verbose, but anyway for anyone
Ext.onReady(function(){
// simple array store
var store = new... -
2 Nov 2007 3:13 AM
Jump to post Thread: simple ComboBox operation??? by Carel
- Replies
- 0
- Views
- 874
In the snippet below I would like to have the addSomething() function add new stuff to the combo box and of course the combo box should show the new stuff but I fail to achieve that. The new record...
-
29 Oct 2007 6:38 AM
Jump to post Thread: combobox not showing items by Carel
- Replies
- 1
- Views
- 1,140
Trying to create a 'dialog' to enter filter values using http://extjs.com/deploy/dev/examples/window/hello.html as a base but this time if construction of the dialog is done in a button click handler...
-
25 Oct 2007 3:59 AM
Jump to post Thread: Ext Sightings by Carel
- Replies
- 190
- Views
- 151,020
I'd like very much to keep my stuff to myself on my own disks and what have you, so sorry ajaxwindows, you're a no-go area for me and my things
-
12 Oct 2007 6:37 AM
- Replies
- 0
- Views
- 692
A simple FormPanel with just one field and a button stand alone on a page render properly on FireFox but not so on IE7 and I am wondering what I am doing wrong. The attached jpg shows FF on top and...
-
11 Oct 2007 11:15 PM
- Replies
- 2
- Views
- 1,228
Resolved, my mistake, it was directory security that made IIS refuse to serve, the gist behind my thought was the experience I had going from 1.1.1 to alpha1. The page now shows up ok at least.
-
11 Oct 2007 11:04 PM
- Replies
- 2
- Views
- 1,228
Just to share, the play with alpha1 finally got ok again after fixing several broken bridges (GRid->GridPanel etc) and now with beta1 the same thing happens (first error, Firebug says 'Ext is not...
-
5 Oct 2007 1:51 AM
Jump to post Thread: PagingToolbar by Carel
- Replies
- 1
- Views
- 853
found solution here: http://extjs.com/forum/showthread.php?t=14033
-
5 Oct 2007 12:11 AM
Jump to post Thread: PagingToolbar by Carel
- Replies
- 1
- Views
- 853
Maybe call me stupid ;-) but I am trying to get a PagingToolbar to show for my GridPanel and failed sofar. Is there a simple example I can use to see how to go about this? (Btw, it worked with 1.1...
-
28 Aug 2007 7:17 AM
Jump to post Thread: PageBus for Ext? by Carel
- Replies
- 10
- Views
- 4,875
Just decoupled some containers by putting the pagebus in between and so far so good. I like it. IMHO it really is just a simple thingy so it does not matter much what you use for this.
-
27 Aug 2007 11:54 PM
Jump to post Thread: ext 1.1, grid paging, last page by Carel
- Replies
- 6
- Views
- 1,336
The previous suggestion about 'serilaizing' seems to make sense, I have reduced the number of errors changing from
do async request A
do async request B
to
do async request A
on... -
27 Aug 2007 6:24 AM
Jump to post Thread: ext tree & jayrock web service by Carel
- Replies
- 8
- Views
- 1,953
For NHibernate there is plent of information out there on the web, please have a good look around. Then, I am not using NHibernate or another brand of ORM so I can not tell much about that, sorry.
-
23 Aug 2007 8:02 AM
Jump to post Thread: ext 1.1, grid paging, last page by Carel
- Replies
- 6
- Views
- 1,336
Thankfully there are no bad effects other than just the indicator that states there is an error for the case mentioned.
The error happens more often at unpredictable moments, the one I mentioned... -
23 Aug 2007 6:56 AM
Jump to post Thread: ext 1.1, grid paging, last page by Carel
- Replies
- 6
- Views
- 1,336
It is the same error as in:
http://extjs.com/forum/showthread.php?t=4923
The error seems FF specific (2.0.0.6 overhere), IE has no problem :((
In FF the problem disappears when I put a... -
23 Aug 2007 3:34 AM
Jump to post Thread: ext 1.1, grid paging, last page by Carel
- Replies
- 6
- Views
- 1,336
ext 1.1, grid paging, last page has less records than page size gives an error like the ones you get when a call cannot be made because of a bad call signature
if the last page has the same number... -
23 Aug 2007 2:59 AM
Jump to post Thread: ext tree & jayrock web service by Carel
- Replies
- 8
- Views
- 1,953
The service is an ashx that references and uses the jayrock dll. It exposs methods like so:
[JsonRpcMethod("greetings", Idempotent = true)]
public string Greetings()
{
... -
17 Aug 2007 2:40 AM
- Replies
- 16
- Views
- 6,768
I added
attr.href = "javascript:void(0)";
in the createNode method et voila. -
16 Aug 2007 11:42 PM
Jump to post Thread: ext tree & jayrock web service by Carel
- Replies
- 8
- Views
- 1,953
Well, I hacked together something and it works. There is probably a lot to be improved upon my 'solution' and you are more than welcome to improve on this =D>
Here is the script for a page with... -
16 Aug 2007 5:21 AM
Jump to post Thread: ext tree & jayrock web service by Carel
- Replies
- 8
- Views
- 1,953
Maybe a snip will help a bit:
var tree = new Tree.TreePanel('tree-div', {
animate:true,
loader: new Tree.TreeLoader({
dataUrl: 'someurl.php'
}),
enableDD:true,
... -
16 Aug 2007 2:48 AM
Jump to post Thread: ext tree & jayrock web service by Carel
- Replies
- 8
- Views
- 1,953
The example given for combining jayrock and grids is really marvelous, a jayrockified web service provides json to the grids and that is way cool. How about a tree? I only see a data url property...
-
9 Jul 2007 7:11 AM
Jump to post Thread: jayrock and ext happy together by Carel
- Replies
- 18
- Views
- 4,626
Finally got around to playing a little bit more and got it to work as I wanted. It was not something that happened straight away which is indicative of the current state of affairs.
In relation to... -
25 Jun 2007 2:29 AM
Jump to post Thread: jayrock and ext happy together by Carel
- Replies
- 18
- Views
- 4,626
Much appreciated.
To give a little more info on what I had in mind,
- I know in some context one can replace the uri of a ref with 'javascript:foo();',
- HttpProxy takes an uri and... -
22 Jun 2007 6:31 AM
Jump to post Thread: jayrock and ext happy together by Carel
- Replies
- 18
- Views
- 4,626
Next thing I'd like to try is having an ext grid pulling its data from a jayrock service. Using a direct call to an html page with a parameter identifying what should be returned as a json collection...
-
22 Jun 2007 4:02 AM
- Replies
- 3
- Views
- 1,119
Hi all,
adding method:'GET' solved that, thank you very much.
Now I am going to play a little with the combination of jayrock and extjs, a combination that I like a lot for different reasons.
...
Results 1 to 25 of 41
