Sencha touch sidebar extension (only hide and not destroy)

Source: Internet
Author: User

Based on ext. UX. menubutton is transformed. Unlike menubutton, it does not destroy the sidebar every time, but simply hides it. There is no difference in attribute configuration. Each time you click the button to display it, The showmenu event/method will be triggered.

The Code is as follows:

/*** Hide only the sidebar that is not destroyed * @ private */Ext. define ('ux. menu. context', {extend: 'ext. button ', requires: ['ext. UX. contextmenu '], config: {menuitems: [], menuside: 'right', menucover: false, menucls: NULL, listeners: {tap: 'ontap'}, initialize: function () {var me = This; me. $ menu = ext. create ('ext. UX. contextmenu ', {CLS: me. getmenucls (), items: me. getmenuitems (), listeners: {scope: me, hide: function () {Ext. viewport. hidemenu (Me. getmenuside () ;}}}); me. $ menu. on ({scope: me, TAP: me. onmenubuttontap, delegate: 'button '}); Ext. viewport. setmenu (Me. $ menu, {side: me. getmenuside (), cover: me. getmenucover ()}); me. callparent (arguments) ;}, ONTAP: function (e) {This. fireaction ('showcall', [this], 'showcall'); Ext. viewport. showmenu (this. getmenuside () ;}, onmenubuttontap: function (button) {Ext. viewport. hidemenu (this. getmenuside ());}});

For more information, see the official BlackBerry example.

:

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.