[AngularJS] Fwd: Us congress hearing of maan alsaan Money laundry قضية الكونغجرس لغسيل الأموال للمليادير معن الصانع

2017-07-01 Thread sami kamal
YouTube videos of U.S. Congress money laundering hearing of Saudi Billionaire " Maan Al sanea" with *bank of America* and The owner of Saad Hospital and Schools in the Eastern Province in *Saudi Arabia* and the Chairman of the Board of Directors of Awal Bank in *Bahrain*

[AngularJS] Fwd: Us congress hearing of maan alsaan Money laundry قضية الكونغجرس لغسيل الأموال للمليادير معن الصانع

2017-05-20 Thread sami kamal
YouTube videos of U.S. Congress money laundering hearing of Saudi Billionaire " Maan Al sanea" with *bank of America* and The owner of Saad Hospital and Schools in the Eastern Province in *Saudi Arabia* and the Chairman of the Board of Directors of Awal Bank in *Bahrain*

[AngularJS] Angular2 External components in another Angular2 project

2017-05-17 Thread Sreenivas kamal nath
in all projects . I need some artitecture help to build this model . Can somebody guide me on how can we build this model . Thanks in Advance . Kamal -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubs

[AngularJS] Re: ngIf Why doesn't it clean up its watcher?

2015-09-29 Thread Kamal Bhatt
Thanks for the clarification. -- 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, send an email to angular+unsubscr...@googlegroups.com. To post to this group, send email to

[AngularJS] Re: ngIf Why doesn't it clean up its watcher?

2015-09-27 Thread Kamal Bhatt
', function destroy() { removeWatcher() }); I don't know if this is something I misunderstood or something born out ng-if being a special case born out of it being transclude: 'element'. On Sunday, 27 September 2015 19:57:14 UTC+10, Sander Elias wrote: > > Hi Kamal, > > Here is a small pl

[AngularJS] ngIf Why doesn't it clean up its watcher?

2015-09-26 Thread Kamal Bhatt
ockNodes) { blockNodes = jqLite(slice.call(nodes, 0, i)); } blockNodes.push(node); } } return blockNodes || nodes; } Thanks. Kamal. -- You received this message because you are subscribed to the Google Groups "AngularJS" group. T

Re: [AngularJS] Re: AngularJs - Error: [$injector:modulerr] Failed to instantiate module

2015-04-23 Thread Kamal Hafyane
Finally, I have no error but my problem i can't access angular.module('pmapp', ['ngRoute']) .config(function($routeProvider) { console.log(Provider-3); $routeProvider.when('/', { controller : VillecltController, templateUrl : 'scripts/js/partial.html' }); 2015-04-23

[AngularJS] Re: Bind selected option value to model inside ng-repeat

2015-01-14 Thread Kamal Bhatt
Sorry, I meant can you please provide the data you are feeding to the controller that includes this HTML. On Thursday, 15 January 2015 16:29:59 UTC+11, KamBha wrote: Can you give us an example of the data you are feeding into this request? On Thursday, 15 January 2015 03:20:31 UTC+11, @Shaya

[AngularJS] Re: Is it possible to use relative paths (to use images) inside include?

2014-10-06 Thread Mohamed Kamal Kamaly
Sorry to reply on an old post, but I was having the same issues that the paths inside a partial are relative to index.html not the partial location, so I created a module that allows that. https://github.com/mohamedkomalo/angular-relative-paths-in-partial Thanks On Friday, February 22, 2013

[AngularJS] Screen Validation

2014-09-04 Thread kamal presna
Hi Guys, I am fairly new to angular js. i have a scenario to validate either of the two fields. For instance, there is Field A and B. if user enter a valid entry in field A, then its not required to validate field B and vice versa. How to implement this? Thanks KamalPresna -- You received

Re: [AngularJS] Re: Server side validation error messages directive

2014-08-18 Thread Kamal Bhatt (personal)
I don't really want to use such old versions. I am interested in 1.2.x though. Thanks, I will take a look and let you know how well it works in 1.2.x. Also, I am still interested in know what I did wrong. Thanks. Kamal. On 19 Aug 2014, at 4:07, Cesar Andreu cesarand...@gmail.com wrote: I

[AngularJS] Re: binding Html with Angular code inside

