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

  • Home
  • SEARCH
  • 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

Related Questions

Python Decimal doesn't support being constructed from float; it expects that you have to
This is my first test for Asp.Net Web Application. We have an Engine consisting
I have a web site with many virtual hosts and each registered with several
We have a web application running in a production enviroment and at some point
I am currently building a Neural Network library. I have constructed it as an
Greetings, I have a particular object which can be constructed from a file, as
For my exception class i have a constructor that has multi arguments (...) which
In .NET, a value type (C# struct ) can't have a constructor with no
I am completely new to web services, but not new to Delphi. I am
I have an object that can take anywhere from a split second to a

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.