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

Not able to see the kendo editor icon when deployed application on cloude

3 Answers 216 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Mark
Top achievements
Rank 1
Mark asked on 17 Sep 2014, 11:46 AM
I have implemented Kendo Editor(MVC) in my application.Its working fine
on the local.But as When I upload my application on Cloude (Windows
Azure) I am not able to see tools ICON images.Please check with attached
Image.
I also Verified with Sprite.png but its exists on Cloude ,Still issue occurs.Here is below my code.


Layout.cshtml :
  @Styles.Render("~/bundles/KendoCss")
  @Scripts.Render("~/bundles/KendoJs")



Bundle.config :
  bundles.Add(new StyleBundle("~/bundles/KendoCss").Include(
                 "~/Styles/Kendo/kendo.common.min.css",
                  "~/Styles/Kendo/kendo.bootstrap.min.css",
                   "~/Styles/Kendo/kendo.dataviz.min.css",
                   "~/Styles/Kendo/kendo.dataviz.default.min.css"
                ));
            bundles.Add(new ScriptBundle("~/bundles/KendoJs").Include(
                  "~/Scripts/Kendo/kendo.all.min.js",
                            "~/Scripts/Kendo/kendo.web.min.js"


Editor.cshtml :
        @(Html.Kendo().EditorFor(m => m.Header)         
          .HtmlAttributes(new { style = "width: 100%;height:Auto;" })
                   .Tools(tools => tools
                .Clear()
                .Bold().Italic().Underline().Strikethrough()
                .JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
                .InsertUnorderedList().InsertOrderedList()
                .Outdent().Indent()
                .CreateLink().Unlink()
                .InsertImage()
                .InsertFile()
                .SubScript()
                .SuperScript()
                .TableEditing()
                .ViewHtml()
                .Formatting()
                .FontName()
                .FontSize()
                .FontColor().BackColor()
              )
                      .Encode(false)
        )

Also Please checked with attached folder structure and Output image.

3 Answers, 1 is accepted

Sort by
0
Mark
Top achievements
Rank 1
answered on 18 Sep 2014, 07:37 AM
It was an css image path issue on cloude.I resolved it.
I made change in Kendo.Bootstrap.min.css for the Sprite.png path.
Thanks
0
Thomas
Top achievements
Rank 1
answered on 14 Jul 2015, 06:44 AM

Hi, 

I am unable to view the bold,italics in my kendo editor. May I know th possible reasons for the same. Kindly check the image attached

0
Alex Gyoshev
Telerik team
answered on 16 Jul 2015, 06:49 AM

Hello Thomas,

Can you reproduce the problem in the online demos? If not, please provide a sample that shows the problem. You can check the browser developer tools' network panel to check what image path is requested.

Regards,
Alex Gyoshev
Telerik
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 Feedback Portal and vote to affect the priority of the items
Tags
Editor
Asked by
Mark
Top achievements
Rank 1
Answers by
Mark
Top achievements
Rank 1
Thomas
Top achievements
Rank 1
Alex Gyoshev
Telerik team
Share this question
or