Page 1 of 1

Drop down list

Posted: Tue Jun 30, 2015 2:00 am
by kate7614900

Hi is there a javascript for this?
For example when I click on accounts it will lead me to the next page - account page. And when I click on email it will leads me to the email list page.

Image


Drop down list

Posted: Tue Jun 30, 2015 2:34 am
by She

Hi kate,
You can use if statement here or select statement, the example below is if statement:
code
//this is just a hint:
if(dropdown == 'account'){
navigateTo ('AccountPage');
}else{
navigateTo ('EmailPage');
}
/code

GoodLuck,
She


Drop down list

Posted: Mon Jul 13, 2015 7:01 am
by kate7614900

thanks for the help:)