...err, I wrote in my last post that it's working, but that was only true whilst I was accessing the html from the examples folder. I really want to do a .net project, and so I tried to put the html into an aspx file, imported all the explorerview files into the project and referenced them. I am referencing all other ext-js files using coolite, as you will see below. However, I get nothing when I view the aspx file. Here's the code:
HTML Code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ExplorerView.aspx.cs" Inherits="WcfServiceTest.ExplorerView" %>
<%@ Register Assembly="Coolite.Ext.Web" Namespace="Coolite.Ext.Web" TagPrefix="ext" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head runat="server">
<ext:ScriptManager ID="extScriptManager" runat="server" Theme="Gray" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>Grid3 ExplorerView Example</title>
<!-- I was told I don't need these 2 references...-->
<!-- LIBS
<script type="text/javascript" src="ext-2.2/adapter/ext/ext-base.js"></script>-->
<!-- ENDLIBS
<script type="text/javascript" src="ext-2.2/ext-all.js"></script>-->
<script type="text/javascript" src="_js/explorerview/explorerview.js"></script>
<script type="text/javascript" src="_js/explorerview/Ext.ux.grid.GroupingExplorerView.js"></script>
<script type="text/javascript" src="_js/explorerview/explorerview.js"></script>
<link rel="stylesheet" type="text/css" href="_css/explorerview.css" />
<!-- Common Styles for the examples -->
<link rel="stylesheet" type="text/css" href="../shared/examples.css" />
</head>
<body>
<h1>Grid3 ExplorerView</h1>
</body>
</html>
The paths to the referenced .js files are all correct, but am I missing something obvious?
Would be really nice if you could point out my mistake.
cheers,
D.