Re: Form in CFWINDOW - currently CHEATING to get parent to refresh...

2009-08-01 Thread Les Mizzell

I've still not figured this out.
This isn't a do my work for me by posting some code request!

I just need a pointer in the right direction. I've been looking at the 
live docs and miles of AJAX/Javascript code and my head is starting to 
hurt! Surely it can't be *that* complex!

All I need to do...

1. Display a number of returned records on a page (grid format doesn't 
really get it)

2. With the parent window staying in place, click the record to update.

3. Open a CFWINDOW withe update form.

4. Submit the form, which will
a. update the database
b. update the displayed data on the parent page in place


Works fine up to 4a. To refresh the changed data on the parent page 
though, I'm having to force a page refresh, which defeats the whole 
purpose of trying to get it to update in place without a page refresh.

There's got to be a good tutorial on this somewhere, I've just not found 
it yet...

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325160
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Form in CFWINDOW - currently CHEATING to get parent to refresh...

2009-08-01 Thread denstar

A lot depends on how you've got your parent page set up.

For things like this, I use a dojo data store and just tell it to
update/refresh after the record is edited.  That doesn't help you much
tho. =]

Without knowing how your data is set up, you've got a few options:

If it's a table that contains the data, you could return the row data
and index, and then loop through the row data, setting the innerHTML
for each cell... (might be able to just set the TR element... hmm,
might not work in ie6 tho...)...

If the rows are all DIVs, you could just return the div id and the
content, and update the div with the content  (--- easiest, I bet ).

Are you having trouble getting to the parent's elements or something?
If you can get to the parent to tell it to refresh, you should be able
to get to it and just update the elements you want updated.

A lot depends on how this parent page is set up tho, and without more
details (not to do your work for you (although many times that's a
side-effect, if you look at it that way)) there's only so much help
folks can offer.

:]

-- 
Young people have an almost biological destiny to be hopeful.
Marshall Ganz

On Sat, Aug 1, 2009 at 3:10 PM, Les Mizzelllesm...@bellsouth.net wrote:

 I've still not figured this out.
 This isn't a do my work for me by posting some code request!

 I just need a pointer in the right direction. I've been looking at the
 live docs and miles of AJAX/Javascript code and my head is starting to
 hurt! Surely it can't be *that* complex!

 All I need to do...

 1. Display a number of returned records on a page (grid format doesn't
 really get it)

 2. With the parent window staying in place, click the record to update.

 3. Open a CFWINDOW withe update form.

 4. Submit the form, which will
    a. update the database
    b. update the displayed data on the parent page in place


 Works fine up to 4a. To refresh the changed data on the parent page
 though, I'm having to force a page refresh, which defeats the whole
 purpose of trying to get it to update in place without a page refresh.

 There's got to be a good tutorial on this somewhere, I've just not found
 it yet...

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325161
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Helm 3 and CF7

2009-08-01 Thread Jenny Gavin-Wear

Does anyone have the API web service install .zip for Helm 3 and CF7,
please?  It's called adminapi_encrypted.zip, according to the docs, and is
no longer available on the link provided.

I've been trying to get support from Parallels, but it has not been easy
going - they sent me the wrong version.

Many thanks,

Jenny




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325162
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


(ot) FedEx Webservices SSL Changes

2009-08-01 Thread Dave Hatz

We use FedEx web services and it looks like they switched to a new Chained 
Secure Socket Layer (SSL) Production Certificate today and of course no on my 
IT staff new about it, which makes for a lovely Saturday afternoon

Anyways, I installed the Intermediate Certs on our IIS6 server and we are still 
having connection issues with their servers.  I would be talking to FedEx Tech 
support, but it is a Saturday afternoon and it is hard enough getting a hold of 
their tech support during normal business hours.  There online support is crap, 
talks about the change, but that is about it.

Is there anyone using FedX webservices and if so, did u make the SSL change 
they need?  Any advice would be greatly appreciated at this point.

Thanks,
Dave  

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325163
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Form in CFWINDOW - currently CHEATING to get parent to refresh...

2009-08-01 Thread Les Mizzell

denstar wrote:
 A lot depends on how you've got your parent page set up.

Right now, the parent page is a standard query with a loop through 
returned values. But, it's a test page where I'm trying to work this out 
so I can apply it to any number of admin systems and easy enough to toss 
and start over.

I guess my basic problem is that I know what I want to do but I've not 
figured out the correct question to ask just yet. If I know what I'm 
looking for in theory, I can probably figure it out from there.

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325164
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Form in CFWINDOW - currently CHEATING to get parent to refresh...

2009-08-01 Thread James Holmes

If you want to have the page stay at the current scroll location and
update the data, you're probably better off with an editable grid
rather than a separate edit window.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2009/8/2 Les Mizzell lesm...@bellsouth.net:

 denstar wrote:
 A lot depends on how you've got your parent page set up.

 Right now, the parent page is a standard query with a loop through
 returned values. But, it's a test page where I'm trying to work this out
 so I can apply it to any number of admin systems and easy enough to toss
 and start over.

 I guess my basic problem is that I know what I want to do but I've not
 figured out the correct question to ask just yet. If I know what I'm
 looking for in theory, I can probably figure it out from there.

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325165
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Form in CFWINDOW - currently CHEATING to get parent to refresh...

2009-08-01 Thread David Mineer

Seems like I had an issue like this and I changed the submit button to just
a button (instead of submit) and used ColdFusion.navigate.  It has options
where you can chose which div to submit the form in and other options.

On Sat, Aug 1, 2009 at 3:10 PM, Les Mizzell lesm...@bellsouth.net wrote:


 I've still not figured this out.
 This isn't a do my work for me by posting some code request!

 I just need a pointer in the right direction. I've been looking at the
 live docs and miles of AJAX/Javascript code and my head is starting to
 hurt! Surely it can't be *that* complex!

 All I need to do...

 1. Display a number of returned records on a page (grid format doesn't
 really get it)

 2. With the parent window staying in place, click the record to update.

 3. Open a CFWINDOW withe update form.

 4. Submit the form, which will
a. update the database
b. update the displayed data on the parent page in place


 Works fine up to 4a. To refresh the changed data on the parent page
 though, I'm having to force a page refresh, which defeats the whole
 purpose of trying to get it to update in place without a page refresh.

 There's got to be a good tutorial on this somewhere, I've just not found
 it yet...

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325166
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4