João Araújo wrote:We are also evaluating the Grid.
Please post in a separate thread if you have any question for the Grid.
João Araújo wrote:We are not finding an event handler itemDataBound.
The menu supports ItemDataBound event. You need to handle that event. This is as clear as we can tell you. If you do not know what this means, then you may want to ask somebody else around who knows more about generally .NET and ASP.NET programming to help you. Our support will not cover general programming questions.
João Araújo wrote:Could you please provide us examples in vb?
Here is the VB version:
Code: Visual Basic.NET
Private Sub Menu1_ItemDataBound( _
ByVal sender As Object, ByVal e As EO.Web.NavigationItemEventArgs) Handles Menu1.ItemDataBound
If e.MenuItem.Level = 0 Then
e.MenuItem.SubMenu.Orientation = EO.Web.Orientation.Horizontal
End If
End Sub
João Araújo wrote:Is there an error or bug in the control Eo.Menu? I was expecting not to do what you sugested
No. This is not a bug. What we provided should work for you. If you do not understand how to handle an event, you should ask somebody else to help you. Once you get the event correctly handled, it should work for you.
Thanks!