Skip to content

Commit b77a5e0

Browse files
The story estimator showcase sample has been updated to the latest source.
1 parent 3e2245c commit b77a5e0

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

StoryEstimator.Showcase.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<ItemGroup>
99
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.5" />
1010
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.0.0" />
11-
<PackageReference Include="Syncfusion.EJ2.AspNet.Core" Version="19.2.0.44" />
12-
<PackageReference Include="Syncfusion.XlsIO.Net.Core" Version="19.2.0.44" />
11+
<PackageReference Include="Syncfusion.EJ2.AspNet.Core" Version="19.3.0.43" />
12+
<PackageReference Include="Syncfusion.XlsIO.Net.Core" Version="19.3.0.43" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

wwwroot/css/ej2/material.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wwwroot/js/dashboard.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ window.dashboard = function () {
128128
$('#createroombutton')[0].ej2_instances[0].disabled = true;
129129
ej.popups.showSpinner(targetId);
130130
var ajax = new ej.base.Ajax("createnewroom", "GET", true);
131-
ajax.send().then();
131+
ajax.send().then(function (data) {
132+
$('#form-element').html(data);
133+
});
132134
ajax.onSuccess = function (data) {
133135
createRoomDialogObj.setProperties({
134136
content: data
@@ -1038,6 +1040,8 @@ function importStoryBtnClick(fileType) {
10381040
},
10391041
type: 'POST',
10401042
url: 'importstory',
1043+
}).done(function(data) {
1044+
$('#importstoryForm').html(data);
10411045
});
10421046

10431047
$("#uploads").html(messages.nofilechosenMessage);

wwwroot/js/ej2.min.js

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)