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 3988466
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T06:15:20+00:00 2026-05-20T06:15:20+00:00

Is there a way to configure ExtJS (through an Ext.override?) so that submitEmptyText config

  • 0

Is there a way to configure ExtJS (through an Ext.override?) so that submitEmptyText config option for Ext.form.Action.Submit is false by default instead of true?

I know it’s possible to override methods on classes but i don’t know about default config properties, one might think that since config options are mostly public properties that console logging Ext.form.Action.Submit.submitEmptyText would output false but it is undefined.

One way I succeeded is by creating an interceptor for the run method but that basically renders the submitEmptyText config option useless since it can’t be set anymore through a config object passed to the constructor.

Ext.form.Action.Submit.prototype.run = Ext.form.Action.Submit.prototype.run.createInterceptor(function() {
    this.options.submitEmptyText = false;
});
  • 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-20T06:15:20+00:00Added an answer on May 20, 2026 at 6:15 am

    [Edited a few times, but this works for me]

    submitEmptyText is not actually a property of the Ext.form.Action.Submit prototype — it is just checked in the run function as a property of the “this.options” object — which itself is defined on the superclass, Ext.form.Action

    If you want it to be globally false by default, then just set it on the options property of Ext.form.Action after it is constructed

    Ext.form.Action.prototype.constructor = Ext.form.Action.prototype.constructor.createSequence(function() {
        Ext.applyIf(this.options, {
            submitEmptyText:false
        });
    });
    

    It’s tricky, because the Ext.form.Action sets this.options to an empty object in its constructor, so you have to get access to that options property after the constructor executes, which is why a createSequence works in this case.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to configure hg com so that in the commit message
Is there a way to configure JAXB to so that a generated class implements
Is there a way to configure Pyramid so that when MongoDB fails over to
Is there a way to configure a mysql table so that writing and reading
Is there a way to configure an application shortcut so that a Windows shell
Is there any way to configure an SVN server such that it does not
Is there a way to configure the HTML filtering settings in Plone 4 through
Is there a way to configure the WPF ListBox such that it's not possible
Is there a way to configure features/properties on the SAX parser so that it
In ExtJS 2.2.1, is there a way to configure what effect gets used when

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.