This commit is contained in:
Christian
2019-07-10 14:32:47 +02:00
parent 632c1456e2
commit e31844033a
4 changed files with 9 additions and 9 deletions

View File

@@ -15,7 +15,7 @@
<AssemblyName>BeWoPlanerMobil</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<MvcBuildViews>false</MvcBuildViews>
<UseIISExpress>false</UseIISExpress>
<UseIISExpress>true</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
@@ -279,7 +279,7 @@
<AutoAssignPort>False</AutoAssignPort>
<DevelopmentServerPort>8808</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost/BeWoPlanerMobil</IISUrl>
<IISUrl>http://localhost:7707/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<UseIISExpress>false</UseIISExpress>
<UseIISExpress>true</UseIISExpress>
<Use64BitIISExpress />
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />

View File

@@ -159,7 +159,7 @@ function updateChildGoals(goalOid) {
goalOidArray = new Array();
var parent = document.getElementById("goal" + goalOid);
alert("start");
//alert("start");
CheckChildGoalNodes(parent);
//makeAjaxCall("GET", updateGoalsUrl, null, { pGoalOid: cbId }, null);
}
@@ -168,15 +168,15 @@ function CheckChildGoalNodes(parent) {
goalOidArray = new Array();
var next = parent.parentNode;
alert(next);
alert(next.nextSibling);
//alert(next);
//alert(next.nextSibling);
var nodeList = next.childNodes;
alert(nodeList.length);
//alert(nodeList.length);
for (var i = 0; i < nodeList.length; i++) {
var node = nodeList[i];
alert(node.nodeName);
//alert(node.nodeName);
CheckChildGoalNodes(node);
}

View File

@@ -14,7 +14,7 @@
<script src="~/Scripts/appointment.js?v=1.2"></script>
<script src="~/Scripts/utils.js?v=1.3"></script>
<script src="~/Scripts/mainView.js?v=1.6"></script>
<script src="~/Scripts/mainView.js?v=1.7"></script>
<script src="~/Scripts/datepicker.js?v=1.2"></script>
<script src="~/Scripts/initialization.js?v=1.2"></script>
<script src="~/Scripts/calendar.js?v=1.2"></script>