Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6714793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:32:13+00:00 2026-05-26T08:32:13+00:00

I am trying to create a custom container but can’t figure just how to

  • 0

I am trying to create a custom container but can’t figure just how to do it.

I need it to look like this:
enter image description here

(don’t pay attention that it is RTL, this is only a sketch to get started)
where the orange fonts are the title of the page that I would like to be an H1 element.
It has a simple search and an advance search that pops open when the little arrow next to the search button is clicked.

Questions:

1) What should I extend for that ?
2) How can I implement different advance search forms for different pages ?
3) how can I place a setter for the title that controllers can interact with and manipulate the dom ?

basically any advice will be good as I need a start point.

thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T08:32:14+00:00Added an answer on May 26, 2026 at 8:32 am

    There are lots of ways of doing this, but this is what I would do.

    • I’m not sure about the “advanced forms for different pages” can you go into mre detail about that? Are you looking to autogenerate a search form somehow?

    • Extend Ext.form.Panel, and use a table layout for the fields
      See: http://docs.sencha.com/ext-js/4-0/#!/api/Ext.layout.container.Table

    • use a “tbar” on the panel instead of setting “title”. you can place the search combo, tbfill, then a tbtext for the “title”. As a convenience you can override the setTitle function of the panel to manipulate this tbtext field instead of the normal behavior. Something like this:

      Ext.define('MyApp.view.MyForm', {
         extend: 'Ext.form.Panel',
         alias:'widget.myform',
         layout:{
          type: 'table',
          columns: 4,
              tableAttrs: {
                  style: {
                      width: '100%'
                  }
              }         
         },
         //overridden setTitle
         setTitle:function(title){
          Ext.getCmp(this.id + "_search_combo").setText(title)
         },
         defaults:{
          xtype:"combo",
          //rest of combo config here
         },
         items:[{
          //...   
         }],
         initComponent:function(config){
            this.tbar = tbar:[{
                  xtype:"combo",
                  //...
                  id:this.id + "_search_combo"
              },{
                  xtype:"tbfill"
              },{
                  xtype:"tbText",
                  cls:"my_form_title",
                  value:this.title||""
              }]
      
              //prevent default title behavior
              delete this.title
              this.callParent(arguments);
         }
      })
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a custom UIButton that should look like a UIButtonTypeRoundedRect. In
I am trying to create a custom html button on my page using this
I've been trying to create a custom combo box component but I've been having
I'm trying to create a custom AccordionItem that can take the tag property value
I am trying to figure out how this DropDownListFor works but with no success.
I'm trying to create a custom overlay that basically just contains a HTML element
Im trying to create a custom version of the RequiredAttribute to replace the built
I'm trying to create a custom JSP tag that would take an array object
I am trying to create a custom accordion for my page to that display
I'm trying to create a custom transition, to serve as a replacement for a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.