Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
queation about data binding of ultragrid
posted

Hi,

I have a class as

Class calendar{

public string name;

public List<datetime> dates;

public List<double> amounts;

}

I wanna bind this to ultragrid (each row for one calendar object and assume dates is same for all objects), it should looks like

name    date1    date2    date3....................
---------------------------------------------------------------------------

name    amount1   amount2    amount3..........................
name    amount1   amount2    amount3..........................
name    amount1   amount2    amount3..........................

 

any idea how to do this? Thanks