Value of all the selections is repeated when selecting the value of a select

0

This is my html code

<table class="table table-striped">
            <thead>
                <tr>
                    <th class="tamañoLetraTablaTitulo">ID</th>
                    <th class="tamañoLetraTablaTitulo">Numero de solicitud</th>
                    <th class="tamañoLetraTablaTitulo">Fecha de Captura</th>
                    <th class="tamañoLetraTablaTitulo">Objeto Particular</th>
                    <th class="tamañoLetraTablaTitulo">Responsable</th>
                    <th class="tamañoLetraTablaTitulo">Estatus</th>
                    <th class="tamañoLetraTablaTitulo"></th>
                </tr>
            </thead>
            <tbody>
                <tr ng-init="ctrl.configPages()" ng-repeat="x in ctrl.SolicitudDetalle | startFromGrid: ctrl.currentPage * ctrl.pageSize | limitTo: ctrl.pageSize">
                    <td><a id="editSol" ng-click="ctrl.getParametros(x.Id)">{{x.Id}}</a></td>
                    <td>{{x.Num_Solicitud}}</td>
                    <td>{{x.FechaCaptura}}</td>
                    <td>{{x.ObjPart}}</td>
                    <td>{{x.Responsable}}</td>
                    <td><select ng-model="ctrl.Status" @*ng-options="obj.Descripcion for obj in ctrl.ListaStatus track by option + obj.Id"*@ ng-options="obj.Descripcion for obj in ctrl.ListaStatus track by obj.Id">
                            <option value="">---SELECCIONE---</option>
                        </select></td>
                    <td><input ng-click="ctrl.SetParametrosSolicitar(x.Id, Status.Id)" type="button" class="btn btn-success" value="Confirmar" data-toggle="modal" data-target="#miModal" /></td>

                </tr>
            </tbody>
        </table>

    
asked by Rafa Rosales 10.04.2018 в 18:45
source

0 answers