Telerik Forums
Kendo UI for jQuery Forum
0 answers
25 views
I've tried and tried to understand how to create the page I need and after hours and hours of trying the samples I cannot even get up a sample page from following the demos.

Is there anyone who know how to do the Grid bound to local data that can do this for my website. Give me  price.

I give up!

juliewhitmire@usatransportationlogistics.com

Julie
Julie
Top achievements
Rank 1
 asked on 13 Dec 2013
4 answers
475 views
Through experimentation, I have found that the data source grouping feature does not seem to work correctly in cases where the group values in the input data happen to be unique.  I have a simple bar chart with a category field 'product_group' and another field 'site' used for grouping within product group.  It works OK with some data sets, but in cases where each data item happens to have a unique site value, only the first category encountered in the data is being displayed in the category label.

While grouping is meaningless when performed on a unique field, for those special cases where it might happen, the chart should still display correctly.

I have recreated the problem in a jsfiddle showing two data sets, one that displays incorrectly and the other correctly: http://jsfiddle.net/W29KF/

Also, I am new to KendoUI, so please let me know if I am doing something wrong.

Fred
Top achievements
Rank 1
 answered on 13 Dec 2013
5 answers
199 views
Is it possible to have a statement like:

vm.set("SysInfo.Browser", "Chrome");

Where SysInfo is defined in the Observable object as:

vm = kendo.observable({
        SysInfo = {
        status: "starting",
        xhr2: "false",
        browser: "",
        databases: "",
        center: "",
        date: "",
        zoom: 0
    }
Dr.YSG
Top achievements
Rank 2
 answered on 13 Dec 2013
3 answers
959 views
I am using a bar chart whose category axis generates values depending upon the numbers in data. The problem is when the value of data is less, it generated the values in decimals also. Is there any way to ensure that the values generated in category axis are integers only. Please refer to attachment for the problem.
Iliana Dyankova
Telerik team
 answered on 13 Dec 2013
1 answer
50 views
I have the following code.  In the model is a property called IsAuthenticated.  After the ajax refresh, I need to check this property, and if true, then close the Window.  What is the best way to do this?

 

@using (Ajax.BeginForm("Login", "Account", new AjaxOptions { InsertionMode = InsertionMode.Replace, UpdateTargetId = "loginSection", }))
        {
            @Html.Partial("_LoginInfoPartial", Model)
            <input} type="submit" value="Log in" />
            <button type="button"  id="close_button" onclick="cancelLogin()" >Cancel</button>
             
            <script>
                function cancelLogin()
                {
                    var window = $("#loginWindow").data("kendoWindow");
                    window.close();
                }
            </script>
         }

 

 

 

 

Greg Gum
Top achievements
Rank 1
 answered on 13 Dec 2013
2 answers
133 views
I have started using Zurb Foundation (only the CSS) as a grid layout for Kendo projects.

Works fine so far, but I am having a problem with kendo windows. 

I am not getting small-offset or small-centered to work.

I suspect the pop-up window is smaller than that the media queries say the size of the outer window, so it is not working. Is that correct? 

I,e, I don't want to waste time using Zurb in pop up windows if it is not even been considered from a design viewpoint.

Dr.YSG
Top achievements
Rank 2
 answered on 13 Dec 2013
3 answers
265 views
Hi Kendo Team:
What's the solution you give for kendo ComboBox with remote dataSources that return thousands of rows? Paging? Virtual Scrolling?
The demos only show comboBoxes with just a few records. Could you provide any sample, please?

Kind regards,
Oscar.
Kiril Nikolov
Telerik team
 answered on 13 Dec 2013
1 answer
1.0K+ views
So I have a graph with multiple series.

.Series(series => {
     series.Line(model => model.SentFiles).Name("Sent");
     series.Line(model => model.ReceivedFiles).Name("Received");
     series.Column(model => model.SentFiles).Name("Sent Data");
     series.Column(model => model.ReceivedFiles).Name("Received Data");
     series.Area(model => model.ReceivedFiles).Name("Received Data").Labels(false);
     series.Area(model => model.SentFiles).Name("Sent Data").Labels(false);
})

because I want my users to be able to show and hide multiple different types of data in 1 graph

I have worked out how to hide series

for (var i = 0, length = series.length; i < length; i++) {
     series[i].stack = stack;
     series[i].visible = (types.indexOf(series[i].type) != -1);
};

however the legend for the series just "grays out".

I want to be able to show and hide the legend as I show and hide the series.

can you please advise how I can achieve this.

Thanks

*** EDIT  ***

Ok so my initial problem was hiding the legends dynamically, this has been solved.
However, I now have the issue of setting the initial setup of the series and legends...

So I can do the following

.Series(series =>
{
     series.Line(model => model.SentFiles).Name("Sent");
     series.Line(model => model.ReceivedFiles).Name("Received");
     series.Column(model => model.SentFiles).Name("Sent Data").Visible(false);
     series.Column(model => model.ReceivedFiles).Name("Received Data").Visible(false);
     series.Area(model => model.ReceivedFiles).Name("Received Data").Visible(false);
     series.Area(model => model.SentFiles).Name("Sent Data").Visible(false);
})

which will hide the series, but the legends for those are viewable ("grayed out"). I want a way to initially hide the legends.

I would prefer not having to call a js method on Document.Ready to then hide series

I would have thought if this functionality is available through the JS api that this should be a configurable setting.

Thanks in advance
Luke
Top achievements
Rank 1
 answered on 13 Dec 2013
5 answers
141 views
Hi,

I am relatively new to web development, so please allow me a maybe stupid question. I searched here and with google, but did not come closer to the answer...

Kendo says it is a HTML5 framework. Ok, fine. Now, I did an application with Kendo, and it runs in old browsers, too. So, somehow it cannot really be HTML5. I am just confused: Is there some kind of migration in the background? Or how can you say Kendo is HTML5, when it actually all I get (and all I want) is HTML4?

Thanks!
Vladimir Iliev
Telerik team
 answered on 13 Dec 2013
1 answer
96 views
Hi,
Please refer to the foloowing HTML snippet. I have added the kendo and jquery references properly.
When I remove the percentage values the validator function works properly. But when it is set to percentage it will not work Please help. Thanks in advance
Regards,
Vijay


   <div style="width: 90%; height: 8%; float: left;">
<label id="lblUserName" class="LoginLabel required" for="UserName">
Username:
</label>
</div>
<div style="width: 90%; height: 16%; float: left;">
<input id="txtUserName" type="text" maxlength="100" class="LoginTextBox" 
name="UserName"   placeholder="UserName" required validationmessage="Please enter {0}" />
</div>
Kiril Nikolov
Telerik team
 answered on 13 Dec 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?