I have a formset which contains multiple forms. One of the forms contains a grid with 3 columns. When i go to run the form in debugging event list the forms all load, then right after the grid init
"formset1.grid_a1.grid_a1.Init()"
it hits the beforerowcolchange event, which is not called by program,
"formset1.grid_a1.grid_a1.BeforeRowColChange(1)"
it then immediately goes and does
formset1.grid_a1.grid_a1.column1.Destroy()
formset1.grid_a1.grid_a1.column1.text1.Destroy()
formset1.grid_a1.grid_a1.column1.header1.Destroy()
and destroys all the columns.
Just wanted to know if anybody had run across this before and if so how to fix it.
"formset1.grid_a1.grid_a1.Init()"
it hits the beforerowcolchange event, which is not called by program,
"formset1.grid_a1.grid_a1.BeforeRowColChange(1)"
it then immediately goes and does
formset1.grid_a1.grid_a1.column1.Destroy()
formset1.grid_a1.grid_a1.column1.text1.Destroy()
formset1.grid_a1.grid_a1.column1.header1.Destroy()
and destroys all the columns.
Just wanted to know if anybody had run across this before and if so how to fix it.