Tagged Questions
0
votes
1answer
30 views
Developing a full public facing enterprise app with AngularJS
Good day All,
I am working on a public facing web app, which is work in progres, the front-end is 100% based on AngularJS, UIBootstrap, CSS, HTML. So, we have the user form-action invoking restful ...
1
vote
1answer
14 views
Tab-off ui-bootstrap typeahead only when row is explicitly selected
I've created this jsBin to demonstrate the issue I'm having. If you go here, try type "Five" and move on. Your natural reaction would be to type "Five" and then press tab, and if you wanted ...
0
votes
0answers
8 views
How to prevent an angular-bootstrap dropdown from closing (Unbind Event which was bound by a directive)
I am using the Angular-Bootstrap Dropdown. I want to prevent it from closing on click until the user closes it intentionally.
Default state is: The Dropdown closes when clicking somewhere in the ...
0
votes
2answers
16 views
HTTPS Prerequiste for Button Click
I am using angular to make a user profile page that I only want to be accessible if connected using HTTPS.
<div>
<p>Please access this page through SSL (https) to change your ...
0
votes
1answer
13 views
Angular UI Bootstrap modal result is undefined
I'm building an app that loads a modal on a click on a button in an ng-grid row. Displaying the modal and the correct data works great. Problem is with getting the data back form the form in the ...
0
votes
1answer
20 views
Angular UI Bootstrap v0.11 datepicker popup not working
Just switched to v0.11 of UI Bootstrap and the datepicker-popup is no longer working.
It works fine with v0.10. Anyone know what has been changed in the new version which might be causing the ...
0
votes
2answers
53 views
How do I tell ui-Bootstrap what content to paginate?
I am using ui-Bootstrap and I am trying to get the pagination working but I seem to be missing something. I have read the documentation and looked at a bunch of plunkers to try and work out how they ...
2
votes
3answers
40 views
How to call controller function from directive?
how to call controller function from directive? or howto access directive ng-model from controller?
eg. I use angular ui bootstrap time component and when time change I need to notify calling function ...
0
votes
1answer
24 views
Add an ID to datepicker of angular ui bootstrap
here is my code after each dateHolder div a date picker is generated.. but want an ID on them
<div class="col-xs-12 tn-dateContainers" ng-controller="DatepickerDemoCtrl">
...
0
votes
1answer
33 views
Can I merge Angular Strap's “aside” directive into Angular UI somehow?
I don't really have code to show. I thought just maybe it'd be as simple as copying the module directive from angular strap over to ui bootstrap, but that's very obviously been proven incorrect. Has ...
1
vote
2answers
51 views
Date input validation using ng-change, AngularJS
I's using AngularJS and AngularJS bootstrap in my page. I have a date picker directive that looks like this:
<div class="form-group {{dateStatus.class}}">
<p ...
0
votes
1answer
13 views
Need to $watch property from within an accordion (Angular-UI) but won't work
We're building a page with Angular, Angular-UI and UI-Bootstrap. The last one includes a directive for accordion, which simplifies a quite repetitive task of building up an accordion and an accordion ...
0
votes
1answer
32 views
Show and Hide Alert Using AngularUI Directives for Bootstrap
Am a newbie in the field of web design.
I came across bootstrap and later angularjs. I find them quite impressive.
I noticed that bootstrap comes with its own jquery libraries and angularjs uses its ...
0
votes
1answer
41 views
Angular's ngRepeat does not work in $modal
Hello I want to use Angular's ngRepeat in $modal (that is defined in ui-bootstrap-tpls-0.11.0.js). To implement the $modal I am using the exact same approach as presented here: ...
0
votes
1answer
32 views
Angular UI Modal opened promise is resolved before modal is shown
I am trying to execute a jQuery script on the opened modal in order to transform one of the fields to a jQuery UI Spinner.
I am using the opened promise as documented in Angular UI.
ISSUE:
The ...
0
votes
1answer
57 views
angularjs ng-grid: parent child relations between the rows (hide/show rows)
I'm trying to implement rendering the ng-grid with predefined hidden rows and on some particular event I want to show them. I'm trying to simulate kind of parent-children relation between rows, but ...
0
votes
1answer
34 views
rating directive from bootstrap-ui module if angular returns an error “Error: $compile:nonassign Non-Assignable Expression”
I'm trying to use the rating directive of bootstrap module for angular but when I click on a star to rate then angular trig this error
enter link description here
I understand that this error is ...
1
vote
1answer
31 views
Angular: Staying DRY With Angular-UI Pagination?
I'm using the angular-ui:bootstrap pagination directive on multiple views which interact with different controllers; these views/controllers often have to interact with sorting and filtering, which ...
0
votes
2answers
44 views
Angular Bootstrap Rating
I am copying the example from the Angular Bootstrap docs
The HTML(Jade) is :
rating(ng-model="rate" max="max" on-hover="hoveringOver(value)" on-leave="overStar = null") {{rate}}
...
0
votes
0answers
23 views
ui-router issue of state not assign properly it works after refresh
I have used ui-router in my app.
Explaination of Issue: from init controller i have open bootstrap modal as form and after form saved its takes id of row inserted and redirect using $location.path ...
0
votes
1answer
58 views
How to set the default tab in bootstrap
I have a question regarding my angular bootstrap ui
I have something like
<div class="container" ng-controller='sCtrl'>
<tabset id='tabs'>
<tab heading="Title1" >
...
0
votes
0answers
17 views
Dynamic Tab change in Bootstrap?
I have three tabs in AngularJS and Jade. The first tap loads a list of names. When you click on one of those names in that tab I want it to automatically move to the second tab. No luck so far. Any ...
0
votes
2answers
57 views
Angular UI Modal 2 Way Binding Not Working
I am adding an Angular UI Modal where I am passing the scope through to the Modal Window for 2 way binding. I used the resolve method to pass the scope value. Doing so works sort of works meaning when ...
0
votes
2answers
62 views
Angularjs pagination errors
I am trying to integrate an Angular UI pagination directive from here -> http://angular-ui.github.io/bootstrap/#/pagination
The problem is that, when I click on the any of the pagination buttons, I ...
0
votes
1answer
34 views
angularjs tab key press prevent default
Hi I have a input field that calls the funciton add_plu() when the tab key is pressed down. Although it works, it moves to the next element of the page (default action for a tab key).
How do I ...
1
vote
1answer
21 views
Mutiple controller interaction
This is what I'm trying to do. A button in PipelineController view starts an address verification process.
http://jsfiddle.net/XZ3sX/4/
<button type="submit" class="form-group btn btn-default" ...
1
vote
2answers
64 views
Why did my UI Bootstrap datepicker-popup stop working?
I updated to UI Bootstrap 0.11.0 and my datepickers stopped appearing as they should. I have a plunker that demonstrates it at here. Very simply, I have:
<input ng-model="formData.dueDate" ...
0
votes
4answers
43 views
How to call Controller?
var modalInstance = $modal.open({
templateUrl: 'views/modals/addDevice.html',
controller: ModalCtrl
});
modalInstance.result.then(function (newDevice) {
});
I will implement it in this ...
0
votes
1answer
50 views
how to use Flexslider or parallax slider with AngularJS (with Angular UI)?
Have anybody tried using Flexslider and Parallax-Slider in AngularJS application?
None of them works if I use them in AngularJS application.
This AngularJS application is also using UI Bootstrap.
Any ...
0
votes
1answer
88 views
angularjs datepicker not opening twice angular-ui version 0.11.0
I am trying to have 2 datepickers and I am using Angular UI version 0.11.0.
My HTML code
<span ng-if="periods.period == 10">
<input type="text" datepicker-popup="dd-MMMM-yyyy" ...
0
votes
2answers
41 views
Bootstrap alert dialog is not displayed further after auto-close
I am using bootstrap alert to display application messages. I use $timeout function to close the alerts automatically.
$scope.alerts.push({header: header, msg: message, type: type});
...
1
vote
2answers
46 views
Retry modal popup AngularJS
I can understand how to make $http request interceptor with retry logic like in this question
But I cannot figure out how to make a modal popup(angular-ui - bootstrap) with retry button which get ...
0
votes
1answer
51 views
Angularjs tab button
Hi! I was wondering how to use the tab button on the keyboard to call a function? Something like this:
<button
class="btn btn-primary order-input-add"
...
0
votes
1answer
36 views
AngularJS typeahead throws 'undefined' is not an object (evaluating 'c.length')
I have been struggling with this for the past one day and even though it seems that everybody has this working, I keep getting this error:
Error: 'undefined' is not an object (evaluating 'c.length')
...
0
votes
0answers
48 views
angular how to set attribute inside directive/template dynamically?
just started playing with Angular. I have several modal. same structure with header and footer. And the main part is a tree. I have data for three different tree.
I am using angular ui. and abn tree ...
0
votes
0answers
23 views
Angular-UI Accordion + Datepicker?
i use Anguar-Ui Bootstrap http://angular-ui.github.io/bootstrap/
and i have implemented the "Accordion" from Angular UI and now i want add inside this Accordeon the Popup DatePicker from Angular UI.
...
0
votes
1answer
29 views
refresh a tab in angular ui
Am creating tabs dynamically using angular-ui-bootstrap,using directives i can make the template for tabs and loading the contents inside it using ng-include.Now my requirement is to reload this ...
0
votes
2answers
63 views
Modal service in AngularJS that allows me to resize the size of the modal popup
I'm writing an AngularJS app. I need to open a particular modal popup that is big in size. Is there any AngularJS library out there that allows me to open a modal popup according to my specification ? ...
5
votes
1answer
385 views
Pagination in Angular UI Bootstrap throwing “Error: [$compile:nonassign]”
I'm using a fairly simple implementation of Angular Bootstrap UI's pagination directive, yet I keep getting an error I cannot figure out. Here's the relevant snippets:
<ul>
<li ...
0
votes
3answers
95 views
“Extending” Angular UI Bootstrap Popover
(I'm kinda new to AngularJS)
I would like to create a directive which triggers a Bootstrap Popover when the user click on the element where the directive is put. To popover will have an HTML content ...
0
votes
1answer
26 views
UI angular modal controller $scope values handling mistake
I'm using angular UI modal, in the template of my modal I have 2 inputs and a button, this are using th ng-model attribute, ok, I have a controller set for the modal, which works, it does everything ...
2
votes
1answer
87 views
Date picker is not working in AngularJS (ng-grid) “editableCellTemplate”
columnDefs: [{
displayName: 'Date',
field: 'date',
editableCellTemplate: '<input type="text" ng-class="\'colt\' + col.index" ...
0
votes
2answers
60 views
angular-bootstrap-ui modal size doesn't work
howto resize angular ui bootstrap modal on large size it looks that it doesn't work ? by the doc page it's enough to add size attribute ...
0
votes
0answers
33 views
Bootstrap-UI local images not showing
I'm using AngularJS with Bootstrap-UI and I'm using the carousel directive. When I have the images in my Ctrl pointing to a website (lorumpixel.com) the images are appearing; however, I have images ...
0
votes
0answers
33 views
show tooltip on the click of the cell in ng-grid : Angularjs
in my ng-grid options I have :
columnDefs : [
{
field : 'status',
headerClass : 'tbl-header',
...
0
votes
2answers
36 views
Scope issue with ui-bootstrap tabs
I'm having a problem understanding scope. ui-bootstrap creates a new scope when you use tabset, I get that. I thought parent methods were available to child scopes? Here is a jsbin showing my problem.
...
0
votes
0answers
18 views
Trying to get a string from Angular UI Modal via resolve object
I'm using the Angular UI modal directive: http://angular-ui.github.io/bootstrap/
I'm trying to pass a string from my modal open() function to my modal controller via the resolve object. I feel like ...
0
votes
1answer
44 views
AngularJS how to invoke the ng-show on a div from another controller
I am new to AngularJS and trying to use it on an enterprise project.
I have scaled many hurdles so far, but everyday with its issue!
Please, I need your help on this.
The functionality on this ...
2
votes
2answers
59 views
Angular UI tooltip in ng-repeat not closing
Please see the plunker below:
http://plnkr.co/edit/RPpjULZsSDnTFPKiafl2
Basically, the angular-ui tooltip remains when moving up / down to a position where ng-disabled is true. Any thoughts on how ...
0
votes
0answers
80 views
Memory leak with angularJS and jQuery / angular bootstrap
I have a ng-repeat list that updates every minute. Its a list of cards that contains stuff like title, description, dates and so on.
In those cards there's also a angular-ui-bootstrap popover which i ...