Hello,
I'm not sure which version of the RadEditor control we hav, i do know that it was the latest version from Dec 2006.
I want to be able to customize thehelp file, so that i can add my own help FAQ's for the page which is using the rad editor,
I have opened up the Tools.xml file which i use for the partuclaur page.
I have tried
<tool name="Help">
<![CDATA[The help file contains the following]]>
</tool>
but it hasn't worked.
Can anyone please advise me on how to go about altering the help button content.
I'm not sure which version of the RadEditor control we hav, i do know that it was the latest version from Dec 2006.
I want to be able to customize thehelp file, so that i can add my own help FAQ's for the page which is using the rad editor,
I have opened up the Tools.xml file which i use for the partuclaur page.
I have tried
<tool name="Help">
<![CDATA[The help file contains the following]]>
</tool>
but it hasn't worked.
Can anyone please advise me on how to go about altering the help button content.
8 Answers, 1 is accepted
0
Hi Zal,
To customize the contents in the Help dialog, just open the \RadControls\Editor\Localization\en-US\Help.ascx file and modify the HTML content.
Sincerely,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
To customize the contents in the Help dialog, just open the \RadControls\Editor\Localization\en-US\Help.ascx file and modify the HTML content.
Sincerely,
Rumen
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Jon
Top achievements
Rank 1
answered on 12 Jun 2009, 02:29 PM
Hello,
Re: customizing Help.ascx. I have done so successfully, however, I also have added a button to the toolbar, and would like to include that in my Help.ascx. It appears that I can just add a row to the table, and populate columns with what I want, but I am not sure if this is safe.Some questions:
1) Can I just add rows to the tables in Help.ascx? Any restrictions?
2) My new button has an associated image. How can I get that image to appear in the help, as with other buttons?
3) Can I remove existing rows from the tables?
Thanks,
-Jon
Re: customizing Help.ascx. I have done so successfully, however, I also have added a button to the toolbar, and would like to include that in my Help.ascx. It appears that I can just add a row to the table, and populate columns with what I want, but I am not sure if this is safe.Some questions:
1) Can I just add rows to the tables in Help.ascx? Any restrictions?
2) My new button has an associated image. How can I get that image to appear in the help, as with other buttons?
3) Can I remove existing rows from the tables?
Thanks,
-Jon
0
Hi Jon,
Straight to the questions:
Greetings,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Straight to the questions:
- Yes, you can add rows to the tables in the Help.ascx and customize it as per your requirements.
- You can see how to set an icon to a custom toolbar button in this help article: Adding a Custom Button.
The css syntax is
<style>
.reToolbar.<skinName> .<commandName>
{
background-image: url(MyImage.gif);
}
</style> - Yes, you can remove rows from the tables.
Greetings,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Jon
Top achievements
Rank 1
answered on 15 Jun 2009, 05:41 PM
Rumen,
I already have the custom toolbar button with image in place in the Editor, but not from the help.
Is there something more than needs to be done to have the image appear in the help?
Thanks.
0
Hello Jon,
All you need to do is to put an image tag in the table cell for your custom button and specify the src path to point to your own custom image, e.g.
1) Open the Help.ascx file
2) Add a new table raw and put an image in the first cell, e.g.
<table cellpadding="0" cellspacing="0" class="helpTable bottomBorder">
<tr>
<th style="width: 24px;">
Icon
</th>
<th style="width: 500px;">
Description
</th>
<th>
Shortcut</th>
</tr>
<tr>
<td class="reTool">
<img src="http://demos.telerik.com/aspnet-classic/RadControls/Editor/Skins/Default/buttons/CustomDialog.gif" />
</td>
<td class="reDescriptionCell">
custom tool 1</td>
<td>
-</td>
</tr>
Greetings,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
All you need to do is to put an image tag in the table cell for your custom button and specify the src path to point to your own custom image, e.g.
1) Open the Help.ascx file
2) Add a new table raw and put an image in the first cell, e.g.
<table cellpadding="0" cellspacing="0" class="helpTable bottomBorder">
<tr>
<th style="width: 24px;">
Icon
</th>
<th style="width: 500px;">
Description
</th>
<th>
Shortcut</th>
</tr>
<tr>
<td class="reTool">
<img src="http://demos.telerik.com/aspnet-classic/RadControls/Editor/Skins/Default/buttons/CustomDialog.gif" />
</td>
<td class="reDescriptionCell">
custom tool 1</td>
<td>
-</td>
</tr>
Greetings,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Jon
Top achievements
Rank 1
answered on 16 Jun 2009, 03:14 PM
Rumen,
Thanks. That works if a full URL http://whatever is given, but when I try to reference an image in my project, the reference looks good in Visual Studio but the image comes up broken when I test the help. I must be overlooking something.
Thanks. That works if a full URL http://whatever is given, but when I try to reference an image in my project, the reference looks good in Visual Studio but the image comes up broken when I test the help. I must be overlooking something.
<
img
src="/App_Themes/Standard/images/saveas.gif"
alt="SaveAs" />
Suggestions?
Thanks,
-Jon
0
Hello Jon,
In this path /App_Themes/Standard/images/saveas.gif" the / placed before the App_Themes folder name represents the root of the web server. Please, remove the slash App_Themes/Standard/images/saveas.gif and test again.
If the problem still persists, right click on the red X icon (which shows the missing icon), choose Properties and see the path where the browser is looking for the saveas.gif icon.
Sincerely,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
In this path /App_Themes/Standard/images/saveas.gif" the / placed before the App_Themes folder name represents the root of the web server. Please, remove the slash App_Themes/Standard/images/saveas.gif and test again.
If the problem still persists, right click on the red X icon (which shows the missing icon), choose Properties and see the path where the browser is looking for the saveas.gif icon.
Sincerely,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Jon
Top achievements
Rank 1
answered on 18 Jun 2009, 11:17 PM
Rumen,
Ah. Stupidity on my part! Sorry to have bothered you with this.
Thanks!
-Jon
