Angularjs the default selected for dynamically set Select

Source: Internet
Author: User

Encountered a problem, set the Stafftype default value in the controller

. Controller (' Infostaffctrl ', function ($scope, $rootScope, $state, $log, $ionicLoading, $timeout, Manpower) {

        //List   
        $scope. Search = {p:1,audittype: ', Name: ', Stafftype: ', CompanyName: '};
        $scope. stafftypes = ["Please select", "Pilot", "locomotive", "Shipping", "management", "Air pipe", "other"];    
        $scope. Dosearch = function () {
            ...
            $scope. Number = $scope. Search.stafftype;
            ...
        }
        function LoadData () {
            ...
        }
        LoadData ();

    })

And then click on the search is still the default option, depending on the item selected Stafftype loaddate

After searching for references to these two links 1
2

Add a angular ng-selected

<label class= "Item item-input item-select" >
          <span class= "Input-label" > Personnel category </span>
          < Select Ng-model= "Search.stafftype" >
            <option value= "{{$index}}" ng-repeat= "T in Stafftypes" ng-selected= " number== $index ">{{t}}</option>         
          </select>
        </label>

When the Stafftype value of the search submission is equal to the Drop-down option value in the page, select the value

Ps:
More complex circular data should be paired with Ng-options.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.