RE: Basic web interface question

2005-05-05 Thread Dawson, Michael
How about an iframe on the same page? When you search for an item, then click on it, the iframe is populated with the detailed data. Then, you can submit that form, but stay on the search results as well. M!ke -Original Message- From: Dave Merrill [mailto:[EMAIL PROTECTED] Sent:

RE: Basic web interface question

2005-05-05 Thread Dawson, Michael
Other ideas? This is somewhat related, but I usually provide two save buttons: Save and Close and Save and New. Close will take you back to a list. New will submit the form and then present a blank form for the next entry. M!ke

RE: Basic web interface question

2005-05-05 Thread Dave Merrill
In my own applications I tend to send the user back to the list page (typically not a search page, just a sortable list that's optionally paginated based on their user preferences -- these pages can become search pages pretty easily because the framework automates filters on their columns,

Re: Basic web interface question

2005-05-05 Thread Isaac Dealey
I work on a lot of sites, such as church sites, where users have very little to no experience manipulating data through a web interface and I always give them confirmation that their action was completed. It's very comforting to them...in the same way that a confirmation that a payment I make

RE: Basic web interface question

2005-05-05 Thread S . Isaac Dealey
In my own applications I tend to send the user back to the list page (typically not a search page, just a sortable list that's optionally paginated based on their user preferences -- these pages can become search pages pretty easily because the framework automates filters on their

RE: Basic web interface question

2005-05-05 Thread Rick Faircloth
From: Dawson, Michael [EMAIL PROTECTED] Sent: Thursday, May 05, 2005 11:55 AM To: CF-Talk cf-talk@houseoffusion.com Subject: RE: Basic web interface question How about an iframe on the same page? When you search for an item, then click on it, the iframe is populated

RE: Basic web interface question

2005-05-05 Thread Burns, John D
Subject: RE: Basic web interface question Hi, Mike... I've tinkered with iFrames some, and see a lot of potential, but one thing I never found out...is it possible to make an iFrame expand with content or does it always have to just scroll if content becomes larger than the pre-defined area

RE: Basic web interface question

2005-05-05 Thread Dawson, Michael
, personally, would code for 800x600 and try to get it to fit as best as possible. M!ke -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 3:42 PM To: CF-Talk Subject: RE: Basic web interface question Hi, Mike... I've tinkered with iFrames some

RE: Basic web interface question

2005-05-05 Thread Rick Faircloth
From: Burns, John D [EMAIL PROTECTED] Sent: Thursday, May 05, 2005 4:48 PM To: CF-Talk cf-talk@houseoffusion.com Subject: RE: Basic web interface question You mean dynamic resizing of the iframe? I assume you could do some sort of javascript to check the width of the page contained

RE: Basic web interface question

2005-05-05 Thread Connie DeCinko
You can use percentages for iFrames as well as pixel dimensions. -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, May 05, 2005 3:06 PM To: CF-Talk Subject: RE: Basic web interface question It's been a while since I toyed with iframes, but I somehow

Re: Basic web interface question

2005-05-04 Thread S . Isaac Dealey
Other ideas? I've seen a number of applications which take the user back to the form page for the item being edited with a status message at the top. I've never much cared for this approach either... In my own applications I tend to send the user back to the list page (typically not a search

Re: Basic web interface question

2005-05-04 Thread Jared Rypka-Hauer - CMG, LLC
Either option 1 or a confirmation page... Your updates have been saved with a redirect to the original list page. I generally try to use something that keeps the architecture to a minimum and the user's experience very straightforward. If that means some extra work for me, that's fine because

Re: Basic web interface question

2005-05-04 Thread Rick Faircloth
, 2005 11:23 PM To: CF-Talk cf-talk@houseoffusion.com Subject: Re: Basic web interface question Either option 1 or a confirmation page... Your updates have been saved with a redirect to the original list page. I generally try to use something that keeps the architecture to a minimum