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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T19:18:01+00:00 2026-06-03T19:18:01+00:00

I’m building a Flex application using some custom components, which I think is messing

  • 0

I’m building a Flex application using some custom components, which I think is messing things up. I’m trying to sortByColumn in a spark data grid, using the answer here as a template. When I try to use the following in a function,

myGrid.sortByColumns(0,true);

I get the error:

1061: Call to a possibly undefined method sortByColumns through a 
reference with static type com.components:MyReportGrid.

Anyone know how to remove this error? Is MyReportGrid somehow masking the correct location for the spark components? I also get “undefined method” errors when using some other functions, such as invalidateCell(), not sure if it’s related or not to this error.

My data grid looks like:

...
<components:MyReportGrid id="myGrid" dataProvider="{_myData}"...>
    <components:columns>
        <fx:Array>
            <supportClasses:MyColumn ... />
            <supportClasses:MyColumn ... />
            <supportClasses:MyColumn ... />
            ...

where MyColumn is a class as follows:

import spark.components.gridClasses.GridColumn;
public class MyColumn extends GridColumn
{
    ...
    public function MyColumn(headerText:String="header" width:Number=100 ...)
    {
       this.headerText=headerText;
       ...
    }
}

and MyReportGrid is:

<?xml version="1.0" encoding="utf-8"?>
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"    
         xmlns:s="library://ns.adobe.com/flex/spark" 
         xmlns:mx="library://ns.adobe.com/flex/mx"
         width="400" height="300">
   import com.components.myClasses.MyColumn;
   import com.itemRenderers.myItemRenderer;
   import mx.collections.ArrayCollection;
   import mx.collections.ArrayList;
   import mx.collections.ListCollectionView;
   import spark.components.gridClasses.GridColumn;
   ...
   <s:DataGrid width="100%" ... />
</s:Group>
  • 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-03T19:18:03+00:00Added an answer on June 3, 2026 at 7:18 pm

    This will never work since your are calling myGrid.sortByColumns(0,true); on your MyReportGrid component which is of base type Group.

    A Group does not have any method called sortByColumns

    So you can either:

    • Create a delegate method in your MyReportGrid component

      <?xml version="1.0" encoding="utf-8"?>
      <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"    
       xmlns:s="library://ns.adobe.com/flex/spark" 
       xmlns:mx="library://ns.adobe.com/flex/mx"
       width="400" height="300">
        import com.components.myClasses.MyColumn;
        import com.itemRenderers.myItemRenderer;
        import mx.collections.ArrayCollection;
        import mx.collections.ArrayList;
        import mx.collections.ListCollectionView;
        import spark.components.gridClasses.GridColumn;
        ...
      
         <mx:Script>
           <![CDATA[
           public function sortByColumns(columnIndices:Vector.<int>, isInteractive:Boolean = false):Boolean{
               return internalGroupGrid.sortByColumns(columnIndices,isInteractive);
           }
           ]]>
         </mx:Script>
      
         <s:DataGrid width="100%" id="internalGroupGrid"... />
      </s:Group>
      
    • Make DataGrid the root tag of your MyReportGrid component

      <?xml version="1.0" encoding="utf-8"?>
      <s:DataGrid xmlns:fx="http://ns.adobe.com/mxml/2009"    
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx"
               width="400" height="300">
          import com.components.myClasses.MyColumn;
          import com.itemRenderers.myItemRenderer;
          import mx.collections.ArrayCollection;
          import mx.collections.ArrayList;
          import mx.collections.ListCollectionView;
          import spark.components.gridClasses.GridColumn;
          ...
      </s:DataGrid>
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
We're building an app, our first using Rails 3, and we're having to build
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text
I used javascript for loading a picture on my website depending on which small
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the

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.