Telerik Forums
Kendo UI for jQuery Forum
1 answer
51 views
I use a Bar Charts / Multi-axis, and there is a problem that i can not get the node of line chart, any suggestions will be appreciated
Hristo Germanov
Telerik team
 answered on 25 Dec 2013
1 answer
77 views
I encount a problem , the last number of  amount sink,  see attachment for detail, any suggestions will be appreciated
Hristo Germanov
Telerik team
 answered on 25 Dec 2013
3 answers
415 views
The Roadmap for November states that there's is now support for multi-selection without closing the popup. How do i turn that on?
Dimo
Telerik team
 answered on 25 Dec 2013
1 answer
80 views
hi.

 I need to know what is the criteria by which the  sheduler orders the  tasks.
i need that the task that is at first on the day module is the same that comes first in the module month

see attachment files

Thanks.

Alex Gyoshev
Telerik team
 answered on 25 Dec 2013
1 answer
730 views
Hi,

I am using Kendo UI Complete v2013.2.918.  I have to convert the date column data into the language specific date format which is based on browser's "Language Preference"  and i have to show the dates in customized filter menu in the same format.

Please suggest a way to achieve this.

Thanks,
Raj
Dimo
Telerik team
 answered on 25 Dec 2013
5 answers
93 views
Hello,

I' ve tried to set up a tooltip for an stacked area and stacked line (lines for comparison) chart.
From my point of view the categoryaxis crosshair tooltip would be great for showing details of chart data, because there is the vertical crosshair, which shows all datapoints.

  1. But the only thing you can show in this tooltip is the category value. Does this make sense? This value is shown at the bottom of the chart. Why can't I access all the dataItems?
  2. Why can't I change the relative position of all of the tooltips to the mouse pointer? On my chart the tooltip (standard for all the chart) now hides the points of interest, because it is just to the right of the mouse pointer.
  3. The most 'datafull' tooltip ist the standard, but this one jumps an falls to the nearest point of data on moving the mouse pointer.

What I'd like to suggest is to build a general purpose tooltip (templates are cool!), that:

  1. can access all data (especially dataItems) so you can provide additional data that is only used on tooltip
  2. can be positioned:
  • at a static point, static X or Y value or
  • relative to the upper left corner of the chart or
  • relative to the mouse pointer

Did I miss any feature or ist there no way to achive my goals (poitioning and showing all data) at this time?

Best regards
Dirk

Alex Gyoshev
Telerik team
 answered on 25 Dec 2013
1 answer
49 views
I posted the full question on StackOverflow, but have not gotten any answers.  Trying the premium forums now.  Link:
http://stackoverflow.com/questions/20687565/kendo-window-change-scrolling-to-have-static-update-cancel-buttons
Alex Gyoshev
Telerik team
 answered on 25 Dec 2013
3 answers
239 views
I hope the editor can be encoded because I want to post the editor text to the controller,but I find that when I refresh the page(click F5),the editor encode the text again.My Model.Body also contains html mark: For example, first Time enter the page is OK,and show "My Model Body Is Here",and I refresh the page it show the html mark like below,but I just want to encode only one time,I also use no cache but it do not work.Third time I refresh the page,it encode again,and show <table><tbody>...
Model:
 
//after search,my Model.Body is here
 <table>
 <tbody>
 <tr><td align="center" style="font-weight:bold;">
 <span style="background-color:#ccff33;">My Model Body Is Here</span>
 </td></tr>
 </tbody>
 </table>
View:
 
  @(Html.Kendo().Editor()
  .Name("Body")
  .Tools(tools => tools.Clear()
  .Bold().Italic().Underline().Strikethrough()
  .JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
  .InsertUnorderedList().InsertOrderedList()
  .Outdent().Indent()
  .CreateLink().Unlink()
  .InsertImage()
  .SubScript()
  .SuperScript()
  .ViewHtml()
  .FontName()
  .FontSize()
   .FontColor().BackColor()
   )
   .HtmlAttributes(new { style = "width:90%;height:500px" })
   .Value(Model.Body))
Controller:
 
 [OutputCache(Duration = 0)]
 public ActionResult Index(int id=0)
 {
 return View(ModelRepository.GetModelById(id));
 }
Alex Gyoshev
Telerik team
 answered on 25 Dec 2013
2 answers
159 views
I am very much a newbie with Kendo. I have worked with some examples and been able to populate a grid with data from my API.

I am trying to use a combo box to select the number of days of data to display, modify the API call and refresh the grid. Are there any examples or tutorials that cover that combination of controls?

Thanks in advance,

Rob
Robert
Top achievements
Rank 1
 answered on 24 Dec 2013
3 answers
1.3K+ views
Hi Kendo team,
I have a grid to which I want to attach a tooltip; 
the tooltip should be shown only if the content of the gridcell is bigger than the cell, and the tooltip simply contains the text content of the cell.
I am not able to achieve this simple task.
 First I filtered for grid elements and I inserted the processing in the content property as

                    grid.table.kendoTooltip({
                        filter: "td:not(:empty)",       //no tooltip for empty field
                         content: function (e) {
                            var target = e.target; // element for which the tooltip is shown
                            if (isEllipsisActive(target[0])) {
                                return $(target).text();
                            }
                            else {
                                return "";
                            }
                        },
                        show: function (e) {
                            this.popup.wrapper.width("auto");
                        },
                        autoHide: true,
                        position: "bottom"
                    });

               function isEllipsisActive(e) {
                    return (e.offsetWidth < e.scrollWidth);
                }

This approach substantially works, but for items that are totally visible, still a small gray stripe is shown as empty tooltip.

I thought to attach the processing to filter property, but I am not able to call a function from the filter property, i.e. something like

              filter: function (e) {
                            var target = e.target; 
                            if (target[0].role == "gridcell) {
                               if (isEllipsisActive(target[0])) {
                                  return true;
                               }
                            }
                            return false;
              },


Please give me a hint

Best regards and best wishes of Merry Christmas to all the team

Marco
Dimo
Telerik team
 answered on 24 Dec 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?