ASP.NET Easy Menu - Menu item postback

To call a server event after you click on menu item you need to use,
as you can see inside the suite example, an invisible button:
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" style="display:none" />

Also a helpful control is a hidden input for storing the id of the clicked menu item:
<input type="hidden" id="Hidden1" runat="server" />

The server event that is called is the event that is triggered when the button is clicked
(currently not allowed because is not visible):
protected void Button1_Click(object sender, EventArgs e)
{
    ...some code...
}

The last important thing is the client event triggered by the menu item.
The event is set using menu item server property "OnClientClick":
<oem:MenuItem InnerHtml="<b>Server event 1</b>" ID="menuItem2" OnClientClick="CallServerEvent('menuItem2')"></oem:MenuItem>

Client-side event

function CallServerEvent(argument)
{
    // store the clicked item id
    document.getElementById('<%=Hidden1.ClientID %>').value = argument;
    // call the server side event (same as button click)
    <%= Page.ClientScript.GetPostBackEventReference(this.Button1, "") %>
}

Mouse over the gray box to see the menu.
Clicking on the second and third item in the menu will cause a postback to server.

 
 




Download Download this working example.

"First of all, Thanks to all of you for helping me in cruch situations... Your precious help is just more than to be expressed rather appreciated in words... Really Thank you..."

Abhisek Singh

Random testimonial   All testimonials

obout.com
obout.com Home
News
Easy Menu Home 
Easy Menu Home
Download
Site Map
Compare with Text Menu
Examples - 79
Appearance - 11
Live Styles
Horizontal Right To Left
Transparent - over flash
MSDN 2
With rounded corners
Keep Open New
Expand Animations New
Vertical 1
MS Vertical
Vertical Right To Left
Context Menu - 10
World Map
Default
Futura
VSNET
Windows
WindowsXP
Style 1
Style 2
Style 3
Right To Left
Tab Strip - 8
Tab Strip
Live Styles
Tab Strip - With postback New
Parent Child Tabstrip New
Tab Strip - Wizard
Tab Strip - Wizard 2
Add / Remove Tabs
Add / Remove Tabs 2
Time Picker - 1
Time Picker
Populating with data - 5
Binding to DataReader New
Binding to DataTable New
Binding to SqlDataSource New
Binding to ObjectDataSource New
Fast loading time
Multi Column Menu - 2
Multi Column Submenu New
Multi Column Submenu with Icons New
Multiple menus - 3
Multiple menus
Multiple menus 2
Horizontal menu and Tab Strip
Operations - 9
ShowEvent New
Add / Remove Items New
Hide / Show Items New
Menu item inner HTML New
Attach / Detach
Menu Events
OnClientClick
Menu item postback
Show menu New
Align/Position - 4
Align
Advanced Align
Menu Offsets
Position
Integration  - 14
TreeView - 5
Attach to TreeView
Dynamic Loading
Inside callback panel
Select the TreeView node New
TreeView inside Easy Menu
AJAX Page - 3
Inside AJAX Page panel
Inside MS AJAX panel
Add items server side
Grid - 2
Use With Grid
Inside DataGrid column
Inside WindowNew
Build from SiteMap
Over Java Applet
With Data Controls New
Other features - 12
AttachTo
Menu Icons
Menu Customize
Long vertical menus
Long menu items
Disabled menu item
Sub-menus
Dynamic Easy Menu Item
Full Easy Menu width
Hide menu with time delay
Custom sliding effect New
Custom Menu Content New
Knowledge Base - 1
Knowledge Base
Documentation - 4
Server side
Client side
Using the correct path
ChangeLog
Tutorials - 2
Using Database
Postback Persistance