Are there any methods that are typically used to create tables from BizFormItem s? When our event (as in live events and webinars, not C# Events ;] ) pages are loading, Kentico is trying to find a form table that does not exist. Here is the method that Kentico is trying to use to get the object I'm referring to:
BizFormInfo form = BizFormInfoProvider.GetBizFormInfo("XXX_EventNode" + EventNodeGUID.ToString("N"), CurrentSite.SiteID);
I'm basically looking for possible methods that could be used to generate the table that the above object would be referencing.
From looking at all the other code I can't tell where or how the table is getting created. I've tried stepping through the code when I click "save" in the "pages" module; there is so much code running that I spent 15 minutes pressing F5/F10/F11 and eventually gave up going that route.
I could also settle for if anyone can tell me where people would typically add custom code when the "save" button is clicked in the "pages" module. I don't know if it's typical for kentico to be creating a new table for every new page that contains registration data.
I noticed that every time we create an event (+1 BizFormInfo), this custom instance of kentico creates a new table named Form_XXX_EventNode+(a Guid) but for some reason it's not creating them now after I added another macro method to our extension class. No idea why, because I didn't change any of the page module code at all. All I did was add a macro method and it was initially working then all the sudden when the pages load, Kentico can't find the table that was supposed to get created.
How are registration forms tables usually created in kentico? What happens when I click the save button in the pages module.
I know this is kind of confusing so I can provide more details if needed
Thanks!