|
Rank: Member Groups: Member
Joined: 10/4/2007 Posts: 20
|
Hi,
i've insert in page a menu with submenu and i've set ExpandOnClick property to true.. Now if i press on item the submenu appear, if i reclick on same item the submenu disappear but if i try to click another time nothing happen.
The click work only for two time.
Thanks Seltris
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi,
We are not aware of any problem like that. Can you create a test page that demonstrates the problem? We will be happy to take a look as soon as we have that.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 10/4/2007 Posts: 20
|
1- Click on first top level item -> Submenu appear 2- Click on first top level item -> Submenu disappear 3- Click on first top level item -> Nothing happen
Code: Visual Basic.NET
Partial Class Administration_Test
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
End Class
Code: HTML/ASPX
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Test.aspx.vb" Inherits="Administration_Test" %>
<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Pagina senza titolo</title>
</head>
<body>
<form id="form1" runat="server">
<eo:Menu ID="Menu1" runat="server" ControlSkinID="MSDN" ExpandOnClick="EnabledForTopLevelOnly"
Width="360px">
<TopGroup>
<Items>
<eo:MenuItem Text-Html="New Menu Item">
<SubMenu>
<Items>
<eo:MenuItem Text-Html="New Menu Item">
</eo:MenuItem>
<eo:MenuItem Text-Html="New Menu Item">
</eo:MenuItem>
<eo:MenuItem Text-Html="New Menu Item">
</eo:MenuItem>
</Items>
</SubMenu>
</eo:MenuItem>
</Items>
</TopGroup>
</eo:Menu>
</form>
</body>
</html>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi,
We have fixed this issue internally. Please expect a new build soon.
Thanks!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi,
We have posted a new build that fixed this problem. Please download it from our download page.
Thanks!
|
|