<head runat="server">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%: Page.Title %> - My ASP.NET Application</title>
-----------
<link rel='nofollow' href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" rel='nofollow' href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
-------
</head>
<ej:Grid ID="sfGrdIndexFields" AllowPaging="True" runat="server" ClientIDMode="AutoID">
<ClientSideEvents ToolbarClick="onToolBarClick" />
<ToolbarSettings ShowToolbar="true">
<CustomToolbarItem>
<ej:CustomToolbarItem TemplateID="#Refresh" />
<ej:CustomToolbarItem TemplateID="#Search" />
</CustomToolbarItem>
</ToolbarSettings>
</ej:Grid>
<script id="Refresh" type="text/x-jsrender">
<a class="e-toolbaricons refresh" />
</script>
<script id="Search" type="text/x-jsrender">
<span class="glyphicon glyphicon-search" style="padding-top:3px"></span>
</script>
<script type="text/javascript">
function onToolBarClick(sender) {
-------
}
</script>
<style type="text/css" class="cssStyles">
.refresh {
background-position: -76px 3px;
}
.e-toolbaricons {
background-image: url("../Content/images/Grid/icons-gray.png");
}
</style>
|