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

The Archive Base Latest Questions

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

I have constructed several web services that successfully serialize my .NET types into JSON.

  • 0

I have constructed several web services that successfully serialize my .NET types into JSON. However, I’m running into an issue getting the JSON to be fully compatible with the YUI library and the DataTable in particular.

The YUI DataTable can be fully configured using JSON objects. I created the following struct in .NET to represent a given YUI column definition:

 public struct YuiColumnDefinition{
        public string key;
        public string label;
        public bool sortable;
        public string formatter;
 }

The ‘formatter’ property is how you instruct the YUI table to use a custom javascript function when displaying a given column. The problem is that, since formatter is defined as a String, ASP.NET wraps it’s value in double quotes upon serialization, and YUI no longer recognizes the value as a JavaScript token:

JSON YUI expects

[ 
{key:"1", label:"Order Date", formatter:myCustomJavaScriptFunction, sortable:true},
{key:"2", label:"Customer Name", formatter:null, sortable:false}
]

JSON ASP.NET creates

[ 
{key:"1", label:"Order Date", formatter:"myCustomJavaScriptFunction", sortable:true},
{key:"2", label:"Customer Name", formatter:null, sortable:false}
]

Anyone have a solution outside of modifying the YUI source code?

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-13T10:32:22+00:00Added an answer on May 13, 2026 at 10:32 am

    As Allen correctly pointed out:

    Its just incorrect to return an actual variable/function in a callback like that.

    Still, I couldn’t find anywhere in the YUI documentation that spells out how to deal with javascript functions returned as strings from either JSON or XML.

    Thank goodness for blogs. As pointed out in this one, the “proper” way to register custom javascript formatting functions is by using YAHOO.widget.DataTable.Formatter:

    JSON Column Definitions as returned from .ASMX

    [              
     {key:"1", label:"Order Date", formatter:"myCustomJavaScriptFunction1", sortable:true},             
     {key:"2", label:"Customer Name", formatter:null, sortable:false}             
     {key:"3", label:"State", formatter:"myCustomJavaScriptFunction2", sortable:false}             
    ]
    

    Javscript to wire up the YUI DataTable

    YAHOO.widget.DataTable.Formatter.myCustomJavaScriptFunction1= this.myCustomJavaScriptFunction1;
    YAHOO.widget.DataTable.Formatter.myCustomJavaScriptFunction2= this.myCustomJavaScriptFunction2;
    
    function  myCustomJavaScriptFunction1(elCell, oRecord, oColumn, oData) {
       //do something
    }
    
    function  myCustomJavaScriptFunction2(elCell, oRecord, oColumn, oData){
       //do something
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 366k
  • Answers 366k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Use the Date.UTC() method instead of .getTime(). var timestamp =… May 14, 2026 at 4:31 pm
  • Editorial Team
    Editorial Team added an answer C++ does not inherit constructors (you may be thinking of… May 14, 2026 at 4:31 pm
  • Editorial Team
    Editorial Team added an answer The main reason is performance. When generics were introduced in… May 14, 2026 at 4:31 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.