IJavaScriptConverter are back in the next version
Because I got a lot of feedback that sometimes it would be nice to have my own converter I included the converter interface again. The default converter like IEnumerable, IList, NameValueCollection, HtmlControls (!!!!) , DateTime, all DataSet objects and IDictionary are included as source code.
public class IJavaScriptConverter
{
public virtual void Initialize()
{
}
public virtual object Deserialize(IJavaScriptObject o, Type t)
{
return null;
}
public virtual string GetClientScript()
{
return "";
}
public virtual string Serialize(object o)
{
throw new NotImplementedException("Converter for type '" + o.GetType().FullName + "'.");
}
public virtual Type[] SerializableTypes
{
get
{
return null;
}
}
public virtual Type[] DeserializableTypes
{
get
{
return null;
}
}
}
5 Comments
Comments have been disabled for this content.
Simone Chiaretta said
Mike
I saw a lot of new features (or better, old features coming back :-)) but I think that one thing is still lacking a lot... an extensive documentation...
Simo
.net noobie said
when is next version expected with html controls again?
Michael Schwarz said
Hopefully I will release the next version in the next 2-3 days. Because I have re-written nearly 100% of the code I have to be sure everything is working.
@Simone: There will be a more detailed documentation and more demos how to use get started (flash or WMV).
CIAO
Michael
Simone Chiaretta said
@mike: if you need some help, just ask.. I'll be happy to help with the documentation of ajaxpro.net
Simo
Szoke said
HTMLControls - at last :) Thank you very much, Mike!