This is a migrated thread and some comments may be shown as answers.

Support for indian currency.

3 Answers 61 Views
Input
This is a migrated thread and some comments may be shown as answers.
Saravanan
Top achievements
Rank 1
Saravanan asked on 09 Jul 2013, 09:17 AM
Hi

Does numeric textbox support indian currency? Now its showing dollar

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 09 Jul 2013, 10:16 AM
Hi Saravanan,

Try setting the Culture property of the RadNumericTextBox to "en-IN".

Thanks,
Shinu.
0
Saravanan
Top achievements
Rank 1
answered on 01 Oct 2013, 09:16 AM
Hi shinu
How can I access the numeric value along with the curency prefix in C#? I tried with .text but its not returning the currency symbol with the numeric value entered?
0
Shinu
Top achievements
Rank 2
answered on 01 Oct 2013, 09:53 AM
Hi Saravanan,

Please try the following code that I tried which works fine at my end.

C#:
protected void RadNumericTextBox1_TextChanged(object sender, EventArgs e)
{
    Response.Write("<script>alert('" + RadNumericTextBox1.DisplayText + "');</script>");
}

Thanks,
Shinu.

Tags
Input
Asked by
Saravanan
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Saravanan
Top achievements
Rank 1
Share this question
or