Search Type: Posts; User: TomChiverton
Search: Search took 0.02 seconds.
-
29 Mar 2010 12:28 AM
- Replies
- 31
- Views
- 10,825
I use this framework less because modern CFML engines allow CFCs to be invoked and return JSON formatted objects trivially.
If you need to perform common or repeatable transforms to make your CFCs... -
18 Dec 2009 6:11 AM
- Replies
- 34
- Views
- 22,128
I ran over my project recently with the VarScoper tool, and it found a few missed vars.
Patch attached. -
9 Dec 2009 2:34 AM
- Replies
- 413
- Views
- 162,761
Given the following to invoke a JSON-returning page (Ext 3):
var response = Ext.Ajax.request({
url:'/extDirect/isTimeBetween.cfm',
method:'GET',
async:... -
9 Dec 2009 2:17 AM
- Replies
- 6
- Views
- 1,680
Ah ha.
If I trace out the connections readyState (response.conn.readyState), then it's '4' ('OK') in FireBug but '1' without the debugger on !
Seems like the request isn't complete even though the... -
8 Dec 2009 8:48 AM
- Replies
- 6
- Views
- 1,680
Scratch that. It only works in the FireBug debugger (!)
If I do this
...........
console.log('check isvalid back');
if(response && response.conn.statusText == 'OK'){
... -
8 Dec 2009 8:30 AM
- Replies
- 6
- Views
- 1,680
Instead (using Ext 3.0 and old basex 2.3) you seem to need to do:
Ext.form.VTypes["timeDetails"]=function(v, field){
var response = Ext.Ajax.request({
url:'/foo.cfm',
... -
8 Dec 2009 1:37 AM
- Replies
- 870
- Views
- 257,544
I'd be tempted to rewrite that line so it's less compact and more readable, set a break point, and see what the values of the various parts are.
-
7 Dec 2009 2:02 AM
- Replies
- 6
- Views
- 1,680
response.responseText isn't present in newer versions of basex ?
-
7 Dec 2009 1:30 AM
- Replies
- 870
- Views
- 257,544
That's spot on, cheers ! Looks like the examples at the start of the thread are a bit out of date.
-
4 Dec 2009 5:59 AM
- Replies
- 870
- Views
- 257,544
Your Ext version and MIF versions aren't compatable. Note that MID 2.1 requires Ext 3.1 for instance.
-
3 Dec 2009 2:16 AM
- Replies
- 870
- Views
- 257,544
On FireFox 3.5, with Ext 3.0 and the matching ManagedIframe class, the following code works as expected to create tabs with IFRAME's for the content of each.
However, it also places the 2nd IFRAME... -
27 Nov 2009 8:01 AM
- Replies
- 6
- Views
- 3,343
I went with the 2nd form, not wanting to dig into the guts of the Ext Direct ColdFusion connector to find out.
Using that last form appears to clobber the 'result' argument (a break point in... -
27 Nov 2009 6:51 AM
- Replies
- 6
- Views
- 3,343
Well, I have the same problem (the result handler has no context to work with).
Code called from somewhere inside a custom ExtJS component:
Ext.coldfusion.LookupCFC.checkClient("f8923s",
... -
23 Nov 2009 2:31 AM
Jump to post Thread: RowEditor plugin by TomChiverton
- Replies
- 5
- Views
- 2,452
Is there not a contributor agreement or anything ? Doesn't seem an easy way for other to benefit if they have to search for an apply their own patches all the time...
-
12 Nov 2009 1:58 AM
Jump to post Thread: RowEditor plugin by TomChiverton
- Replies
- 5
- Views
- 2,452
I've never had the buttons misalign...
-
6 Nov 2009 8:47 AM
Jump to post Thread: RowEditor plugin by TomChiverton
- Replies
- 5
- Views
- 2,452
I've made a few updates to the RowEditor plugin, that I thought others may like.
This includes things like not letting 'enter' save an invalid row and wrapping 'tab' around to the first editor when... -
6 Nov 2009 1:57 AM
- Replies
- 31
- Views
- 10,825
I'm not sure, but you might need to make the same mods to your version as I just posted to the original in order to run on the Railo CFML engine:...
-
29 Oct 2009 3:31 AM
- Replies
- 34
- Views
- 22,128
I had to make a few minor mods to get this to run under the Railo CFML engine.
Router.cfm needs to check for the absence of the form variables in it's first CFIF, and Direct.cfc's invokeCall() needs... -
27 Oct 2009 1:18 AM
- Replies
- 2
- Views
- 776
The not-so-elegent solution to this was to create a FormPanel and use applyTomarkUp on that, rather than applyTo on each element.
var f=new Ext.form.FormPanel({
layout: 'form',
... -
26 Oct 2009 8:02 AM
- Replies
- 2
- Views
- 776
I'm using ExtJS to add some richness to an existing HTML form, so lots of 'applyTo':
var m=new Ext.form.TextField({
applyTo:"matterF",
.
.
.
... -
26 Oct 2009 1:13 AM
- Replies
- 28
- Views
- 11,406
Still doesn't give a good experience though, as it's busted in the current public release.
-
23 Oct 2009 6:38 AM
- Replies
- 6
- Views
- 1,121
Yup, I understand you, but I'm not reloading an Ext page. The target page is expecting a POST and does some stuff. I don't want to have to touch that (yet).
Just as a 'for example', maybe the... -
23 Oct 2009 6:06 AM
- Replies
- 6
- Views
- 1,121
Why is using standardSubmit a bad idea ?
I'm using ExtJS to quickly add some richness, but then need to go on and run the rest of the application as normal...
I'm not going to rewrite the whole... -
23 Oct 2009 5:19 AM
- Replies
- 6
- Views
- 1,121
The hell ?!?
You are spot on, and the work around in the submit button handler does the job.
And I'm meant to be thinking of spending money on this, right ? -
23 Oct 2009 5:15 AM
- Replies
- 28
- Views
- 11,406
The hell ! This is still foobar in the latest 3.x ?!? Does the bug need opening there as well ?
Results 1 to 25 of 27
