0
Guys, my question is, would I make a query in mysql bank and play instead of cities ?
<html>
<head>
    <title></title>
    <link href="http://cdn-na.infragistics.com/igniteui/2017.1/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
    <link href="http://cdn-na.infragistics.com/igniteui/2017.1/latest/css/structure/infragistics.css" rel="stylesheet" />
    <script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script>
    <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>
    <script src="http://cdn-na.infragistics.com/igniteui/2017.1/latest/js/infragistics.core.js"></script>
    <script src="http://cdn-na.infragistics.com/igniteui/2017.1/latest/js/infragistics.lob.js"></script>
</head>
<body>
    <style>        
        .combo-label {margin-bottom:.5em;}
    </style>
    <h4 class="combo-label">Selecione as matrículas:</h4>
    <div id="checkboxSelectCombo"></div>
    <script>
        var colors = [
            { Name: "Cidades" },
            { Name: "São Paulo" },
            { Name: "Rio de Janeiro" },
            { Name: "Controle" },
            { Name: "Android" },
            { Name: "Maria" },
            { Name: "joão" },
            { Name: "Plus" },
            { Name: "teste" }
        ];
        $(function () {
            $("#checkboxSelectCombo").igCombo({
                width: 300,
                dataSource: colors,
                textKey: "Name",
                valueKey: "Name",
                multiSelection: {
                    enabled: true,
                    showCheckboxes: true
                },
                dropDownOrientation: "bottom"
            });
        });
    </script>
</body>
</html>
would have yes, save in an array the query and then go through acquiring values where you want
– Anderson Henrique
Because I am very inexperienced with ajax and tals, would you help more specifically ? as I should change and comment to me know ?
– Jaimir Tapia