Welcome Guest, Not a member yet? Register   Sign In
[SOLVED]Select box doubt
#2

[eluser]SPeed_FANat1c[/eluser]
you can make a function in your controller which generates the select menu. Something like that:

Code:
function generate_options()
{
  echo options_menu
}

then in your view file you can use jquery and on some button click event write dinamicaly the options meniu code. Here is an example how I generated dropdown menu when #button_add is clicked.

Code:
$(function(){
            var base_url = "<?php echo base_url();?>";
            $('#button_add').live('click',function(){

                
                $('#button_add').hide("fast");
                $('.form').empty();                
                    
                $.post(base_url+"admin_/cities/generate_form_for_add/", function(form){
                    $('.form').append(form);
            
                    $('.error_name').html('<span class="errorsSmall">Laukas "Pavadinimas" turi būti užpildytas</span>');
                    $('.form').show();
                });    
                
                    
                return false;
            })
        });

Here are additional things like error messages, if you don't need them you can erase those lines.


Messages In This Thread
[SOLVED]Select box doubt - by El Forum - 10-07-2010, 05:52 AM
[SOLVED]Select box doubt - by El Forum - 10-07-2010, 07:55 AM
[SOLVED]Select box doubt - by El Forum - 10-07-2010, 10:31 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 12:46 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 02:33 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 02:53 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 03:21 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:06 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:30 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:42 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:49 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 04:52 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 05:32 AM
[SOLVED]Select box doubt - by El Forum - 10-08-2010, 02:14 PM



Theme © iAndrew 2016 - Forum software by © MyBB