Thanks again. Few more questions - if I use FormCreated event - will I be able to implement cascading drop down lists or combo boxes), filtering events by location, add viewing of PDF file that would be attached to each event? Will it keep recurrent functionality? If yes to all - do I remove ResourceTypes and add the drop-down lists or combo boxes to implement cascading functionality?
For example - currently those are 2 out of 4 drop down lists (see below) that I have on the form, declared under ResourceType, using LinqToSql as data source. Do I delete it from here and do I declare it under FormCreating?
<telerik:ResourceType KeyField="CatID" Name="Category Name" TextField="CategoryName" ForeignKeyField="ActCategID" DataSourceID="LinqDS_Cat"> </telerik:ResourceType> <telerik:ResourceType KeyField="ActN" Name="Type Name" TextField="ActType" ForeignKeyField="ActTypeID" DataSourceID="LinqDS_type"></telerik:ResourceType>
Also - is there a way to make Subject field unavailable (user can't edit) and assign the value chosen from the drop down list - put it into the Subject field? I also have another field that I would need to assign the value into based on the session value, but I don't want user to see it. Do I have to put it on the form and make it hidden? Thanks!