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
90
UltraWebGrid add new Row
posted
Hello.
 
I wan't to add a new row in a UltraWebGrid. But i don't know how I can add a new row to the UltraWebGrid. Here is the code which I created to this point:
 
 //Create new Colums in the UltraWeGrid
            AppointmentView.Columns.Add("1", "Datum");
            AppointmentView.Columns.Add("2", "Uhrzeit");
            AppointmentView.Columns.Add("3", "Bereich");
            AppointmentView.Columns.Add("4", "Modalität");
            AppointmentView.Columns.Add("5", "Stornierung");
 
 //Add a row in the UltraWebGrid
           UltraGridRow dataRow;