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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T22:37:51+00:00 2026-06-01T22:37:51+00:00

I tried to extend the Connection class, like Ext.Ajax did to get a central

  • 0

I tried to extend the Connection class, like Ext.Ajax did to get a central point where I can set some default values.

  Ext.define( 'App.helper.HttpApi', {
    extend   : 'Ext.data.Connection',
    singleton: true,

    request: function( oConf ) {

      oConf.url = '/index.php';
      oConf.params.vers = '1.1.json';
      oConf.params...

      this.callParent( oConf );
    }
  } );

I get : “Uncaught Ext.Error: No URL specified”
But as you can see, the url IS specified… somehow it gets lost in the depth of the Ext Code.

  • 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-06-01T22:37:53+00:00Added an answer on June 1, 2026 at 10:37 pm

    the error which you are getting is thrown by setOptions method of Ext.data.Connection

    so you need to provide url when constructor of Ext.data.Connection is called so all further methods can use that url

    Ext.define( 'App.helper.HttpApi', {
        extend   : 'Ext.data.Connection',
        singleton: true,
    
        constructor : function (config)
        {
            config = config || {};
            Ext.applyIf(config, {
                url : '/index.php'
            });
    
            this.callParent(config);
        },
    
        request: function( oConf ) {
          oConf.params.vers = '1.1.json';
          oConf.params...
    
          this.callParent( oConf );
        }
    });
    

    or if you are going to use single url for all the requests then you can directly specify it as default value of this singleton

    Ext.define( 'App.helper.HttpApi', {
        extend   : 'Ext.data.Connection',
        singleton: true,
        url : '/index.php',
    
        request: function( oConf ) {
          oConf.params.vers = '1.1.json';
          oConf.params...
    
          this.callParent( oConf );
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I tried to extend Socket object something as... public class TestSocket extends Socket {
I've tried to extend the RequiredAttribute to make some localizations. I wrote this: public
I tried to create base controller and write in it: Ext.define('My.Users.controller.Role', { extend :
I have two classes which both extend from SQL class like this: class SQL
I have tried to login my server with some fields like username, password, latitude,
this question is an extension of the question here i tried to extend Dane's
I tried to use object expression to extend the IDelegateEvent, but in fsi there
Is it possible to extend dynamically javascript function scope? I tried without success the
Tried to search for this online and didn't get very far, so I'm asking
I have a database abstraction layer that starts with a base class like so:

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.