From 0ce4ac48825a015d3903837b5aa154cc311d968e Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Mon, 24 Aug 2020 20:57:13 +0200 Subject: [PATCH] bozza dettagio da cmp_KR x mnostrare status CART + print --- NKC_WF/WebUserControls/cmp_KR_cart.ascx | 12 ++++++++++++ NKC_WF/WebUserControls/cmp_KR_cart.ascx.cs | 19 +++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/NKC_WF/WebUserControls/cmp_KR_cart.ascx b/NKC_WF/WebUserControls/cmp_KR_cart.ascx index 36efb9b..fa75768 100644 --- a/NKC_WF/WebUserControls/cmp_KR_cart.ascx +++ b/NKC_WF/WebUserControls/cmp_KR_cart.ascx @@ -3,6 +3,18 @@ + + +
+ +
+
+ +
+ +
+
+
diff --git a/NKC_WF/WebUserControls/cmp_KR_cart.ascx.cs b/NKC_WF/WebUserControls/cmp_KR_cart.ascx.cs index 23de14c..de98ae2 100644 --- a/NKC_WF/WebUserControls/cmp_KR_cart.ascx.cs +++ b/NKC_WF/WebUserControls/cmp_KR_cart.ascx.cs @@ -37,5 +37,24 @@ namespace NKC_WF.WebUserControls { grView.DataBind(); } + + protected void grView_SelectedIndexChanged(object sender, EventArgs e) + { + int PackListId = 0; + int.TryParse(grView.SelectedValue.ToString(), out PackListId); + // mostra dettaglio CART + + // FIXME TODO nuovo controllo dettaglio + } + /// + /// comando reset + /// + /// + /// + protected void lbtReset_Click(object sender, EventArgs e) + { + grView.SelectedIndex = -1; + doUpdate(); + } } } \ No newline at end of file