[AngularJS] Re: Releasing Angular Table, the first 100% declarative angular table grid directive

2014-04-07 Thread Stefano Tondo
Hi David, thanks for the nice work. Just a few question though. I also stopped using ng-grid and smart-table because of the lack of some useful functionality, like hiding columns, but still keep them in the collection. Quick example: hiding an ID, but using it on selected row event to do someth

[AngularJS] AngularJS Eclipse 0.1.0

2014-04-07 Thread Angelo zerr
Hi AngularJS guys, If you are Eclipse user, I would like to introduce to you AngularJS Eclipse . AngularJS Eclipse Plugin extends Eclipse WTP to : - provides an HTML editor which supports AngularJS expression and directive. See HTML featur

[AngularJS] Can't get ng-include to work with IE9

2014-04-07 Thread JussiP
This code breaks my system completely with IE9. All other browsers seem to work ok. If I remove this ng-include, all goes well but with the include, IE9 gets only all the routes what have been tried. Any help on this? Thanks in advance! BR, Jussi -- You received this message because you a

[AngularJS] Re: Submit Button Not Working on Android

2014-04-07 Thread cutey Love
It's also not working on a frends withdows 7 laptop it's definatley to do with ngresource On Saturday, April 5, 2014 4:49:09 AM UTC+1, xrd wrote: > > Do you know how to debug using Chrome on Android? > > https://developers.google.com/chrome-developer-tools/docs/remote-debugging > > I would recomm

[AngularJS] Re: Submit Button Not Working on Android

2014-04-07 Thread cutey Love
The winows laptop is giving the error No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin is therefore not allowed access. Not sure why? this is on production site, not local. On Monday, April 7, 2014 11:18:09 AM UTC+1, cutey Love wrote: > > It's also not worki

[AngularJS] Re: Submit Button Not Working on Android

2014-04-07 Thread cutey Love
The site and the requested page via ngresource are the same domain On Monday, April 7, 2014 11:19:32 AM UTC+1, cutey Love wrote: > > The winows laptop is giving the error > > No 'Access-Control-Allow-Origin' header is present on the requested > resource. Origin is therefore not allowed access. >

[AngularJS] Scrollable table

2014-04-07 Thread Blasphemyr
Hi, I am generating a table from JSON-Data and I want to have that table a certain height (lets say 200px) the rest should be scrollable. How can I do that with Angular? Thanks -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe fr

[AngularJS] Re: Submit Button Not Working on Android

2014-04-07 Thread cutey Love
Solved just needed to add www. On Monday, April 7, 2014 11:20:44 AM UTC+1, cutey Love wrote: > > The site and the requested page via ngresource are the same domain > > On Monday, April 7, 2014 11:19:32 AM UTC+1, cutey Love wrote: >> >> The winows laptop is giving the error >> >> No 'Access-Control

[AngularJS] "Static" menu and "static" directive

2014-04-07 Thread Yonatan Kra
Hi, I have built a nice app with angular js and it's working fine. I have 2 questions that are quite similar: 1. I have a menu that's the same for all of my routes/views. The reason the menu is inside the view and not static in the main index.html is that I need data from services and

[AngularJS] Re: "Static" menu and "static" directive

2014-04-07 Thread Sander Elias
Hi Yonatan, > >1. I have a menu that's the same for all of my routes/views. The >reason the menu is inside the view and not static in the main index.html > is >that I need data from services and the scope to populate the menu. Is > there >a way to make the menu "static" and no

[AngularJS] Lazy load items on window scrolling

