0
votes
0answers
19 views

Angular directive ui-show breaks ng-click

Issue ui-hide and ui-toggle randomly breaks binding of ng-click sometimes, only when the ng-click target is followed by the ui-show, and doesn't happen with all nodes (example with text instead of ...
0
votes
0answers
16 views

UI.Bootstrap moduler Uncaught error for version 0.9.0

I am currently trying to add a header to my html page by using 'data-ng-include' but I keep getting a "Uncaught Error: [$injector:modulerr] Failed to instantiate module agentOnlineApp" error. I have ...
1
vote
1answer
34 views

How can I pass a list as a parameter to a dialog?

Y must pass a list of data to a dialog to fill a combobox. In other part of the code I passed a string to dialogs, but, using the same method for this case, It didn´t work. Here is my js code: ...
-2
votes
0answers
31 views

Bootstrap input issue

I am running into a strange issue in IE11-Edge with an input box, The text seems to line up funky when I go to edit my form. If it's a new input it works fine. It just seems to be on edit and seems to ...
0
votes
0answers
31 views

Why is my tabset tag coming up as unknown

I am currently trying to create a set of tabs using the 'tabset' tag with ui-bootstrap-0.9.0.min.js but eclipse keeps marking it as an unknown tab. When I launch the page on my browser all I get is ...
0
votes
1answer
98 views

Need HTML/CSS styling for book shelf [on hold]

Can any one please provide me the responsive html/CSS for this kind of book shelf. http://speedy.sh/7dWVk/bookshelf.jpg I tried to find same kind of shelfs online, but they not kind/not responsive ...
1
vote
1answer
86 views

Strange cursor placement in modal when using autofocus in Internet Explorer

I'm having an issue with the cursor placement when using autofocus in IE. The image should display the issue clearly. Luckily I've been able to reproduce this in a plunker. I've stripped it down to ...
0
votes
2answers
92 views

Clear the ng-model asssociated to textarea inside Angular Bootstrap UI tabset form an outside button

I have used angular bootstrap ui tabset to create two tabs and both of the tabs have textareas associated with a ng-model, i have a clear button outside the tabset and i want to clear the ng-model of ...
-1
votes
2answers
104 views

how to fix the form-control width?

I've the following code in HTML: <div class="col-sm-12"> <div ng-repeat="param in plugin.wsdlURLs track by $index" class="col-sm-12"> <select class="form-control col-sm-4" ...
2
votes
1answer
88 views

html5 doesn't support accordion tag [duplicate]

I am trying to use the accordion tag from angularjs bootstrap, however, in the IDE it says that Validation (HTML5): Element accordion is not supported. I've been searching around for the issue, but it ...
0
votes
0answers
44 views

Chrome not displaying input type validation messages inside modal

I'm using angularJS as mvc and UI bootstrap for modal views. The problem is that chrome doesn't show validation messages of input types. Does anyone know if this is a bug or am I doing something ...
2
votes
2answers
808 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
1answer
186 views

ng-grid set cellClass according to field value

i'm using the ng-grid now and want the column to be displayed in different color according to different value, i've tried..but not success.... $scope.gridOptions = { ........ columnDefs: [ ...
0
votes
1answer
168 views

Why will my ng-grid footer not align to my bottom border

I am using ng-grid and other AngularJS UI Bootstrap elements. I finally was able to reproduce a problem I am having in my site. Here is the Plunker link. Notice the red border down at the bottom of ...
2
votes
2answers
2k views

Bind Angular JS ui-bootstrap dropdown toggle to ng-model

I am trying to use the angularjs bootstrap dropdown toggle on a form, and i need to be able to bind the selected item back to a model for a new "organisation" in my application. Here's my js module ...