Tagged Questions
0
votes
0answers
3 views
UI-Router hide parent template
Suppose a state called projects.new where new is a nested state of projects.
Is there a way to hide the parent's template to show only child template?
0
votes
1answer
17 views
Angular how to get route id at resolve block?
How can i get "pageid" inside resolve block?
For every url change i had to request the server, along with the "pageid"?
My code:
app.config(function($routeProvider){
$routeProvider
...
2
votes
2answers
30 views
angular js for handling UI, validation and exception management
I am new to angularJS and I went thru this tutorial on it but did not find anything pertaining to how to create or handle UI elements like modal windows, date controls, file upload with progress bar, ...
1
vote
4answers
50 views
Angular-ui-bootstrap datepicker directive - bring to front
I am having troubles combining the bootstrap grids with the angular-ui date picker. On my page there is a column, which has width smaller than the width of the date picker. The datepicker is cut when ...
0
votes
1answer
10 views
Angular js - pop up value not reflected in ng-model, and not able to close
I am trying to add the mark details of student and the teachers comments about the student using angular js, as below.
I have inlcuded pop up component from my controllers.js at run time based on ...
0
votes
1answer
21 views
Trouble updating complex model via Angular UI modal
I have a model with nested arrays corresponding to sections of a floor plan. Within each of the floor plan's sections is an array of booth objects. Let's say I have a view of this data that displays ...
1
vote
2answers
45 views
AngularJS with AngularUI Bootsrap pagination directive doesn't hide results
I'm trying to use Angular-ui pagination directive for the first time and am confused why it isn't working. I can see the pagination buttons and it properly displays two pages to paginate through since ...
0
votes
0answers
12 views
UI-Select2 shows id in tag
Here is the example
It should show text instead of id. However, it shows id now.
When I look into the code, I found this line
var convertToSelect2Model = function(angular_data) {
var ...
0
votes
0answers
23 views
UI Bootstrap checkbox and radio slow on ipad
Trying to implement Checkbox and Radio buttons from http://angular-ui.github.io/bootstrap/ but it is very slow (about a second) to react.
Is there something I can do to make it react more quickly? Or ...
0
votes
0answers
16 views
slide toggle from left to right in angular js
I am using hide and show an element using the angular JS . Angular toggle collapse working fine from slide up and slide down. How can I do the same thing sliding from right to left with some ...
2
votes
1answer
26 views
Handling trailing slashes in angularUI router
It's been hours since I started working on this problem and I can't seem to get my head around the solution.
I have an app that may result in users actually typing in the URL. In such cases it is not ...
0
votes
2answers
39 views
Why do Angular UI buttons have a different focus border in Chrome than they do in IE?
Can anyone tell me why button focus borders are rendered with a black dashed border by default in IE11 and with a blue solid border in Chrome? You can see this if you go to ...
0
votes
0answers
30 views
Angular JS data not getting populated
I am trying to make service call to some rest api and on the success of it again I am making service call to some other rest api. In the success of second api I am trying to populate some scope ...
0
votes
0answers
23 views
Pass plain value to model Select2 angular-ui
I use select2 from angular-ui, everything works ok, but it passes to ng-model object and I need to get plain value
this is in controller
$scope.units = {
...
0
votes
1answer
21 views
How to set dynamic data-title in ngtable (angular plugin)
I want have a multi language view with an ngTable. For do that, i set in my controller a $scope.translate (a valid json) who contains my traductions. In my view i want set my data-title like ...
0
votes
0answers
6 views
Angularjs ui-rangeSlider onHandleUp
Here is the HTML
<div range-slider min="0" max="100" model-max="rangevalue.value" pin-handle="min" onHandleUp="x()"></div>
and i want to do something like this.
$scope.x=function(){
...
0
votes
0answers
37 views
Ionic framework and angular ui calendar issue?
I am using ui calendar to provide a calendar view in my application.
Question:
The calendar loads fine and the calendar also accepts events just that I can not seem to access the calendar object ...
2
votes
1answer
40 views
Angularjs ui-router blocking access to non-state routes
I am using ui-router in an angular site I'm making, but cant get it to allow routes through to my server. I have facebook oauth authentication on my server, where I navigate to /auth/facebookand the ...
0
votes
0answers
25 views
Change the location address without causing state loading
I am using AngularJS 1.2+ and Angular UI Router.
I am trying to change the location address without causing a reload. I tried the following but it didn't work:
function setPath(stateName, ...
2
votes
0answers
43 views
Bootstrap ui angularjs with filter issue
I am using Bootstrap UI in my angular application. I have a tooltip in the html page which works fine. I noticed that after the tooltip is displayed and I move my mouse out, the Ui-bootstrap-tpls.js ...
2
votes
1answer
45 views
AngularJS UI Bootstrap testing modal instance controller
This is a somewhat of a follow-on question to this one: AngularJS UI Bootstrap mocking $modal in unit test
The referenced SO is an excellent question with very useful answer. The question I am left ...
-2
votes
0answers
32 views
angularjs typeahead with ui mask
See this plunker:
http://plnkr.co/edit/0Osy3uLOrJCm8DRG30Vs?p=preview
I wanted to combine the ui.mask directive with ui.bootstrap.typeahead directive. When I apply the ui-mask directive to the ...
0
votes
2answers
39 views
Module 'ui.bootstrap' is not available - Angularjs
I am facing a strange problem with my angularjs project.
I have a website like - www.server.com/pwm (home page). In the page there is an anchor tag with takes me to another page - ...
0
votes
0answers
28 views
Django-Angularjs dynamic rating app
I trying to create a Angularjs rating app with django. I'm using the rating mechanism from angular-bootstrap. http://angular-ui.github.io/bootstrap/
I've created a controller which can handle ratings ...
0
votes
1answer
37 views
Dynamically set the value of ui-sref Angularjs
I have searched for a similar question but the ones that came up seem slightly different.
I am trying to change the ui-sref='' of a link dynamically (this link points to the next section of a wizard ...
0
votes
1answer
32 views
Using flexbox layout with angular-ui tabs
I wan't to use flexbox layout with angular ui tabs (ui.bootstrap.tabs). I have this plunker:
http://plnkr.co/edit/9ToL1WLwgDVT0DldMnaa
I changed the ui-template thus all div's get the flexbox ...
0
votes
0answers
11 views
jquery select2 with bloodhound.js suggestion engine
I am using the angular-ui selector2 wrapper tom implement some tagging like functionality.
I use bloodhound in other areas of the site for typeahead suggestions and I have a bloodhound engine already ...
0
votes
1answer
33 views
AngularJS ui-bootstrap open modal window without changing the url
I am using the ui-bootstrap module in my AngularJS project. Before I open the modal the url looks like this : localhost:58890/#/Project/46. The code that opens it is here :
...
0
votes
2answers
52 views
Angular JS - Is there any way to dynamically select templates
i have a problem with angularjs router function:
How can I dynamically choose templates for my app.
I have an app which is completely drive by 'its api's'. The api's contains 'template info along ...
0
votes
1answer
35 views
Showing a google map in angular-ui modal?
Trying to load a simple google map within an angular-ui modal. However no luck. The data get's passed in fine, but nothing works in terms of the map... Please help.
...
-2
votes
0answers
13 views
Will ASP.Net telerik RAD Controls work inside angularjs single page application?
Wondering around for more that 2 days with this issue. Please help
i have a product build with full and full telerik rad controls. Now i am going to to change the UI. My idea is to go with angularjs ...
1
vote
1answer
41 views
How to retry route request on $stateNotFound event in AngularUI Router
I have a large AngularJS application which is split into different functional modules. It is currently bundled into single JavaScript file and thus all the modules are loaded on initial page load. I ...
0
votes
0answers
39 views
Build a Angular UI multi-level Dropdown menu
all
I have been experimenting with angularjs and all the interesting stuff with angularjs. I tried to build a existing responsive dropdown menu with angularjs and angular-ui and came across
...
0
votes
1answer
18 views
shortenning angular code to one method
how can I shorten my code so I dont have to use two different methods to do a file upload for two different fields
this is what I have
<input type="file" name="file" ...
0
votes
1answer
16 views
angular send data to view
I have a link in as this
<li ng-repeat="x in data"> <a ng-href="/myurl#/view">{{x.id}}</a> </li>
I want to send x.id to myurl controller.
here is my router
...
0
votes
0answers
30 views
Cannot get ui-router view to load
This is my app.js file:
angular.module('app', ['ui.router'])
.config(function config($stateProvider, $urlRouterProvider) {
$stateProvider
// route for the home page
.state('index', {
...
0
votes
1answer
33 views
display binary image from db to angular partial view
I was trying to display image which is coming within the json object returning from an web api request. I'm able to display string, number and date/time in my angular partial but couldn't get the ...
-1
votes
1answer
45 views
how ng-grid manage to show data using pagination?
i am getting 10k record from db.how ng-grid is managing at client side if i use 10 per page pagination.
Below is the snippet of the code.
<div class="dataGridClass" ng-grid="gridOptions" />
...
0
votes
0answers
44 views
Add Checkbox to header of ng-grid. At time maximum 2 checkbox selected
[Diseregard checkbox in row in below picuter but]
I want to have checkbox besides four header i.e. Maths, Physic, Chemistry and Biology. I also want to this checkbox behave similiar to redio button ...
0
votes
1answer
32 views
Angular-UI typeahead - Working in v0.04 but not in v0.11
I'm essentially trying to the same as in this issue, which was solved with this.
The goal is to use Angular-UI's typeahead function to set the model to one value, while showing another to the use. ...
0
votes
0answers
31 views
ui.router - 3 levels of complex nesting
How to configure my routes using ui.router
This is My home page design structureHome design
Home page has left side menu with options Tasks,Events and notes
Whenever I click on Tasks from left menu, ...
0
votes
0answers
20 views
Adding Pace.js loader to angular.js modal containing videos
I have angular ui bootstrap modal which has videos, I have posted same question week ago here is the link of that question my previous question ,
but did'nt got any response, anyhow i found pace.js ...
0
votes
3answers
98 views
Angular bootsrap datepicker date format does not format ng-model value
I am using bootstrap date-picker in my angular application. However when I select a date from that date-picker underlying ng-model that I have bind gets updated I want that ng-model in one date format ...
0
votes
1answer
17 views
user custom directive as angularUI popover content
What I am trying to archive is to have a popover to show the user detail information when I click on the username. And I would like to use a partial to template the detailed information that will be ...
0
votes
0answers
42 views
AngularJS + Fullcalendar send error TypeError: Cannot read property '__id' of undefined
im using angular-ui-calendar in my website.
In the controller, i have writed this:
define(['underscore'], function (_) {
"use strict";
var SearchController = function ($scope, $location, ...
0
votes
2answers
25 views
Dropdown broken in modal on 0.11
I'm facing this problem. I'm migrating from 0.10 to 0.11 of bootstrap ui and the dropdowns inside modals stopped working at all. I don't know if it is a layout problem but I can't figure out how to ...
0
votes
1answer
41 views
Different templates for one AngularJS application
I am trying to create in AngularJS "normal" WEB application, which will have different:
template with login form
template with content
When open application - show login form, after submitting ...
0
votes
2answers
105 views
AngularUI monthpicker in popup shown as datepicker
I'm trying to use the angular ui datepicker in monthpicker-mode as a popup, but it is shown as a datepicker.
I've found a working example of the monthpicker as inline-picker here, but I need it as a ...
0
votes
2answers
80 views
How can I trigger an angularjs event handler from another handler?
I'm using AngularJS 1.3.0-beta.2, jQuery 2.1.0, Angular UI 0.11, and my custom version of Angular UI's Tooltip widget, and I want buttons within my tooltip to close the tooltip when clicked.
Plunkr
...
0
votes
2answers
86 views
Angular UI router - acess stateParams from other state
I am beginner for Angular and I am sorry for my bad english. I find similar questions and answers but it doesn't help to my code... I want something like this
.state('members.detail', {
...