DotvvmChildEventCallback
Details
diff --git a/src/Web/ViewModels/DefaultViewModel.cs b/src/Web/ViewModels/DefaultViewModel.cs
index 8c38a19..45487b1 100644
--- a/src/Web/ViewModels/DefaultViewModel.cs
+++ b/src/Web/ViewModels/DefaultViewModel.cs
@@ -67,6 +67,10 @@ namespace Web.ViewModels
{
IsInitialized = true;
}
+
+ public void OnContinueChanged()
+ {
+ }
}
#endregion
src/Web/Views/Default.dothtml 2(+1 -1)
diff --git a/src/Web/Views/Default.dothtml b/src/Web/Views/Default.dothtml
index 5b0173b..1669e94 100644
--- a/src/Web/Views/Default.dothtml
+++ b/src/Web/Views/Default.dothtml
@@ -65,7 +65,7 @@
degree of comparison only.
</p>
</blockquote>
- <bs:CheckBox Checked="{value: IsNextEnabled}" IsInline="true" Text="Continue" />
+ <bs:CheckBox Checked="{value: IsNextEnabled}" Changed="{command: OnContinueChanged()}" IsInline="true" Text="Continue" />
</bs:CardBody>
</bs:Card>
</div>