2014-04-07 Thread SwastikMS
I have tried as given below, but neither window is scrolling nor any method is getting called: app.directive('whenScrolled', function() { return function(scope, elm, attr) { var raw = elm[0]; elm.bind('scroll', function() { if (raw.scrollTop + raw.offsetHeight >= raw.scrollHeig

Re: [AngularJS] Scrollable table

2014-04-07 Thread Raul Vieira
Based on your requirements it seems like all you need is css. ... you can also have a look at nggrid. Raul On Apr 7, 2014, at 6:32 AM, Blasphemyr wrote: > Hi, > > I am generating a table from JSON-Data and I want to have that table a > certain height (l

[AngularJS] Re: Scrollable table

2014-04-07 Thread Blasphemyr
Thx yes that works: I tried that on the table-element instead of the div container around. And for that table it was not working. Again thx a lot Am Montag, 7. April 2014 12:32:03 UTC+2 schrieb Blasphemyr: > > Hi, > > I am generating a table from JSON-Data and I want to have that table a > ce

[AngularJS] Vertical Text in Ngtable header

2014-04-07 Thread ramasubramaniyan jeyaraman
i'm having a table -> ng table with ng-repaet values i want to display the Header text of the table from the 3rd Column vertically. whether it is possible to accomplish this in css3? -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscrib

Re: [AngularJS] Vertical Text in Ngtable header

2014-04-07 Thread Raul Vieira
have you tried transform: rotate()? On Apr 7, 2014, at 8:25 AM, ramasubramaniyan jeyaraman wrote: > i'm having a table -> ng table with ng-repaet values > > i want to display the Header text of the table from the 3rd Column > vertically. > > whether it is possible to accomplish this in css

[AngularJS] Communication between nested directives (with isolated scope)

2014-04-07 Thread Ben Heymink
I'm trying to communicate between a parent directive and its nested child directive, and the other way. I've managed to achieve this by using $broadcast and $emit, but because I'm passing in some arguments to the directives I've had to create isolated scope on my directives, so in order for the

[AngularJS] Re: Communication between nested directives (with isolated scope)

2014-04-07 Thread Sander Elias
Hi Ben, You better request the parents directive controller in your child directive. Way quicker, and less error-prone. If you would post a link to your plunk, I can take a look ;) Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group.

[AngularJS] Re: Communication between nested directives (with isolated scope)

2014-04-07 Thread Ben Heymink
Link in the original post, or here . If I edit that plunker to require '^directive1' it can't find it, maybe because of the transclusion? On Monday, April 7, 2014 2:01:42 PM UTC+1, Sander Elias wrote: > > Hi Ben, > > You better request the pa

Re: [AngularJS] Vertical Text in Ngtable header

2014-04-07 Thread ramasubramaniyan jeyaraman
yes i tried. the text is rotating but the thing is that i need to rotated the headers of the table from the third column On 7 April 2014 18:10, Raul Vieira wrote: > > have you tried transform: rotate()? > > On Apr 7, 2014, at 8:25 AM, ramasubramaniyan jeyaraman < > ramasubramaniyanjey

[AngularJS] Cannot get 2 different Angular ng-apps to work on 2 canvases on the same page

2014-04-07 Thread molinus
In my ASP.NET MVC application, I am trying to put together a page where the user can both sign and print their name once at a workstation equipped with a Wacom. The signatures will be saved to PNGs with links in a database and then stamped in the designated area of each form, upon user approval

[AngularJS] Delay view change

2014-04-07 Thread Tomasz Jureczko
Dear Brilliant JavaScript'ers, I have an AngularJS 1.2.9 app. My task is: On a link clicked (ng-click) start an animation and delay view change until animation finishes. By animation I mean a CSS transition. So simply I want to delay view change for the time of an animation. Could you please

[AngularJS] Re: Scrollable table

2014-04-07 Thread Blasphemyr
Hi what if I want to make the thead fixed while scrolling? actually I can not fire any jquery on the grid :( Am Montag, 7. April 2014 12:32:03 UTC+2 schrieb Blasphemyr: > > Hi, > > I am generating a table from JSON-Data and I want to have that table a > certain height (lets say 200px) the rest

[AngularJS] Re: Delay view change

2014-04-07 Thread Tomasz Jureczko
For now I will just run a function on ng-click. In this function I will just do (code in CoffeeScript): sleep 1 @location.path "/new-path" NgController.digest @scope where the css-transition takes one second. Now I just need to add a CSS class on the click to start the transit

Re: [AngularJS] Re: Why does Angular use Selenium WebDriver to test its own sites instead of Scenario Runner?

2014-04-07 Thread flavouski
I realize this is an older thread, but I had found it in the search resluts. It is also worth noting on https://www.exratione.com/2013/12/angularjs-headless-end-to-end-testing-with-protractor-and-selenium/ Either way, this framework for end to end testing is now obsolete and is in t

[AngularJS] Using WYSIWYG(jquery-te) inside the Flipbook(turn.js) + ANGULARJS

2014-04-07 Thread Bhuwan Arora
I need to create a WYSIWYG(using jquery-te) inside a flipbook (turn.js) in an angularjs environment. About Turn.js: it keeps "6-pages" at any instant of time in the cache and then loads the other pages as the pages are turned. This results in angular compiled bindings to be destroyed. The te

[AngularJS] Re: "Static" menu and "static" directive

2014-04-07 Thread Yonatan Kra
Hi, Thanks. 1. Do you mean "nested controllers"? Like 2. I've found your answer regarding $formatter (https://groups.google.com/forum/#!searchin/angular/Sander%7Csort:date/angular/ikEnKkoAUF8/qt21aRgu8iAJ) but could not make the connection to my case with that. Is this the one? T

[AngularJS] Re: Communication between nested directives (with isolated scope)

2014-04-07 Thread Sander Elias
Hi Ben, I updated your sample a bit. http://plnkr.co/edit/5LZuOLx6lcr495QxGbqJ?p=preview Not much time now (dinner call already in ;) ) so no explanation. if you need one, just ask, and I will provide one later on! Regards Sander -- You received this message because you are subscribed to the

[AngularJS] Re: "Static" menu and "static" directive

2014-04-07 Thread Sander Elias
Hi, >1. Do you mean "nested controllers"? Like ng-controller="menuCtrlr"> > > Yes, that is what I mean. >1. I've found your answer regarding $formatter ( > > https://groups.google.com/forum/#!searchin/angular/Sander%7Csort:date/angular/ikEnKkoAUF8/qt21aRgu8iAJ) > >but c

[AngularJS] how do I display a "detail" web page?

2014-04-07 Thread T M
hi, I need to prepare a detail form for update. That is to mean, there should be exactly one single record for the detail page. However, I understand I should not use ng-repeat, but what should I use? The result is in my attached screenshot, the form fields has a null replica. How should I remo

[AngularJS] Re: Urgent: I need a hackaround to stop template caching in $routeProvider

2014-04-07 Thread Marcelo Dezem
Seems like Angularjs is not for your project. Its design aims to made easy single page web apps, fatty clients, etc. It expects that the client will do API calls to the server to get data, not templates (it's a contradiction use the word template, templates are static by definition), thus provid

[AngularJS] How to post the data in AngularJS

2014-04-07 Thread Arun S.P
Hi All, What is the best way to post the data in AngularJS? I'm using AngularJS with Struts1.2, First I tried to get the data from the server to display it in .jsp it was executed successfully. Now I'm trying to post the data to the server. I'm facing couple of

[AngularJS] $resource doesn't respect domain part of the URL while $http does

2014-04-07 Thread junmin liu
$resource is powerful way to deal with Restful However it seems $resource doesn't respect domain part of the URL while $http does. If I do this: $http.get('https://localhost:9443/IBMJMXConnectorREST/mbeans/WebSphere:type=JvmStats/attributes/Heap').success(function(data) {

Re: [AngularJS] How to share a $scope.variable with a child scope

2014-04-07 Thread William Szeliga
Glad this helps, apologies for not posting in SO earlier, got a little busy. On Sat, Apr 5, 2014 at 7:35 AM, Rob Munro < [email protected]> wrote: > yep that got it - thanks very much. > > I am *loving* this Angular stuff - totally brilliant. > > thanks agin > best rob > >

[AngularJS] Re: .htaccess for SEO bots crawling single page applications WITHOUT hashbangs

2014-04-07 Thread Sam Ward
Having the EXACT same problem...I was thinking about figuring out how to do it with .htaccess, as you have done here. What did you end up doing? On Monday, July 29, 2013 11:55:04 AM UTC-4, Daniel Kanze wrote: > > Using a `pushState` enabled page, normally you redirect SEO bots using the > `escap

[AngularJS] Problem Ajax Call not binding in view

2014-04-07 Thread Diego Freitas
Hey guys, I'm having problem to bind the variable in the view. It was working using mock but then I changed to Ajax call stop working ... I have this in my *service*: moduleApp.service('concertService', function () { > var concerts, > baseUrl = > "http://findconcertsservice.cloudapp.net/FindCo

[AngularJS] progress bar not working in IE11

2014-04-07 Thread Stefan H
My code should display a progress bar using ui-bootstrap-tpls-0.10.0.js (newest one). It works fine with all browser, instead of IE. Using IE 11 the progress bar is every time white. If I click on this bar, the percentage number gets visible as text (e.g. 45%). But I never see a colored bar. I

[AngularJS] Problem with Reloading View after Ajax Request

2014-04-07 Thread byadav
Hi, For last 2 days, I am facing a problem with reloading/refreshing my view in dialog box. Below I have mentioned my code: angular.module("vss_shoppingcart_modal",["ui.bootstrap","dialogs","ngSanitize"]).controller("vss_shoppingcart_dialogService",function($scope,$r

[AngularJS] Re: .htaccess for SEO bots crawling single page applications WITHOUT hashbangs

2014-04-07 Thread Sam Ward
For now, I'm using .htaccess like this: RewriteCond %{QUERY_STRING} ^_escaped_fragment_=(.*)$ RewriteRule ^$ /snapshots/index.html? [L,NC] RewriteCond %{QUERY_STRING} ^_escaped_fragment_=(.*)$ RewriteRule ^(.*)$ /snapshots/$1.html? [L,NC] Not sure if there's a better solution, but

Re: [AngularJS] Re: "Controller as" syntax - not a good idea

2014-04-07 Thread Samantha Atkins
I am confused. My understanding is that in an angular Controller 'this' refers to the controller context itself like any other constructor function where '$scope' is current angularjs $scope/view object. They are not the same thing. If you define a function on 'this' and a function on '$sc

Re: [AngularJS] My http Accept headers are ignored. How do I set them?

2014-04-07 Thread Peter Ansell
Hi Martijn, I am working on a fix to support Angular JS and Chrome in my application and this issue came up. Other javascript frameworks seem to put "type='application/javascript'" on the script element when creating it. Could Angular do that also to give a hint to the browser when making the

[AngularJS] Re: Problem Ajax Call not binding in view

2014-04-07 Thread Sander Elias
Diego, your findall function does NOT return a value. It will execute, and once done it will send off the data to nowhere. ajax calls are async, and can be programmed this way. Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To u

[AngularJS] Re: progress bar not working in IE11

2014-04-07 Thread Sander Elias
Hi Stefan, Use the link on top of the newsgroups, and build a plunk, this way you probably get an answer much sooner. Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it

[AngularJS] Re: Problem with Reloading View after Ajax Request

2014-04-07 Thread Sander Elias
Hi ___, You should build a plunk, so we can look what's happening for you. That aside, I see you include a dialog module, and have no idea where that is coming from. If you look up the documentation of your dialog service, there probably is a method to update the display. Regards Sander -- Y

[AngularJS] need list->update form sample code

2014-04-07 Thread T M
hi, I am very confused about AngularJS. Do you know where can I find some list (multiple record)-update (a single selected record in detail) form sample code? A complete CRUD sample with real database access will be the best. Thank you! -- You received this message because you are subscribed t

[AngularJS] Generated javascript in HTML page

2014-04-07 Thread Hariprasath Manivannan
I have a angular js page, in which I get a javascript generated dynamically from backend. Example below https://secure.echosign.com/public/widget?f=8GM4H46Y5W7I26";> I have the following in my HTML And following is my js var app = angular.module('myMod', []); app.controller('MyCtrl', fu

[AngularJS] Re: Why are $formatters called on user input when the input field is $compiled?

2014-04-07 Thread LLoydsensei
Hello Sander Thank you for your answer! I didn't quite understand why the input goes through the $formatters chain, but I understand your explanation telling me not to do it wrong so I won't go down that path again ^^ Thank you also for your $compile change, I could not have guessed that :) Reg

[AngularJS] Re: Problem with Reloading View after Ajax Request

2014-04-07 Thread byadav
Hi, I have used an example of modalbox based on Angular JS. In that example there is no function used for view update. On Tuesday, April 8, 2014 12:48:45 AM UTC+5:30, [email protected] wrote: > > Hi, > > For last 2 days, I am facing a problem with reloading/refreshing my view > in dialog box. B

Re: [AngularJS] Re: Why does Angular use Selenium WebDriver to test its own sites instead of Scenario Runner?

2014-04-07 Thread Jeff Hubbard
Karma is still used for sure--it's the unit test runner. Protractor is replacing Angular Scenario Runner, which is the end-to-end browser testing tool. On Monday, April 7, 2014 7:21:01 AM UTC-7, [email protected] wrote: > > I realize this is an older thread, but I had found it in the search > r