Re: [PHP] Handling Large Select Boxes

2006-04-08 Thread Brad Bonkoski
Thanks for the responses to this... The AJAX thing would probably not work as this is a critical piece to the UI, so even though the form would load faster, the users would still really need to wait for the select options to come through before they could actually do any *work* on the page.

Re: [PHP] Handling Large Select Boxes

2006-04-07 Thread Brad Ciszewski
Perhaps try implementing some AJAX on the page. Therefore, once the page has loaded, the select tag is populated with different options, without actually lagging the page. ""Jay Blanchard"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] [snip] I have a form for user interaction and p

Re: [PHP] Handling Large Select Boxes

2006-04-07 Thread Manuel Lemos
Hello, on 04/07/2006 01:06 PM Brad Bonkoski said the following: > Good point... > Maybe the gods of usability can kick the user's in the butt to get them > to clean up the data! > Previously they used a free text field, which is why the problem is as > bad as it is currently > > All the data

Re: [PHP] Handling Large Select Boxes

2006-04-07 Thread Paul Novitski
At 08:51 AM 4/7/2006, Brad Bonkoski wrote: I have a form for user interaction and part of it is a select box with a large number of options from a database ~12K options. Currently I have a function which queries the DB to get fresh data and loads the HTML (Y) into a string, so the DB is only hi

Re: [PHP] Handling Large Select Boxes

2006-04-07 Thread Brad Bonkoski
Good point... Maybe the gods of usability can kick the user's in the butt to get them to clean up the data! Previously they used a free text field, which is why the problem is as bad as it is currently All the data has to be available, so the only other option I can think of is to select

RE: [PHP] Handling Large Select Boxes

2006-04-07 Thread Jay Blanchard
[snip] I have a form for user interaction and part of it is a select box with a large number of options from a database ~12K options. Currently I have a function which queries the DB to get fresh data and loads the HTML (Y) into a string, so the DB is only hit once, but the page still takes a wh