2

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 Answers 2

0

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

Sign up to request clarification or add additional context in comments.

1 Comment

Just go through the doc it has all what you need.
-1

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

2 Comments

Hi Biker, Thanks for reply. My requirement is like to display nested modal dialogue box. First dialogue box is for search screen and after search result when user click on any of the item in search, open another dialogue box. When user click on second dialogue box "cancel" button, first dialogue box is display.
In the controller of modal pass a function that will open new modal... and if are not comfortable with modal instance link

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.