How to move to particular form using advanced slidingmenu from marketplace?

This thread was migrated from an old forum. It may contain information that are no longer valid. For further assistance, please post a new question or open a support ticket from the Customer Support portal.

I am using advanced slidingmenu from market place. How can i move to particular form based on menu actions. I am getting menu index i want to replace a target container with another form.

Hello

Whenever components are used , There will be some properties, methods and events get exposed to the user . We need to make use of those properties.

Click on slidingMenu on your form and go to the action tab towards the right window. You will see onMenuItemClick . You can configure your function over there .

function onclick(Index)

{

}

Index is the menuindex that you have clicked.

Hi Radhika,

Thanks for your reply.

I have written below code for that i was able to move particular screen from slidmenu list but i was unable to move to again for particular screen from slide menu list . please let me know.

this.view.slidingmenu.onMenuItemClick = function(menuindex) {

var menuIndex = parseInt(menuindex);

switch (menuIndex) {

case 0:

var navObj = new kony.mvc.Navigation("slidemenu");

navObj.navigate();

break;

case 1:

var navObj1 = new kony.mvc.Navigation("cartForm");

navObj1.navigate();

break;

default:

var navObj2 = new kony.mvc.Navigation("slidemenu");

navObj2.navigate();

}

};

Hello,

You should be able to move different screens based on the index . Please attach your sample and give the steps to replicate the issue then we can help you on this .

Note : Advanced SlidingMenu is now Advanced HambergerMenu

https://marketplace.kony.com/items/advanced-hamburger-menu

Please use the above component and place your concern if any.

Hi Radhika,

Thank you so much for your reply.

I have tried to design humbergmenu using advanced slidingmenu from market place. when user clicked on particular option I want to move particular screen but i am unable to get it .please check below attached source code and help me.

steps:-

  1. home screen (humbergmenu)
  2. When clicked on menu show menu list.
  3. when clicked on particular option move to corrosponding screen.

Thanks,

Brahmaiah Thota

Please check the below attached source code.

Hi Radhika,

Please check the below source code. We are facing problem with slide menu in kony.

Thanks

Brahmiah Thota