fix problema jscript x conferma delete
This commit is contained in:
@@ -8,6 +8,11 @@
|
||||
{ %>
|
||||
<webopt:BundleReference ID="BundleReference1" runat="server" Path="~/Content/css" />
|
||||
<%} %>
|
||||
<script>
|
||||
function confermaDel() {
|
||||
<%=SteamWare.jsUtils.getCBE("confermaDel") %>
|
||||
}
|
||||
</script>
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="panel panel-default">
|
||||
@@ -91,7 +96,7 @@
|
||||
<asp:LinkButton runat="server" Width="100%" ID="lbOpen" CssClass="btn btn-success" OnClick="lbOpen_Click"><i class="fa fa-search"></i> <%:traduci("Open") %></asp:LinkButton>
|
||||
</div>
|
||||
<div class="col-sm-2" style="padding: 0px 4px;">
|
||||
<asp:LinkButton runat="server" Width="100%" ID="lbDelete" CssClass="btn btn-danger" OnClick="lbDelete_Click" OnClientClick="return confirm('Confirm Delete?')"><i class="fa fa-trash-o"></i> <%:traduci("Delete") %></asp:LinkButton>
|
||||
<asp:LinkButton runat="server" Width="100%" ID="lbDelete" CssClass="btn btn-danger" OnClick="lbDelete_Click" OnClientClick="confermaDel()"><i class="fa fa-trash-o"></i> <%:traduci("Delete") %></asp:LinkButton>
|
||||
</div>
|
||||
<div class="col-sm-2" style="padding: 0px 4px;">
|
||||
<asp:LinkButton runat="server" Width="100%" ID="lbDuplicate" CssClass="btn btn-primary" OnClick="lbDuplicate_Click"><i class="fa fa-code-fork"></i> <%:traduci("Duplicate") %></asp:LinkButton>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<div class="col-xs-5 text-left">
|
||||
<div class="input-group input-group-sm">
|
||||
<span class="input-group-addon">
|
||||
<asp:Label runat="server" ID="lblField"><%: traduci("Min") %></asp:Label>
|
||||
<asp:Label runat="server" ID="lblMin"><%: traduci("Min") %></asp:Label>
|
||||
</span>
|
||||
<asp:Label runat="server" ID="valMin" Visible="false" />
|
||||
<asp:TextBox runat="server" ID="txtMin" Width="5em" AutoPostBack="true" CssClass="searchinput form-control" />
|
||||
@@ -16,7 +16,7 @@
|
||||
<div class="col-xs-5 text-right">
|
||||
<div class="input-group input-group-sm">
|
||||
<span class="input-group-addon">
|
||||
<asp:Label runat="server" ID="Label1"><%: traduci("Max") %></asp:Label>
|
||||
<asp:Label runat="server" ID="lblMax"><%: traduci("Max") %></asp:Label>
|
||||
</span>
|
||||
<asp:Label runat="server" ID="valMax" Visible="false" />
|
||||
<asp:TextBox runat="server" ID="txtMax" Width="5em" AutoPostBack="true" CssClass="searchinput form-control" />
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace C2P.WebUserControls
|
||||
set
|
||||
{
|
||||
valMin.Text = value.ToString();
|
||||
txtMin.Text = string.Format("{0:N0}", value);
|
||||
txtMin.Text = value.ToString();
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
@@ -60,7 +60,7 @@ namespace C2P.WebUserControls
|
||||
set
|
||||
{
|
||||
valMax.Text = value.ToString();
|
||||
txtMax.Text = string.Format("{0:N0}", value);
|
||||
txtMax.Text = value.ToString();
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
@@ -81,7 +81,7 @@ namespace C2P.WebUserControls
|
||||
}
|
||||
set
|
||||
{
|
||||
txtMin.Text = string.Format("{0:N0}", value);
|
||||
txtMin.Text = value.ToString();
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
@@ -102,7 +102,7 @@ namespace C2P.WebUserControls
|
||||
}
|
||||
set
|
||||
{
|
||||
txtMax.Text = string.Format("{0:N0}", value);
|
||||
txtMax.Text = value.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user