or
<telerik:RadToolTip ID="RadToolTipLogin" runat="server" HideEvent="ManualClose" TargetControlID="Loginin" IsClientID="true" Skin="Windows7" VisibleOnPageLoad="false" ShowEvent="OnClick"> <Demo:UserLogin ID="WebUserLogin1" runat="server" /></telerik:RadToolTip><asp:Button runat="server" ID="Loginin" Text="Login" /><telerik:RadToolTip ID="RadToolTipLogin" runat="server" HideEvent="ManualClose" TargetControlID="Loginin" IsClientID="false" Skin="Windows7" VisibleOnPageLoad="false" ShowEvent="OnClick"> <Demo:UserLogin ID="WebUserLogin1" runat="server" /></telerik:RadToolTip> <telerik:RadButton ID="Loginin" runat="server" Skin="Windows7" Text="Login" Width="90px" AutoPostBack="false" Icon-PrimaryIconUrl="~/images/lock16.png"></telerik:RadButton>Hello,
I have a GridNumericColumnEditor wich works fine with positive numbers ,but when i insert a negative number it automaticly puts the minus sign
to the right of the number.
for example i get 33- insted of -33.
what shuld i do to get the minus sign to the left of the number.
I tried to work with the NumberFormat-NegativePattern property and set it to "-n" but it was not worked.
Here is my decleration to my GridNumericColumnEditor
<telerik:GridNumericColumnEditor runat="server" ID="VALUEEditor">
<NumericTextBox runat="server" ID="txtBox1" NumberFormat-DecimalDigits="7" EnabledStyle-Width="22" EnabledStyle-HorizontalAlign="Left" MaxLength="16">
</NumericTextBox>
</telerik:GridNumericColumnEditor>
thank,
Gerry
_endPostBack: function PageRequestManager$_endPostBack(error, executor, data) { if (this._request === executor.get_webRequest()) { this._processingRequest = false; this._additionalInput = null; this._request = null; } var eventArgs = new Sys.WebForms.EndRequestEventArgs(error, data ? data.dataItems : {}, executor); Sys.Observer.raiseEvent(this, "endRequest", eventArgs); if (error && !eventArgs.get_errorHandled()) { throw error; } },
I have no idea where to go from this point so any help is greatly appreciated. I have also included the
code below to help diagnose what the issue could be.
<telerik:RadAjaxPanel ID="rap" runat="server" Width="100%" OnAjaxRequest="rap_AjaxRequest"
LoadingPanelID="ralp">
<div id="enquiryWrapper">
<div id="detailsDiv">
<h2>
Your Details</h2>
<h3>
Name:</h3>
<p>
<asp:TextBox ID="NameBx" runat="server"></asp:TextBox></p>
<h3>
Telephone:</h3>
<p>
<asp:TextBox ID="TelBx" runat="server"></asp:TextBox></p>
<h3>
Email:</h3>
<p>
<asp:TextBox ID="EmailBx" runat="server"></asp:TextBox>
<asp:HiddenField ID="hidSubject" runat="server" ClientIDMode="Static" />
</p>
</div>
<div id="requestDiv">
<h2>
Nature of your enquiry</h2>
<textarea id="EnqTxtBx" cols="40" rows="10"></textarea>
</div>
<div id="submitDiv">
<h2>
Submit your request</h2>
<img id="sendBtn" alt="SendButton" src="themes/buttons/SendBtn.png" class="clickable"
title="Submit your Enquiry" onclick="SendEnquiry()" onmouseover="javascript:this.src='themes/buttons/sendBtn-on.png'"
onmouseout="javascript:this.src='./themes/buttons/sendBtn.png'" />
<img id="cancelBtn" alt="CancelButton" src="themes/buttons/CancelBtn.png" class="clickable"
title="Cancel" onclick="SlideOut(0,'top','OUT')" onmouseover="javascript:this.src='themes/buttons/cancelBtn-on.png'"
onmouseout="javascript:this.src='themes/buttons/cancelBtn.png'" />
<div id="EnqMessageDiv" runat="server" style="display: none;">
<img src="./themes/cross.png" alt="Invalid: " runat="server" id="MessageImg" style="width: 16px;
height: 16px;" />
<asp:Label runat="server" ID="MessageLbl"></asp:Label>
</div>
</div>
</div>
</telerik:RadAjaxPanel>
<telerik:RadScriptBlock ID="rsb" runat="server">
<script type="text/javascript">
function SendEnquiry()
{
var oAjax = <%= rap.ClientID %>;
var txtBx = document.getElementById("EnqTxtBx");
var EnqTxt = txtBx.value;
oAjax.ajaxRequest("Enq|"+EnqTxt+"|");
}
</script>
</telerik:RadScriptBlock>
<telerik:RadAjaxLoadingPanel ID="ralp" Runat="server" Skin="Default" Transparency="50">
</telerik:RadAjaxLoadingPanel>
protected void rap_AjaxRequest(object sender, Telerik.Web.UI.AjaxRequestEventArgs e)
{
string[] Args = e.Argument.Split('|');
if (Args[0] == "Enq")
{
..... Process data .....
if (dnCustom.strFuncs.isValidEmail(EmailBx.Text))
{
if (!PromatMail.SendMail())
{
BlankFields();
rap.ResponseScripts.Add("alert('Sorry! We are experiencing errors in our mail server at this time. Please try again later'); SlideOut(0,'top','OUT');");
}
else
{
BlankFields();
if (!CustMail.SendMail())
{
rap.ResponseScripts.Add("alert('Thankyou for your enquiry we will get back to as soon as possible'); SlideOut(0,'top','OUT');");
}
else
{
rap.ResponseScripts.Add("alert('Thankyou for your enquiry we will get back to as soon as possible'); SlideOut(0,'top','OUT');");
}
}
}
else
{
rap.ResponseScripts.Add("alert('The Email address you supplied is invalid. please amend it and try again.');");
}
}
}
Thanks in advance,
M