2014-05-15 Thread Kamal
Hi Yves, Why dont you use ngInclude https://docs.angularjs.org/api/ng/directive/ngIncludewith templates, where you can change the template name as and when needed. Cheers, Kamal On Wednesday, 14 May 2014 18:26:21 UTC+5:30, Yves Kircher wrote: *Hi, * *How can i bind a html code into a div

[AngularJS] Re: no way to test key event handling directives

2014-04-28 Thread Kamal
Mark, As far as i know its best to use protractorhttps://github.com/angular/protractor for event based testing instead of karma. On Monday, 28 April 2014 02:01:29 UTC+5:30, Mark Volkmann wrote: I have a directive that limits the allowed keypresses in an input to digits and navigation

[AngularJS] Re: compiling an element with ng-minlength has weird results

2014-04-24 Thread Kamal
Roland, Your are not seeing the value in the first input bound to `user.name` because of validation failure of ng-minlength, if you have the value with length grater then or equal to 5 it would show it. This is the validation criteria used by ng-minlenght `ctrl.$isEmpty(value) || value.length

[AngularJS] Re: Can any directive make element draggable or droppable in DOM using javaScript?

2014-04-22 Thread Kamal
Goyal, I found this https://github.com/fatlinesofcode/ngDraggable, it looks like it does what you are looking for (you can get the dom element from the `$event` which is the dom event instance). I have not used this, so can say any thing about it. Hope this helps. Regards, Kamal On Tuesday

[AngularJS] Re: if input is transcluded and directive has isolate scope and own ng-form, will there be multiple instances of NgModelController?

2014-04-22 Thread Kamal
, if its was inside also it depends on the value set for `scope` property while declaring the directive. You can check to see if the `scope` `$scope` are same by `$id` property if the they match ($scope.$id === scope.$id) you have the same scope. Cheers, Kamal On Monday, 21 April 2014 23:28:20

Re: [AngularJS] Re: directive design: pass through input attributes?

2014-04-19 Thread Kamal
no new scope, no issues. I hope this helps. Regards, Kamal On Saturday, 19 April 2014 19:24:05 UTC+5:30, Nikita Tovstoles wrote: Thanks for the reply, Luke. However I don't think your suggestion solves my issue as it describes a specialized directive (ie one supporting ng-pattern only) whereas

[AngularJS] Re: Custom directive to dynamically set HTML based on data

2014-04-19 Thread Kamal
://docs.angularjs.org/api/ng/service/$compileservice for it to work. Regards, Kamal On Sunday, 20 April 2014 03:46:42 UTC+5:30, Jeff Wilson wrote: I'm new to AngularJS and somewhat of a JavaScript amateur as well. I'm have a need to change the contents of a table cell based on the data

[AngularJS] Re: multi-image carousel

2014-04-14 Thread Kamal
You can have a look at this too http://vasyabigi.github.io/angular-slick/ On Tuesday, 15 April 2014 00:49:40 UTC+5:30, Kamal wrote: Neil, I was able to find some thing that would fit your needs at http://gilbox.github.io/kinetic-slider/, if you want to have a look at some other things

[AngularJS] Re: Controller or Directive?

2014-03-29 Thread Kamal
such as JQuery using attributes or Using similar type of complements at multiple places better go for an directive, you can expose some functions/variables into the scope of the directive if need like for clear. Regards, Kamal On Saturday, 29 March 2014 23:21:16 UTC+5:30, Mitchell Hudson wrote: I'm new

[AngularJS] Re: Formsets in AngularJS

2014-03-28 Thread Kamal
. As far as DB goes i am not to keen on MongoDB but you can store each subject object asis from screen which not be a problem with MongoDB. Hope this help, let me know if you need an detailed example. Regards, Kamal On Saturday, 29 March 2014 00:53:40 UTC+5:30, Suma Mallikarjunaiah wrote: Hello

[AngularJS] Re: Passing Any Attribute through a directive

2014-03-23 Thread Kamal
, ng_model: user.pass, label: Password, help: What is your name?, placeholder: enter passcode, ng_required: true}} /trans-from Regards, Kamal On Sunday, 23 March 2014 02:22:49 UTC+5:30, Jarrett Lusso wrote: So I am trying to replicate a simple_form_for like alternative in angularjs

Re: [AngularJS] Dynamically row generation.

2014-03-21 Thread Kamal
Deeksha, I have update Lorenzo's plnkr to have textareas for each row and bound them using ng-model, hope this what your expecting. http://plnkr.co/edit/JVHFWU?p=preview On Friday, 21 March 2014 10:09:31 UTC+5:30, Deeksha Sharma wrote: Hi Lorenzo, You have created it beautifully but my

[AngularJS] Re: Quick question about ngAttr

2014-03-21 Thread Kamal
. Regards, Kamal On Thursday, 20 March 2014 20:31:55 UTC+5:30, Fernando Gabrieli wrote: Hi all, do you know what version of Angular supports the ngAttr directive? I am using v1.0.8 cheers Fernando -- You received this message because you are subscribed to the Google Groups AngularJS

[AngularJS] Re: How can I initialize a variable in controller from a view?

2014-03-11 Thread Kamal
Denis, Its because $watch is only executed when there is a change in value for the give variable to watch, in this case the ng-init gets executed after the controller (by that time your log of x is already executed) where the value is change there by you see myData as `world`. Simply put `x`

[AngularJS] Re: How to use $rootScope.$on to register a listener?

2014-03-11 Thread Kamal
Siyuan, args are the arguments which are passed to the $emit/$broadcast methods which invoke the methods registered using the $on. Let's see an example $scope.$emit('myevent', First Name, Last Name, 3, Test); - To Emit $scope.$on('myevent', function(event, fname, lname, role, extra) { //

[AngularJS] Re: Looking for ideas/suggestion on how to implement inheritance with directives

2014-03-10 Thread Kamal
to bind them with an event in case of sortable `update` would do, on invocation of which you hate to serialize or use toArray would be generate the sorted list which you can update in your scope. Best is to use an ngModelControler which make it easy for updating the scope values. Regards, Kamal

[AngularJS] Re: Looking for ideas/suggestion on how to implement inheritance with directives

2014-03-10 Thread Kamal
to bind them with an event in case of sortable `update` would do, on invocation of which you hate to serialize or use toArray would be generate the sorted list which you can update in your scope. Best is to use an ngModelControler which make it easy for updating the scope values. Regards, Kamal

[AngularJS] Re: DOM manipulation and $compile not working

2014-03-09 Thread Kamal
Luke, An small update on the code, the angular.element should be used for `temp.chldNodes[11]` as html is an jqLite/JQuery methods which is returned by angular.element. As the TypeError also states undefined is not a function which would be `*.html` *in this case. And also childNodes would

[AngularJS] Re: radio button with multiple fields

2014-02-25 Thread Kamal
Kumar, Please find the updated plnkr http://plnkr.co/edit/Bc4z9mHPlHOctnNBlQGP?p=preview It does not select the radio button on click, I dint see a way at the movement, i think you can do it by adding an ng-click and select the radio. Hope it's useful, Kamal On Tuesday, 25 February 2014 17

[AngularJS] Re: radio button with multiple fields

2014-02-25 Thread Kamal
Kumar, use same name attribute for both the radio radio button tags that prevents it from selecting both at a time. Have update the plnkr for the same. http://plnkr.co/edit/Bc4z9mHPlHOctnNBlQGP?p=preview On Tuesday, 25 February 2014 18:15:05 UTC+5:30, Pushpendra Kumar wrote: Thanks Kamal

[AngularJS] Announcement: NU Angular UI Derivatives [Switch, Press Button, List (Test/Picture), File Chooser]

2014-02-24 Thread Kamal
at the demohttp://gkodes.github.io/ngul/. demo: http://gkodes.github.io/ngul/ git: https://github.com/gKodes/ngul Hope it's useful, Kamal -- You received this message because you are subscribed to the Google Groups AngularJS group. To unsubscribe from this group and stop receiving emails from

[AngularJS] Re: AngularUI Glyphicon Button Toggle

2014-02-08 Thread Kamal
Andrew, I am working on a directive for a similar need, please find the plnkr for the same. Its a mix of css angular directive it work using an checkbox with a label which shows different styles on checked status http://plnkr.co/edit/fiV4lPJb4zzYiySivLJR?p=preview On Friday, 7 February 2014