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

radprompt multiline

5 Answers 147 Views
Window
This is a migrated thread and some comments may be shown as answers.
Elmar
Top achievements
Rank 1
Elmar asked on 09 May 2008, 06:23 AM
Is there an option to create a radprompt that has a multiline textbox instead of just a regular one? Probably not but I think it would be a nice addition.

thanks,
Elmar

5 Answers, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 09 May 2008, 08:13 AM
Hi Elmar,

You can do this by using a custom radprompt template which you can modify so it fits your requirements. More information is available in the following KB article:
http://www.telerik.com/support/kb/article/b454K-hbc-b454T-cec-b454c-cec.aspx



Kind regards,
Georgi Tunev
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Sean
Top achievements
Rank 1
answered on 12 Nov 2018, 09:58 PM
The link does not exists. can you please update it.
0
Peter Milchev
Telerik team
answered on 13 Nov 2018, 11:54 AM
Hi Sean,

Thank you for noticing. 

Here is the correct link to the KB article: Custom radprompt for RadWindow for ASP.NET and RadWindow for ASP.NET AJAX

Regards,
Peter Milchev
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Sean
Top achievements
Rank 1
answered on 13 Nov 2018, 04:46 PM

Hello Peter,

I was trying to put css styling on radtextbox. Is it a known problem that it doesn't work? if i do:

<RadTextBox ID="radBoxName" runat="server" CssClass="someClass"/>            <-- does not work

<RadTextBox ID="radBoxName" runat="server" style="margin: 10px;"/>                <-- works

<asp:TextBox ID="aspBoxName" runat="server" CssClass="someClass"/>            <-- works

<asp:TextBox ID="aspBoxName" runat="server" style="margin: 10px;"/>            <-- works

for padding, style="padding: 10px" in markup doesnot work either for radtextbox. If it is a known problem can you please provide me with a link to track the problem. If it is not a problem, can you think on something that i might be doing wrong? 

Thank you,

Sean

0
Peter Milchev
Telerik team
answered on 15 Nov 2018, 12:40 PM
Hello Sean,

The CSS class is applied correctly to the TextBoxes and you can apply the margin with the following style: 

<style>
    .someClass{
        margin: 10px;
    }
</style>

For further customization, you can follow the suggestions in the first two points of the Improve Your Debugging Skills with Chrome DevTools blog post. 

Once you know the styles you need to override, you can use the same style selector and add "html body " in front of it to make it more specific, "stronger". More on CSS specificity you can find here: 

Regards,
Peter Milchev
Progress Telerik
Get quickly and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Window
Asked by
Elmar
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Sean
Top achievements
Rank 1
Peter Milchev
Telerik team
Share this question
or