Table of Contents

AXURE

Libs

Summary

A Prototyping Tool.

Nested If

Simulate nested ifs with dynamic Panels. For each case an own Panel:

1
2
3
4
5
6
7
8
9
10
\\nested if
if (ticketNotValidated){
 if ticket(networkConnectionPresent){
   // Popup A
 }else{
   // Popup C
 }
}else{
   // Popup D
}