Questions tagged as 'angular-ui-bootstrap'

1
answer

How to change the text of the paging buttons of the Bootstrap Pagination UI?

I'm working with UI Bootstrap Pagination , but by default the language is in English. Would it be possible to change without having to modify Javascript directly? If so, could you give me a simple example?     
asked by 13.12.2017 / 13:33
1
answer

angular - Update values of radiobuttons with textarea

By popover I want to subtract the values of the radiobutton, who should come to a textbox of preference per line, then when the user wants to add options just insert a new value in the next line. <divng-repeat="controle in dataform.contro...
asked by 18.11.2016 / 02:09
2
answers

How to import the current $ scope into $ uibModal?

I have the following modal in my controller: angular .module('app', ['ui.bootstrap']) .controller('AlunosController', function ($uibModal, $scope, MyPaginator) { $scope.alunos = new MyPaginator('/alunos'); $scope.open = function (a...
asked by 21.09.2016 / 18:30
1
answer

Angular UI-Bootstrap Carousel with Multiple Slides

I'm using Carousel UI-Bootstrap with AngularJs, but only shows 1 slide at a time. I wanted multiple slides like these examples below. Bootstrap 3 Multiple Slide Carousel , another example, Bootstrap 3 Carousel Multiple Items Increment by...
asked by 15.08.2018 / 16:03
1
answer

How to trigger the event cancel when I click outside the modal or ESC constraint?

Problem with output from modal $uibModal : var modalInstance = $uibModal.open({ animation: true, templateUrl: 'detalhes_leitura.html', controller: 'ModalController',...
asked by 03.11.2017 / 16:14
1
answer

How to close uib-popover when clicking outside?

I'm trying to use the uibPopover of the Angular UI Bootstrap to display a input field. The problem I'm having is that by clicking off the popover, it is not closing. I've already looked for some answers in SOEN which s...
asked by 26.09.2016 / 14:47
1
answer

Angular 1.6: Open a uibmodal inside another module using "solve"?

I have a problem to open a uibmodal inside another uibmodal passing the same through resolves. I have two modals declared inside the same controller, Modal1 and Modal2. Modal 1 passes modal2 in resolves, everything works fine, minus the "result....
asked by 21.03.2018 / 12:14
1
answer

uibModal does not show items in ng-repeat

I'm using $uibModal to show a list of options for the user, but it's not appearing in the modal. Controller app.controller("ConsultaFiltroController", function($scope, $http, $uibModal, $log) { $scope.items = ['Em Análise', 'Pend...
asked by 20.09.2016 / 02:22
1
answer

Dropdown in the modal does not see scope of the controller Angular JS 1.5

Good morning. The problem is this, I have a news feed page and inside it I use a Modal Angular UI - Modal to display information for a specific post. I have a DropDown with two options, "Delete" and "Edit". DropDown <div class=...
asked by 05.01.2017 / 13:56
1
answer

How to disable modal closing using the modal ESC key in UI-Bootstrap?

In ui-bootstrap , I can disable modal closing by clicking on the black background using the {backdrop: 'static'} option. But now I also need to disable the ESC key, because when you press this key, the modal is closed. How t...
asked by 25.09.2018 / 18:42