Base solution for your next web application

Activities of "nitinrpatel"

Thanks for the article.

Answer

ASP.NET MVC 5.x with AngularJS

Have you found any solution regarding this query?

<div class="modal-body">
            <div class="form-group form-md-line-input form-md-floating-label no-hint">
                <input class="form-control" type="text" name="streetName" ng-class="{'edited':vm.installer.streetName}" ng-model="vm.installer.streetName">
                <label for="streetNameSelectionCombobox">@L("StreetName")</label>
                <select id="streetNameSelectionCombobox"
                        class="form-control"
                        ng-options="streetNameval.streetName as streetNameval.streetName for streetNameval in vm.streetNames"
                        ng-class="{'edited':vm.installer.streetName}"
                        ng-model="vm.installer.streetName"
                        ui-jq="selectpicker"
                        ui-options='{ iconBase: "famfamfam-flag", tickIcon: "fa fa-check" }'
                        data-live-search="true">
                    <option value=""></option>
                </select>
            </div>
        </div>
Showing 31 to 34 of 34 entries