Hello,
I would like to ask you whether it is possible to pass a complex type
from client to server ? I would need a following:
I declared following struct in c# code and registered it with ajaxpro
public struct EvalGridRow {
public int id;
public int preview;
public int current;
public int risc;
}
now on a client side I would like to fill an array of with these
objects and call a server side function passing this array as a
parameter.
is it possible to have the parameter deserialized to an ArrayList of
the EvalGridRow objects ?
if yes, would it be possible to put a small code sniplet as an
example ?
thank you
Michal