It sounds like you have a pretty complex form there. >From your description, it sounds like you will need to use the CakePHP Ajax helper here: http://book.cakephp.org/view/208/AJAX
Read about it in the introduction and in online tutorials, there are a couple Javascript libraries you have to download in order to use it. Specifically, take a look at the $ajax->observeField method here: http://book.cakephp.org/view/630/observeField I am guessing you will want to use the ObserveField call to watch for which status they choose, and load the "colors" through an ajax call. -A On Jul 2, 4:02 pm, Sheetal <[email protected]> wrote: > I have a drop down list consisting of 'status' values. Each city has > its own id and and a set of colors for it. > Below is my requirement : > 1. If a user selects a 'status' value from the drop down, I have to > ask the user "if he/she is confirmed with the selected status". > 2. If 'no' nothing should happen > 3. If "yes", I should get the values of colors associated with that > particular status. > 4. All the above should happen WITHOUT reloading the page. > > color values are stored in mysql database. > > How to acheive this using cakePHP? > Please help me in this. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
