AngularUI is the enhancement companion suite to the AngularJS framework. It contains UI widgets and directives that are not part of the AngularJS core but are commonly needed in a project.
0
votes
0answers
8 views
angular-ui-mask doesn't mask as expected in the text box
I am using angular for my web-application and trying to use angular-ui-mask (https://github.com/angular-ui/ui-mask) to mask the input to prevent someone from even typing anything but numbers in the ...
2
votes
1answer
19 views
UI-Router parent controller doesn't initiate
I'm using AngularJs UI-Router for my app, but I'm with a problem where the parent's controller isn't initiated.
This is my state structure:
.state('main', {
abstract: true,
controller: '...
0
votes
0answers
25 views
How to create connected modal forms with angularjs?
I want have a table showing a list of students. When a user clicks on a one of these students, a modal form pops up showing the details of the student (this works fine). I expose the selected student ...
0
votes
1answer
66 views
Are Angular UI and Angular Material mutually exclusive?
To use Angular Material (1.x), do we need Angular UI. If I use Angular Material alone, will I get features similar to Angular UI (apart from Material Design)?
Are they mutually exclusive, or ...
0
votes
2answers
33 views
How to make new / last element in accordion automatically expanded in AngularJs?
I use accordion in my angularjs project.
Here is template:
<uib-accordion close-others="oneAtATime">
<uib-accordion-group heading="{{group.title}}" ng-repeat="group in groups"
...
0
votes
0answers
10 views
Angularjs bootstrap UI typeahead not working asynchronously
I am using the angular bootstrap ui typeahead asynchronously to return an array of records, but can't get it to work. I've gotten the typeahead to work when the operation is performed synchronously, ...
0
votes
1answer
24 views
Angular UI Router - using ui-sref on child view to change parent view
Im fairly new to angular UI. I am trying to have a ui-view that has a child a tag that has an sref that will change its parent ui-view
Something like this:
<html>
<head>
<meta ...
0
votes
1answer
26 views
how to select default value of ui select?
could you please tell me how to set default value in UI -select .
here is my code
http://plnkr.co/edit/tCrEM4oC9iMSYZffbEAX?p=preview
I want "Adrian" should select as by default .could you please tell ...
2
votes
2answers
37 views
how to select value in UI select value?
could you please tell me how to select value in UI-select value ?
Actually when user select any name I want to select age of item .Here is my code
http://plnkr.co/edit/InxOyQRjrlrDJtx2VuzI?p=preview
...
0
votes
0answers
16 views
date picker button Option angular-ui/ui-date
I want display a text field combined with a button. Click on button opens the date picker window and selecting the date populate the input text field.
I am using angular-ui ui-date for this.
...
0
votes
0answers
11 views
Angular - ui.mask overwrite empty ng-model when invalid
I am using anuglar ui.mask plugin for mask credit card numbers.
and script is working like magic.
BUT: when i have use ui-mask with ng-keyup directive for watching bin numbers. value in my model is ...
0
votes
1answer
24 views
Angular ui: bootstrap datepicket input validation
I'm using this datepicker. As of now, the user can write anything he likes in the input field which is not what I want.
My code:
session.js
session.getDateFormat = function() {
return ...
0
votes
1answer
16 views
angular UI-routing with IIS
i have a website created in visual studio using angular ui routing.
My angular app is named 'PlatformWeb'. When i define a state like
.state('PlatformWeb', {
url: '/PlatformWeb',
...
1
vote
2answers
33 views
angularjs ui-select-choices dropdown aphabetical order depending on the input given
I'm using https://github.com/angular-ui/ui-select for the website I'm working on. Currently the code is as follows:
<ui-select ng-model="model.states">
<ui-select-match ...
0
votes
0answers
14 views
Can't reach value in Angular-ui tagging
I just started using Angular-ui with a multiple select. The goal would be to get emails form the multiple select but in my controller the console log says it is undefined.
In my template file I ...
0
votes
1answer
45 views
Angularjs organizational chart directive
Is there any Angularjs Organizational chart directive for wesnolte/jOrgChart or similar chart?
0
votes
0answers
23 views
Angular UI Modal Controller popup in Meanjs
Problem: I have a modal screen to edit the list data in a meanjs application. I used the yo generator for the CRUD operation. In the edit view I have a modal which has a separate controller which I ...
0
votes
1answer
51 views
angular-ui/angular-google-maps cant set pushpin on a icon
I'm working with angular-ui-google map..my task is to set a pushpin on the map..when ill do that a screen will pop up with the selected address so that i can proceed to the next step...the problem im ...
0
votes
2answers
49 views
Change confirm dialog box button's text in Angular Js
First of all would like to mention that i am new in Angular JS. I have implemented below code in that i want to change button text (By default button names are "Ok" and "Cancel") .i.e "ok" button text ...
0
votes
1answer
16 views
How to append angular ui uib-template to body but still have the reference to the directives' controller?
I've got a directive and I have to append a tooltip to one of its elemenets. But due to existing HTML/CSS code I have to append it to the body instead of this element. But I still need some properties ...
0
votes
0answers
17 views
angular-ui boostrap - timepicker localization
Does anyone know why it isn't possible to update meridians? This is typically something you'd want to do when switching languages...
Is this an oversight (and, if so, is there a workaround) or am I ...
1
vote
1answer
27 views
How to do something when an AngularUI's modal is closed?
I'm working with an AngularUI's modal, and I would like to change a variable of my controller when the modal is closed.
My modal looks like this:
<div class="modal fade" id="awesomeModal" role="...
1
vote
0answers
29 views
Class directive dynamically adding another directives
I'm trying to create an angular directive (as a class) which dynamically adds a angular ui tooltip to the same element. I've tried following, which unfortunately does not work.
MyApp.directive('...
0
votes
0answers
23 views
Close ,opened particular modal on page loads in angular-ui bootstrap
i have a code in routing like this
.state('resetPassword', {
url: '/home/reset_password',
templateUrl: 'home/home.html',
controller: 'HomeController'...
0
votes
1answer
31 views
How to select a tab on Angular UI programmatically?
In this plunk I have three tabs that are created from an array. When I click on the button, I need the one named "Name 1" to be selected and have the focus. How can this be achieved?
HTML
<uib-...
0
votes
1answer
13 views
Editing tab names with double click in Angular UI
In this plunk I have an Angular UI tabset with tabs that are created dynamically.
My objective is to have the user double click on the tab name (tab heading), make the name editable, have the user ...
0
votes
0answers
19 views
Angular UI router - child of abstract state not inheriting data in $stateChangeStart
According to the top answer to this question...
Acess parameters of parent state from child state in stateChangeStart
When you inject toState into $stateChageStart it's supposed to inherit/merge ...
0
votes
0answers
23 views
angular ui popover on options list
I have a list of options that are occasionally longer than the width of the container; and am trying to implement a popover to show the user the whole width of the text. When I inspect the elements on ...
0
votes
0answers
67 views
How can use the md-select in the AngularJS ui bootstrap $modal?
I want to have a Angular material md-select in a angular ui bootstrap $modal.
I'm trying with the following code
MyController1.js
$modal.open({
templateUrl: My.html,
controller: ...
0
votes
0answers
22 views
View not reflecting changes after opening google map window marker - angualrJs
Strange things happening. I'm using ui-google-maps and part of the DOM is not reflecting changes made by controller after i open a info window by clicking on the marker.
Scenario:
I have a ...
0
votes
1answer
29 views
Check box not changing state in Angular UI Modal
In this plunk I have an Angular UI modal window with a checkbox button.
The problem is that the checkbox doesn't change its state when it is clicked.
Try clicking on the button multiple times, you ...
0
votes
1answer
47 views
Cannot change background color of checkbox button in Angular UI
In this plunk I have an Angular UI checkbox button that when active (i.e. pushed) needs to display yellow background with red fonts. That means that if you click multiple times, the colors should ...
0
votes
0answers
36 views
Angular UI multiple ui-select not working
Multiple select in Angular UI-Select not working. This is my example:
<ui-select multiple ng-model="params.filter()['manager']" class="form-control" reset-search-input="false">
...
1
vote
1answer
63 views
How to implement server side pagination in angularjs using angular-ui bootstrap.?
Please suggest different methods to implement server side pagination using angular js and angular-ui bootstrap. I would be paginating a table listing using ng-repeat according to current page selected ...
0
votes
1answer
21 views
Disable dates before today in angular ui datepicker
The website is confusing! How do I disable days prior to this one?
angular-ui.github.io/bootstrap/ (ctrl + f mindate)
0
votes
1answer
31 views
UI-Router optional url parameter preceeding static part
I'm using the 1.x version of UI-Router. I have a site that is broken up by location, each location has identical layouts and content for its pages:
mysite.com
mysite.com/location1
mysite.com/...
0
votes
0answers
2 views
Angular-ui-calendar : Change defaultDate dinamically
I have this config info for a angular-ui-calendar :
/* config object */
$scope.uiConfig = {
calendar: {
height: 450,
editable: true,
defaultDate: $scope.myDateVar,
header: {
...
1
vote
0answers
15 views
Angular-ui-calendar refresh after next/prev
I'm beginning with angular-ui-calendar.
At this moment all basic operations are working ( create events, update events, delete events and show all events from Web API ).
But I have one problema : ...
0
votes
0answers
34 views
bootstrap ui-model popup instance fully remove on close
var modelInstance = $uibModal.open({
templateUrl: Poupurl,
size:'lg',
controller: ModalInstanceController,
close: function (result) {
alert('model close' + ...
0
votes
0answers
51 views
Angular UI Bootstrap Pagination Server side?
I would like to implement server side pagination for angular-ui bootstrap pagination. I will be using scope.items in ng-repeat to display a table listing and initially fetch 50 items from server and ...
0
votes
0answers
52 views
ui.grid A promise was not returned when saveRow event was raised, either nobody is listening to event, or event handler did not return a promise
I am using ui.grid and stuck with celledit functionality. The row gets saved in DB, but shows an error as give below.
angular.min.js:2 A promise was not returned when saveRow event was raised, either ...
0
votes
0answers
13 views
tinymce_angular_ui Extended Valid Elements and custom attributes?
So hopefully a simple question. How can I use to extended_valid_elements option with tinymce ui?
It's running through grunt and I get an error that extended_valid_elements doesn't follow the ...
0
votes
0answers
38 views
What css do I need to add to change the width of angular ui timepicker?
I am using an angular ui timepicker. I've got it inside the dropdown to a popover, and the timepicker hangs off the side of the dropdown. Looks kind of like this...
[trigger dropdown]
...
0
votes
1answer
73 views
Time range slider for AngularJS
I have a time range slider implemented using Jquery and JqueryUI.
$("#slider-range").slider({
range: true,
min: 0,
max: 1440,
step: 15,
values: [600, 720],
slide: function (e, ui) {
var hours1 = ...
0
votes
0answers
54 views
$destroy event called after $state change (angular ui)
i m using ui router for state management. i have some directives that are behaving as listeners of some events
app.directive('signer', ['Constant', "GlobalService",
function (constant, ...
0
votes
1answer
33 views
Angular Calendar - On click get the date
In angular calendar there is an method AlertOnEventClick, which shows an alert when clicked on event. I am trying to alert the user with the date on which the user is clicked.
In this calendar if ...
0
votes
1answer
27 views
Is there a better way to avoid angular-maps relocating my map marker when the map is moved?
So I'm using the (awesome) angular-ui:angular-google-maps for displaying a map. Having to fix some things by a previous coder, but mostly it's quite awesome.
One issue has come up that has me ...
1
vote
1answer
15 views
how to design a state with ui-router that replaces the content only of index.html with two files and two controllers
How to design a state with UI-Router that replaces the CONTENT ONLY of index.html with two files and two controllers.
i have views/dishDetail.html & views/comment.html and
I`m trying this:
....
0
votes
0answers
23 views
Do I really have to set a url in angular-ui when making states?
When i code the states using
$stateProvider.state('test.state', { templateUrl: 'my-template.html' });
It still successfully changes to a different state even if I did not specify the url.
It got ...
0
votes
0answers
26 views
Select Angular UI uib-btn-radio With Keyboard
Part of making a button group accessible is the ability to select it with the keyboard and not the mouse.
How can you select a uib-btn-radio with the keyboard?
<div class="row-fluid btn-group">...