After upgrading to 6.7.20.1 I'm having problems returning a custom
DataTable form the server side.

This is what I'm getting at the client side:

[[1,"1º Cuerpo "],[2,"2º Cuerpo "]];/*

If I save the contents of the table to disk (inside a DataSet) before
returning it I get this:

<?xml version="1.0" standalone="yes"?>
<NewDataSet>
  <ListaCuerposExpediente>
    <Cuerpo>1</Cuerpo>
    <Descripcion>1º Cuerpo </Descripcion>
  </ListaCuerposExpediente>
  <ListaCuerposExpediente>
    <Cuerpo>2</Cuerpo>
    <Descripcion>2º Cuerpo </Descripcion>
  </ListaCuerposExpediente>
</NewDataSet>

With AjaxPro 6.5.17.1 I'm getting this in the client side:

new
Ajax.Web.DataTable([["Cuerpo","System.Int16"],["Descripcion","System.String"]],[[1,"1º
Cuerpo "],[2,"2º Cuerpo "]])

The contents of the XML file are the same.

Any help would be appreciated.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Ajax.NET Professional" group.

To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]

For more options, visit this group at http://groups.google.com/group/ajaxpro

The latest downloads of Ajax.NET Professional can be found at 
http://www.ajaxpro.info/

Don't forget to read my blog at http://weblogs.asp.net/mschwarz/
-~----------~----~----~----~------~----~------~--~---

Reply via email to