![]() |
dynamic dropdownbox using ajax - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: dynamic dropdownbox using ajax (/showthread.php?tid=25754) |
dynamic dropdownbox using ajax - El Forum - 12-23-2009 [eluser]max123[/eluser] How can i create dynamic dropdownbox using ajax. That means there are 2 dropdown boxes. items in the 2nd dropdown box depends on the selection of the 1st drop down box. Please help me. It is urgent Thanx a lot dynamic dropdownbox using ajax - El Forum - 12-23-2009 [eluser]saidai jagan[/eluser] For ex, The sub category list box depends on the category list. If the category list is selected, send the Id through ajax and get the sub categories based on the category Id by the query then show the values. Use jquery,CI dynamic dropdownbox using ajax - El Forum - 12-23-2009 [eluser]rogierb[/eluser] Take a look at jquery.com Code: $("select[name=select_numero_1]").change(function(){get_select_2($(this).val()}); dynamic dropdownbox using ajax - El Forum - 12-23-2009 [eluser]max123[/eluser] how can i do it with codeigniter. Please tell me from the very beginning. is there any good tutorial. If so please send me the link. I know how to do it without the CI frame work. But I want it to be done using CI. Please help me. dynamic dropdownbox using ajax - El Forum - 12-23-2009 [eluser]rogierb[/eluser] In CI it is the same as without CI. You include jquery. In your ajax call, you call a controller that parses som information back. Or take a look here: http://www.mrforbes.com/thoughts/2009/01/28/a-quick-code-igniter-and-jquery-ajax-tutorial/ or here http://geekhut.org/2009/06/how-to-codeigniter-jquery-json/ or here http://blufusion.net/2009/07/30/easy-ajax-post-with-jquery-and-codeigniter/ dynamic dropdownbox using ajax - El Forum - 12-24-2009 [eluser]iron-man[/eluser] you can easilly do it in rabbitform see www.rabbitform.com/wiki www.rony012.wordpress.com/rabbitform Thanking u Rony |