diff --git a/NKC_WF/WebUserControls/cmp_kitting.ascx.cs b/NKC_WF/WebUserControls/cmp_kitting.ascx.cs index 4778704..12dcdc9 100644 --- a/NKC_WF/WebUserControls/cmp_kitting.ascx.cs +++ b/NKC_WF/WebUserControls/cmp_kitting.ascx.cs @@ -8,5 +8,11 @@ namespace NKC_WF.WebUserControls { } + + public void doUpdate() + { + cmp_kittingBin.doUpdate(); + cmp_kittingCart.doUpdate(); + } } } \ No newline at end of file diff --git a/NKC_WF/WebUserControls/cmp_kittingBin.ascx.cs b/NKC_WF/WebUserControls/cmp_kittingBin.ascx.cs index 067eb8a..8e68db6 100644 --- a/NKC_WF/WebUserControls/cmp_kittingBin.ascx.cs +++ b/NKC_WF/WebUserControls/cmp_kittingBin.ascx.cs @@ -8,5 +8,10 @@ namespace NKC_WF.WebUserControls { } + + public void doUpdate() + { + repBins.DataBind(); + } } } \ No newline at end of file diff --git a/NKC_WF/WebUserControls/cmp_kittingCart.ascx.cs b/NKC_WF/WebUserControls/cmp_kittingCart.ascx.cs index bcd5447..84dde93 100644 --- a/NKC_WF/WebUserControls/cmp_kittingCart.ascx.cs +++ b/NKC_WF/WebUserControls/cmp_kittingCart.ascx.cs @@ -34,5 +34,10 @@ namespace NKC_WF.WebUserControls } return answ; } + + public void doUpdate() + { + repCarts.DataBind(); + } } } \ No newline at end of file