-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDefault.aspx
More file actions
24 lines (21 loc) · 1018 Bytes
/
Default.aspx
File metadata and controls
24 lines (21 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%@ Page Language="vb" AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<%@ Register Assembly="DevExpress.Web.v14.1, Version=14.1.15.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" Namespace="DevExpress.Web" TagPrefix="dx" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>How to change certain context menu items' visibility or their enabled state depending on both whether a corresponding row is selected and a part of its data</title>
</head>
<body>
<form id="form1" runat="server">
<div>
There are two pages in example that demonstrates both the client-side and the server-side approaches.
<br />
<dx:ASPxHyperLink ID="ASPxHyperLink1" runat="server" Text="Server-side solution" NavigateUrl="Server-side.aspx">
</dx:ASPxHyperLink>
<br />
<dx:ASPxHyperLink ID="ASPxHyperLink2" runat="server" Text="Client-side solution" NavigateUrl="Client-side.aspx">
</dx:ASPxHyperLink>
</div>
</form>
</body>
</html>