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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:18:52+00:00 2026-05-25T12:18:52+00:00

I have a datasource that gets data from the server. It is then used

  • 0

I have a datasource that gets data from the server. It is then used in a datatable. I want to be able to filter the data in the table client-side, without making another call to the server.

// Data source definition
myDataSource = new YAHOO.util.DataSource("myurl");
myDataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
myDataSource.connXhrMode = "queueRequests";
myDataSource.responseSchema = {
    resultsList: "ResultSet.Result",
    fields: ["field1","field2"]
}

// Datatable definition
myDataTable = new YAHOO.widget.DataTable("container", myColumnDefs,myDataSource, {});
  • 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-25T12:18:53+00:00Added an answer on May 25, 2026 at 12:18 pm

    Subclass DataSource and override the sendRequest method so that you call the passed-in callback with your own filtered result set as the results argument.

    filterDataSource=function(arg) {
        filterDataSource.superclass.constructor.call(this,arg);
    }
    
    YAHOO.extend(filterDataSource,YAHOO.util.XHRDataSource);
    
    filterDataSource.prototype.sendRequest=function(request, callback) {
        var wrapCallBack=function (request,results,error) {
            // !!! do filtering on results here !!!
            callback.success.call(this,request,results,error);
        };
        filterDataSource.superclass.sendRequest.call(this,request, {
            success: wrapCallBack, argument: callback.argument
        });
    }
    

    And make your myDataSource a new filterDataSource instead of a new Yahoo.util.DataSource.

    Disclaimer: this code probably doesn’t work as written; I ripped it out of some old working code and quite likely skipped over some critical piece. Still, I hope it conveys the basic idea.

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

Sidebar

Related Questions

Hey guys, I have an application that I want to display some data from
I have a Linq provider that sucessfully goes and gets data from my chosen
I have a gridview that gets its data from a webservice. This comes into
I have a datasource that I want to bind to a listview that has
I have a dropdownlist inside a gridview, that is loaded from a datasource when
I have a DataGridView that displays data from a MS Access database. I'm using
I have an events app which gets events data from sqlite database and displays
I have a Devexpress.XtraGrid.GridControl that I have set the DataSource to a DataTable .
I have this that gets bound in my code behind: <asp:DropDownList id=ddlPopulation runat=server DataTextField=population
In C#.net, I have the following DataSource setup that I am trying to dynamically

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.