Questions tagged [radtextbox]

30 questions
2
votes
1 answer

Textbox in RadGrid changed by client

Good day, I have a GridTemplateColumn with a RadTextbox. The textbox values are changed by javascript. But when i click the textbox,it changes back to its original value. Please help javascript Untitled Page
user1842048
  • 73
  • 1
  • 2
  • 5
2
votes
1 answer

Adding an attribute to a Telerik RadTextBox

I'm trying to get a hold of an attribute I've created on a Telerik RadTextBox in the code behind of a click event. I've seen it solved in Javascript, but not the .cs/.vb file. Hopefully my code will explain it better: HTML:
loxdog
  • 1,007
  • 3
  • 12
  • 30
1
vote
2 answers

how to mask some text in radtextbox

I need to mask a input string having Pan number format ex.(ABCDE1234F) to (######234F) . I have tried using maskedtextbox but it didn't help. using below code :-
Laxmi
  • 83
  • 8
1
vote
2 answers

Textbox with password mode lose value

I am using an ASP TextBox and a Telerik RadTextBox in my asp.net webform. I know the The both the controls clear its value after each postback and this is by design due to security reasons. In my scenario both the controls are ajaxified. Still the…
Vishnu Y
  • 2,211
  • 4
  • 25
  • 38
0
votes
1 answer

Scrolling Telerik RadTextBox When Needed - Not RadTextBoxControl

I'll try and explain what I'm after. I have a multiline RadTextBox, (takes about 7 lines of text). I do n't want to show scroll bars as I start to type. When the text gets to the 8th line either via enter or wordwrap to make the vertical scroll bar…
SilverLight
  • 19,668
  • 65
  • 192
  • 300
0
votes
1 answer

How can we set and then reset MaxLength property for a Telerik TextBox from client side?

I am using a RadTextBox control and I need to set an reset MaxLength property based on some conditions, in client side. if(maxLengthToSet == 4){ txtBox.set_maxLength(4); } else{ // reset maxlength so that it can accept…
0
votes
1 answer

RadTextBox EmptyMessage and .Replace Equals Empty or With a Value?

I have a RadTextBox control in my form, and in one of the methods, it sets the text of the control as such: SecondHalfTB.EmptyMessage = sharedMailbox.MailboxEmail.Replace("CAAS_", string.Empty) …
gymcode
  • 4,431
  • 15
  • 72
  • 128
0
votes
1 answer

How to set RadTextBox name attribute as static to use in Javascript

I am using telerik RadTextBox inside asp.net User Control page. I have writen below Jquery validation code inside main content page as shown below, I am trying to set RadText box name attribute as static inside User Control so that I can use it in…
Shaiju T
  • 6,201
  • 20
  • 104
  • 196
0
votes
1 answer

Enable either texbox or dropdown value to be inserted javascript

How can i only allow the client to insert either of these two fields.Either Textbox (selected Column) or Value from dropdown (selected Column) but only one field is allowed in a gridview.
Subek Shakya
  • 595
  • 4
  • 10
  • 28
0
votes
1 answer

Canceled event is not reverting RadTextBox to initial value

Recently, I have refactored my javascript to better utilize closures and invocation. The Problem Setting the cancel property (to true) of the telerik eventArgument (e) accompanying the RadButton Client OnValueChanging event is no longer setting the…
Brett Caswell
  • 732
  • 1
  • 4
  • 16
0
votes
1 answer

Not able to set the value in RadNumeric Text box in OnBlur event

My requirement is - when user enter any number in the text box & tabout - i need to add leading zero's in the text box value. function AddPaddingToInvestmentNumber(sender, args) …
Code's
  • 208
  • 2
  • 18
0
votes
2 answers

RadTextBox not updating

Hi I am trying to update some database values with a simple form with Telerik RadTextBoxes. I can set the text value no problem but when it comes to saving on button click the values do not get updated. My code to set the textbox is in the Page Load…
Robert Zeno
  • 67
  • 1
  • 14
0
votes
0 answers

Telerik Radtextbox with round corners in VS2013

I am using a Radtextbox control in my vb2013 project. Was trying something new by rounding the radtextbox control. I used this piece of code to accomplish it but didn't worked. How can we achieve rounded corners for a RadTextbox control. [Code]:…
Steve
  • 522
  • 3
  • 12
  • 28
0
votes
1 answer

RadTextBox disables on mouseover

I'm having trouble with a RadTextBox. Telerik seems to have baked in this really cool feature (insert sarcasm) that if you at one point set the enabled property of the control to false then set it to true say on an event, on hover, the control will…
Jeremy
  • 147
  • 1
  • 1
  • 14
0
votes
0 answers

RadTextBox Enter Key Closes the Browser Tab

I am having a RadTextBox in my page. This control is one of the search criteria to bring the results. The issue is, if I focus on the text box and press enter, the browser window / tab closes immediately. The RadTextBox tag does not have anything…
Sriram B
  • 651
  • 2
  • 8
  • 20
1
2