Re: [AngularJS] Re: filter error

2015-12-03 Thread Mr. Adam
blem? I created a plunker to > test your case: > > http://plnkr.co/edit/qzscva8fo6PZzpkTGrPW?p=preview > > It seems to work fine. When I clear the input, filter doesn't apply. > > Thanks, > > Vaibhav Gupta > > > On Sunday, 15 November 2015 16:49:32 UTC+5:30, Mr. Ad

[AngularJS] filter error

2015-11-15 Thread Mr. Adam
hello every one i have a list and input to filter it : the filter work fine when I write any number for the searchCode but when I remove the filtered code the list is not appear... I think because the filtered become null or empty can anyone tells me how to make the filter not accept

Re: [AngularJS] Re: ng-src not update html src after uploading a new image

2015-11-02 Thread Mr. Adam
thanks #Sander your code work with me, but I need to make the upload section and the profile section under one controller ... if they separated like the original post even if i use the same controller it's not working ... thanks man On Mon, Nov 2, 2015 at 4:55 AM, Sander Elias

Re: [AngularJS] ng-src not update html src after uploading a new image

2015-11-01 Thread Mr. Adam
> > Even if the 2 divs inside the one controller still not changes ... I used > jquery to solve this problem and it's working > > $("#UserPhoto").attr("src", data.result.path); > but I would like to use angular to do this instead of jquery -- You received this message because you are

[AngularJS] ng-src not update html src after uploading a new image

2015-10-31 Thread Mr. Adam
hello every one I have a profile and I'm showing the user photo on it after loading his data from database and the binding is working so good in the same page i upload new image and the variable is changed successfully in the script file but the html still the same can anyone tells me what