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

How to expand textbox dimensions in RadEditor window?

6 Answers 114 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Atul Srivastav
Top achievements
Rank 1
Atul Srivastav asked on 02 Nov 2012, 02:54 PM
Hi, i am using RadEditor in .NET custom control. I've an hyperlink in the content area of the editor. Now, whenever the hyperlink is clicked the radeditor displays its properties in the bottom which can be edited. There are four properties namely: URL, Target, Tooltip and ClassName. Both URL and Tooltip have textbox as their inputs. Is there anyway to increase that textbox dimensions?
I am attaching the screenshot as well for the reference.

Thanks.

6 Answers, 1 is accepted

Sort by
0
Jayesh Goyani
Top achievements
Rank 2
answered on 02 Nov 2012, 03:01 PM
Hello,

.RadEditor input {
    width: 250px !important;
}
 
//OR
 
.YOURSKINNAME.RadEditor input {
  
    width: 250px !important;
}


Thanks,
Jayesh Goyani
0
Atul Srivastav
Top achievements
Rank 1
answered on 02 Nov 2012, 03:40 PM
thanks for the reply pal. However, URL textbox width still remains the same. Instead textbox width for Hyperlink manager window got increased. Please refer to the screenshot.
0
Jayesh Goyani
Top achievements
Rank 2
answered on 03 Nov 2012, 04:15 AM
Hello,

I am not able to reproduce it.

Please check attached image so you may get some idea.

Thanks,
Jayesh Goyani
0
Atul Srivastav
Top achievements
Rank 1
answered on 06 Nov 2012, 10:05 AM
yes, i understand that. The textbox width in hyperlink manager is altered. However, i was asking about textbox width which appears upon clicking of hyperlink text within design pan at bottom of the editor. Kindly, refer to the screenshot. The textbox's width at the bottom needs to be increased.
thanks again.
0
Atul Srivastav
Top achievements
Rank 1
answered on 06 Nov 2012, 10:11 AM
yes, i understand that. The textbox width in hyperlink manager is altered. However, i was asking about textbox width which appears upon clicking of hyperlink text within design pan at bottom of the editor. Kindly, refer to the screenshot. The textbox's width at the bottom needs to be increased.
thanks again.
0
Dobromir
Telerik team
answered on 08 Nov 2012, 11:33 AM
Hello,

You can decorate the pointed input using the following CSS:
<style type="text/css">
    .reModule span input
    {
        width: 200px !important;
    }
</style>


All the best,
Dobromir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
General Discussions
Asked by
Atul Srivastav
Top achievements
Rank 1
Answers by
Jayesh Goyani
Top achievements
Rank 2
Atul Srivastav
Top achievements
Rank 1
Dobromir
Telerik team
Share this question
or