sjob...@gmail.com
unread,Nov 23, 2009, 3:29:42 PM11/23/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting
Ok, call me an idiot.
It appears that with the placeholder "phdocumentmenus" when
recreating the dynamic controls on postback I was not recreating the
reference to the "click handler"
Now it functions.
For reference, Here is the snippet as it exists now from my page load
Dim lst As List(Of C1.Web.Command.C1WebMenu) = Session
("DocumentMenus")
If Not lst Is Nothing Then
phDocumentMenus.Controls.Clear()
For Each Menu As C1.Web.Command.C1WebMenu In lst
phDocumentMenus.Controls.Add(Menu)
AddHandler Menu.ItemClick, AddressOf FolderMenuClick
Next
End If
Steve
On Nov 23, 11:51 am, "
sjobri...@gmail.com" <
sjobri...@gmail.com>
wrote: