|
Set the breakpoint there and got something that looks fine:
this: Object
_path: "/start/0/"
actionType: null
append: function (url, data) {
getAction: function () {
getMemory: function () {
getSelected: function () {
getSelectedUrl: function () {
hasTop: function () { return true; }
initToolbar: function () {
layout: Object
location: "content"
memorize: function (selected, action) {
memorizedPath: null
path: function (value) {
refresh: function (options) {
select: function (name) {
selectedPath: "/start/family/xxxx-water-company/"
selectedUrl: "http://localhost:3479/family/xxxx-water-company"
Then when I get to this line:
if (w.frames.navigation &&
w.frames.navigation.onNavigating)
w.frames.navigation.onNavigating(options);
Still looks fine.
options: Object
force: false
navigationUrl: "/N2/Content/Navigation/Tree.aspx?selected=%2fstart%2ffamily%2fmiddlesex-water-company%2f"
path: "/start/family/middlesex-water-company/"
permission: "Administer"
previewUrl: null
showNavigation: function (ctx) {
showPreview: function () {
__proto__: Object
If I keep stepping I do eventually get to a point where selectedPath and
selectedUrl are not the same thing.
options: Object
force: false
navigationUrl: "/N2/Content/Navigation/Tree.aspx?selected=%2fstart%2f0%2f"
path: "/start/0/"
permission: "Administer"
__proto__: Object
this: Object
_path: "/start/0/"
actionType: null
append: function (url, data) {
getAction: function () {
getMemory: function () {
getSelected: function () {
getSelectedUrl: function () {
hasTop: function () { return true; }
initToolbar: function () {
layout: Object
location: "content"
memorize: function (selected, action) {
memorizedPath: null
path: function (value) {
refresh: function (options) {
select: function (name) {
selectedPath: "/start/0/"
selectedUrl: "http://localhost:3479/family/xxxx-water-company"
toolbarSelect: function (name, context) {
unselect: function (name) {
unselectFrame: function (frame) {
update: function (options) {
__proto__: Object
Could this be the problem?
|