Re: [AngularJS] Removing Hashbang from URL in AngularJs Route

2016-04-05 Thread Mohammad Nasir Uddin
Dear Leandroh I am using Chrome and it's version is: *Version 49.0.2623.110 m.* So I think it's supporting "pushState". Please find me a solution. If you agree then I can send you my sample project. Thanks and Regards Nasir On Tue, Apr 5, 2016 at 11:23 PM, Leandroh wrote: > Is your browser sup

[AngularJS] Angular2 HTML5 compliance

2016-04-05 Thread hani
Is there a way not to use or use shorthands for angular2 attributes on html elements? for example, instead of *ngFor use data-ngfor or something like that? is there a way to do something like this? -- You received this message because you are subscribed to the Google Groups "AngularJS" group.

[AngularJS] Re: Is there a way to control what {{ }} displays for a custom object?

2016-04-05 Thread Fernando Hernández Elías
If you are doing this for translation I suggest: https://angular-translate.github.io/docs/#/api/pascalprecht.translate.filter:translate {{'hello' | translate}} {{ myVar | translate}} https://angular-translate.github.io/ On Tuesday, April 5, 2016 at 5:06:17 PM UTC-5, Paul Selden wrote: > >

[AngularJS] Is there a way to control what {{ }} displays for a custom object?

2016-04-05 Thread Paul Selden
Is there a way to control what gets output for a custom object in an angular expression? I was hoping that overriding the valueOf function would work, but unfortunately it displays it as an object: // js function SuperString(string) { this._string = string; } SuperString.prototype.valueOf =

[AngularJS] calling a jquery function included via ui-jq

2016-04-05 Thread bluejay
Hi there, Newbie on Angular here so pardon me. I have been using Tags Input ( https://github.com/bootstrap-tagsinput/bootstrap-tagsinput) for creating tags on a website. So far so good since I only need to add a ui-jq=“tagsinput” with the input field I plan to include it. Now, there’s a s

[AngularJS] Abort $http request

2016-04-05 Thread Fernando Hernández Elías
USE CASE: I have to do 3 async request when presenting the page, if you click in a button i have to call the same 3 request but with different GET params When each of the requests resolves, I uses $scope.list.push(); because I need to show only those request that resolved OK because of those 3

[AngularJS] Re: Angular2: Websockets?

2016-04-05 Thread vittorio camisa
nevermind, solved import { Component } from 'angular2/core'; import { Panel } from 'primeng/primeng'; @Component ({ selector: "interactive", templateUrl: "scripts/spa/templates/interactive-app.component.html", directives: [Panel] }) export class InteractiveApp { data: any;

Re: [AngularJS] Removing Hashbang from URL in AngularJs Route

2016-04-05 Thread Leandroh
Is your browser supporting "pushState"? "[...] will rely on history.pushState to change urls where supported. Will fall back to hash-prefixed paths in browsers that do not support pushState." - https://docs.angularjs.org/api/ng/provider/$locationProvider -- You received this message because you

[AngularJS] Angular2: Websockets?

2016-04-05 Thread vittorio camisa
Hello, i cant find a way to use websockets in angular2. There is no documentation at all, i found this https://github.com/afrad/angular2-websocket but i cant make it working import { Component } from 'angular2/core'; import { $WebSocket } from 'angular2-websocket/angular2-websocket'; @Component

[AngularJS] Removing Hashbang from URL in AngularJs Route

2016-04-05 Thread Mohammad Nasir Uddin
I am new in angularJs. I just tried to route pages in angularJs. It's working but '#' symbol is shown. So I have used $locationProvider and $locationProvider.html5Mode(true); but it's not working. So I am giving my code bellow to seek for a help to find the problem. I am using CDN of angularJs.

[AngularJS] Re: {{foo.something.replace("\n","")}}

2016-04-05 Thread Maruthi Prasad
This looks fine.But should we need to write filter to handle all such scenario's, html text containing \t \n \r etc ... to interpret them . On Wednesday, February 9, 2011 at 7:13:13 PM UTC+5:30, Paul Hammant wrote: > > I can't do JS things in the middle of an Angular expression of course. >

[AngularJS] Re: angular-slider of words showTicks=true is showing more ticks than expected

2016-04-05 Thread Novin Jaiswal
found the root cause it was stupid css of my project which was causing the issue. resolved On Tuesday, April 5, 2016 at 5:40:51 PM UTC+5:30, Novin Jaiswal wrote: > > Hi, > > I have used rzslider of words in my project, the movement i > set showTicks=true it shows more ticks than expected. > > H

[AngularJS] How update view in angular 2

2016-04-05 Thread jiri . sikora
Simple I need help how should update code for update viewing. The alert is show just msg: 'Well done! You successfully read this important alert message.', when during the app add function addAlert() second msg: 'Another alert!' are not showing , but in console.log are appearing. I trying Obs

[AngularJS] Re: angular-slider of words showTicks=true is showing more ticks than expected

2016-04-05 Thread Novin Jaiswal
one correction $scope.slider = { value: 0, maxValue: 3, options: { floor: 0, ceil: 3, *showTicks:true,* stepsArray: [ "Fair","Good", "Very Good","Excellent"] } }; Angular version: 1.4.8 On Tuesday, April 5, 2016 at 5:40:51 PM UTC+5:30, Novin Jaiswal wrote: > > Hi, > >

[AngularJS] Re: accessing factory variables from multiple controllers

2016-04-05 Thread Rj Ewing
.config(['$stateProvider', '$urlRouterProvider', '$locationProvider', function ($stateProvider, $urlRouterProvider, $locationProvider) { $stateProvider .state('login', { url: "/login", templateUrl: "app/components/auth/login.html", controller: "Logi

Re: [AngularJS] Hotlist Req

2016-04-05 Thread Pawel Kozlowski
On Mon, Apr 4, 2016 at 5:12 PM, Donald Organ wrote: > Can someone remove this person from the list? Banned the author and removed his latest post. Cheers, Pawel -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and s

[AngularJS] Hotlist

2016-04-05 Thread Jahnavi Y
Dear Professionals, Below are the available consultants open to work on contract position. Please share your requirements to *jahn...@csrinfotech.com * *SKILL* *LOCATION* *RELOCATION* *AVAILABILITY* Salesforce Developer NC Open Immediately QA Analyst NC Open Immediately Looking fo

[AngularJS] Javascript library to persist data

2016-04-05 Thread Alan Thales Carvalho
Hi all, I developed a library to record both local data as in the clouds. The API is very simple and easy to use , and persist data through the proxies , you can implement your own proxy. It also has a number of useful functions such as searching data satisfying a condition , group data similar

[AngularJS] angular-slider of words showTicks=true is showing more ticks than expected

2016-04-05 Thread Novin Jaiswal
Hi, I have used rzslider of words in my project, the movement i set showTicks=true it shows more ticks than expected. Here is the sample code // JS// $scope.slider = { value: 0, maxValue: 3, options: { floor: 0, ceil: 3, showTicks=true, stepsArray: [ "Fair","Good", "Very

[AngularJS] Re: AngularJS Class diagram

2016-04-05 Thread Sony Xperia Z2 Tablet
Could you tell which framework do you use in order to create such a graph ? ? ? W dniu środa, 28 stycznia 2015 03:48:11 UTC+1 użytkownik bakunin95 napisał: > > Hi, im working on a node module that generate javascript class diagrams to > document and study web applications. > > Here is a class di