Displaying a Modal Dialog in AngularJS

744 views Asked by At

I am using AngularJS to develop an application. Below is my requirement is like:

  1. User should have search screen to search batch information
  2. once the result is loading, user is click on one of the batch
  3. after opening a batch
  4. When user click on Cancel batch, previous search screen should be open

I am using model dialogue to load search screen and also to display batch information. I am using model dialogue because in my batch information screen, lot of information is available.

This approach is suggested by the client. Please help me how to achieve this approach.

2

There are 2 answers

1
Yaroslav Fedoruk On BEST ANSWER

I think angular-ui helps you to manipulate with modal dialogues.

2
Ravi Sahu On

1)

 Search: <input ng-model="query">
        <ul>
            <li ng-repeat="object in OBJECTS| filter:query">
              {{object .name}}
            </li>
          </ul>
where OBJECTS iterable model in scope
this will show filtered li's 

rest of your questions are not clear