从JCombo获取值

时间:2016-12-25 12:55:54

标签: laravel-5 jcombobox

我使用jcombo获取下拉列表的所有值,它工作正常。过滤器工作正常...我在下拉列表中获得了所需的所有值。我一直在尝试使用jcombo在页面中获得的值,但我无法..我需要创建一个输入掩码..我需要在tourdateID中使用值total_capacity来用于输入掩码..我可以看到值下拉但我没有在页面中得到它..任何想法?非常感谢

csvfile=

...

$(document).ready(function() { 

        $("#tourcategoriesID").jCombo("{!! url('booking/comboselect?filter=def_tour_categories:tourcategoriesID:tourcategoryname') !!}",
        {  selected_value : '{{ $row["tourcategoriesID"] }}' });

        $("#tourID").jCombo("{!! url('booking/comboselect?filter=tours:tourID:tour_name') !!}&parent=tourcategoriesID:",
        {  parent: '#tourcategoriesID', selected_value : '{{ $row["tourID"] }}' });

        $("#tourdateID").jCombo("{!! url('booking/comboselect?filter=tour_date:tourdateID:tour_code|start|total_capacity') !!}&parent=tourID:",
        {  parent: '#tourID', selected_value : '{{ $row["tourdateID"] }}' });

0 个答案:

没有答案