I'm customising the toolsfile.xml with my own tool;
I'm customising the icon with the stylesheet, which works without issue.... until i change the showtext property to true.
At this point, the icon reverts to the default "info" icon, and my defined icon is ignored.
I'm assuming this a bug? I'd like to show the text as well as the icon.....
<tools name="My Toolbar" enabled="true"> |
<tool name="MyTool" text="My Tool Text" showicon="true" showtext="false" /> |
</tools> |
I'm customising the icon with the stylesheet, which works without issue.... until i change the showtext property to true.
At this point, the icon reverts to the default "info" icon, and my defined icon is ignored.
I'm assuming this a bug? I'd like to show the text as well as the icon.....
4 Answers, 1 is accepted
0
Hello Gordon,
I was not able to reproduce the problem and for your convenience I have attached my test project. Please, test it and let me know if you still experience the issue with it.
Best regards,
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.
I was not able to reproduce the problem and for your convenience I have attached my test project. Please, test it and let me know if you still experience the issue with it.
Best regards,
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
Gordon
Top achievements
Rank 1
answered on 23 Apr 2010, 10:54 AM
(Dragging this one up again)
It was because in the css of the page i had
Which worked fine when
But when both attributes were set to true, the icons wasn't loaded.
However, changing the css to;
Fixed the problem.
It was because in the css of the page i had
<style type="text/css"> |
.reTool .ReFauxFullScreen |
{ |
background-image: url(Content/Images/fullscreen.gif); |
} |
</style> |
Which worked fine when
showicon="true" showtext="false" |
However, changing the css to;
<style type="text/css"> |
.reToolbar.Default .ReFauxFullScreen |
{ |
background-image: url(Content/Images/fullscreen.gif); |
} |
</style> |
0
Archana
Top achievements
Rank 1
answered on 06 Aug 2010, 11:20 AM
Hi,
I am using RadEditorMOSS version 5.5.0.0. I am using radEditor free flow control throught the pagelayout.
I want to edit the formatblock in the toolbar of radEditor.
For that i edited ToolsFile.xml and added following before </root> :-
<paragraphs>
<paragraph name="Normal" value="<p>" />
<paragraph="<h3>Heading 3</h3>" value="<h3>" />
</paragraphs>
But on adding this it throws error. The error is as follows :-
'<', hexadecimal value 0x3C, is an invalid attribute character
Please help me out with this.
Regards,
Archana
I am using RadEditorMOSS version 5.5.0.0. I am using radEditor free flow control throught the pagelayout.
I want to edit the formatblock in the toolbar of radEditor.
For that i edited ToolsFile.xml and added following before </root> :-
<paragraphs>
<paragraph name="Normal" value="<p>" />
<paragraph="<h3>Heading 3</h3>" value="<h3>" />
</paragraphs>
But on adding this it throws error. The error is as follows :-
'<', hexadecimal value 0x3C, is an invalid attribute character
Please help me out with this.
Regards,
Archana
0
Hi Archana,
You should encode the < symbol in XML to <
<paragraphs>
<paragraph name="Normal" value="<p>" />
<paragraph="<h3>Heading 3</h3>" value="<h3>" />
</paragraphs>
This will fix the error.
Sincerely yours,
Rumen
the Telerik team
You should encode the < symbol in XML to <
<paragraphs>
<paragraph name="Normal" value="<p>" />
<paragraph="<h3>Heading 3</h3>" value="<h3>" />
</paragraphs>
This will fix the error.
Sincerely yours,
Rumen
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items