is it possible to place a button in TabContainer header on the left side ?
I want to place it next to First Tab.
Thanks for help 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You are going to have to create your own tab controller widget. The steps would be as follows:
dijit.layout.TabControllerYou can use your new controller widget in one of two ways. If it were me, I’d also create my own tab container widget that extends
dijit.layout.TabContainerand overrides the_makeControllerfunction to instantiate the new controller.Alternatively, you could pass in the
_makeControllerfunction when instantiating the TabContianer widgetYou can look at the
dijit.layout.TabContainersource to see what needs to be done in the_makeControllerfunction.