Declined
Last Updated: 16 Jun 2016 14:20 by WT
Created by: William
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Modal window does not currently work properly with MVVM. When visible = false, the modal area is still visible.
Declined
Last Updated: 11 May 2016 14:41 by ADMIN
I don't know what parameters the plugin sends to the server side.. in the grid for example there are parameters for pagination. I need to know how should I implement the PHP/Java code.
Declined
Last Updated: 11 May 2016 14:31 by ADMIN
This is still not fixed I did a detailed walk through of your code and found this:

Let me start by saying I am honestly trying to help. So unlike many of the other posts i have read I would rather you listen and not just tell me we are wrong... because what im saying is in both senerios below is out side of the programmer control, and the template your built is well not ready for them.

In short the template (though great it is) for the data-grid is deeply flawed and reliant on perfect data or it fails. I am of the general mind set that the templates should work for the most messed up senerior's, but taking that back a step they should work for simple ones also. 

I also reference line numbers in the keno.web.js file

I have mocked up this example based off of your example. 
Condensed json data call: (Not returning null values)  http://jsfiddle.net/3zhqx/1/ 

Resaults: Uncaught ReferenceError: age is not defined 

Pulling data from other locations where you cant controll the formatting of the incoming data json data call: (IE Web 2.0)
 http://jsfiddle.net/EyCZd/2/  No Error but the template does not pull the error.

http://jsfiddle.net/qqskQ/3/ 
Uncaught ReferenceError: Name is not defined  


Resolustion: (Many Options,but all have costs...)
21309: 
 rowTemplate = kendo.template(rowTemplate, settings);

This builds the row template:

21333-21395 Template builder.
In this you reference the data with a with clause and then fill those values from the data. True this is the most expedient but also the most fragile. It causes both of the error above.  It means that the system can not handle for columns that you cant control the naming of, or if the json data is missing a column or if the column is puposly missing to save space bacause its nulle.

Jquery ran into the smae issue and return null in the exsampel. http://api.jquery.com/template-tag-if/  read the big header at the top...

To fix this you can loop through the columsn try to ge the data and then build a html set acordingly. Personaly this may seam longer , but the computed total cyles would be less then the total computed cost fo the next one item. The last option is up for debate. 

The second option is to add to the current builder a way to check for undefined opjects... this is exceedingly difficult seeing as to how tightly coupled and fagle that particular line of code is. 

This is how they handled for it in another template in your code:
10675  { data.title || ""} insted of with(data)...... e(title)

I tried to manually do this, but i have only been a java programmer for two months and lack all the verbiage needed to write the code well... that and it was 3 in the morning. 

The third option is what i had to do out side of the control, but its an unneeded mess fix that makes me pass a 1/3 more data to handle for this. Almost a deal breaker for me.

I had to fix all incomimng feed and gerate a fixed column name and colection, and I had to make sure all my jason and my feed have every  row  have every column.... when dealing with massive data sets that sucks both on bandwidth and cpu. and column in the. That is why i went mvvm in the first place to deffer costs...

So back to the fix you could when binding the data... I think 4601 or there about... check to make sure each line has every row and fit it in as null if it does not. the reason this may be the fastes is because your already looping through all the data on every call and sooooo you can add in at 4723 I think.... that would allow you to add in a null object with the correct name into the data.

I think the last one is the right idea but i ren out of time to trouble shoot the issue nay more.

The use case is this: 
User is either pulling data from a myriad of sources and union the data so the rows may not always match, but thats ok because its web 2.0... say netflix and blockbuster feeds... bad example you can shoot it down but the need is there.

user is managing lots of data and needs to save bandwidth and cpu by processing less data. (got to love and hate the cloud.) so he can not always send null filed in json.

User is geting data from a source that is not known or well defined, and needs to pass it right to the client... for whatever reason..  or user is getting dynamic columns from data and may not know what the columns are or how well they are formatted...


Hope this helps.

Sorry for the spelling im busy got to run.

Other posts on same issue:
http://www.kendoui.com/forums/ui/grid/grid-with-template-error-uncaught-referenceerror-sum-is-not-define.aspx#2232854
Declined
Last Updated: 11 May 2016 13:32 by ADMIN
Created by: Bujji
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2
Kendo grid has default filter option .How can i integrate the grid with filtered value in chart
Declined
Last Updated: 11 May 2016 12:54 by ADMIN
Created by: Graham
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
3
Declined
Last Updated: 11 May 2016 08:59 by ADMIN
Created by: Hong
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Right now only words can be indented, but not Table, the format does not look tidy enough
Declined
Last Updated: 11 May 2016 07:48 by ADMIN
Created by: RedTears75
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2
would be great to have the option to set an image in a datagrids title, or alternatively be able to specify a title-template (like row-template but for headers)
Declined
Last Updated: 10 May 2016 16:56 by ADMIN
Created by: Saurav
Comments: 5
Category: Kendo UI for jQuery
Type: Feature Request
44
 the splash image while loading the web app initially, well, at least for the ios devices.
Declined
Last Updated: 10 May 2016 14:07 by ADMIN
Created by: ai
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
3
add server side wrapper jsp for mobile, support MVC binding, when server side data change, mobile side widget auto change
Declined
Last Updated: 10 May 2016 13:55 by ADMIN
Created by: Ryan
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
4
Native mobile tabstrips each have have their own set of views and history per tab.  So for example if you are doing work on one tab, then click another tab, returning back to the first will show everything as it was before leaving.  


kendo mobile's tabstrip doesn't work that way.  Clicking on another tab destroys the content in the previous tab. It should not do that!  Rather, it should mimic the behavior of a native tabstrip.
Declined
Last Updated: 10 May 2016 13:50 by ADMIN
Created by: Денис
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
38
Example of existing:
http://jscrollpane.kelvinluck.com/

Standart scrolling in windows sucks (and takes mush space).
,Kendo Grid has to have designable scrolls, pls :)
Declined
Last Updated: 09 May 2016 11:26 by ADMIN
Steps to reproduce the bug

1) create a grid that uses “In Cell” editing and have a validation on a cell (in this example i will use a required field)
2) click in the required cell
3) click out of the required cell to cause the validation error to fire
4) click back into the cell which had the validation error
5) press escape 
6) click into a different cell and enter a value
7) click out of the cell 

This will cause the cell the be edited but it will not be marked as dirty!!!

The issue is that multiple submit handlers are getting assigned to the form I’ve updated the following to remove submit handlers after submit has been called.

I made a change to the telerik.grid.editing.min.js file to resolve the issue.  setting the submit handler to null after submitting the form seems to do the trick

_validateForm: function (n) {
            var o = this.form();
            if (o.length) {
                var p = o.validate();
                if (p) {
                    this.validate();
                    p.settings.submitHandler = function () {
                        n();
                        p.settings.submitHandler = a.noop
                    };
                    o.submit();

                    p.settings.submitHandler = null;
                }
            }
        },

Declined
Last Updated: 25 Apr 2016 15:41 by ADMIN
Created by: Emrah
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Hello,
I try datetimepickerfor control on a mvc project, I set min and max values for it, when I change time, it validates for min, max values and changes automatically but not for date, so I had to write script below. 
Regards.

function dateChange(){
        if (this.value() < this.min()) {
            this.value(this.min());
        }
        else if (this.value() > this.max()) {
            this.value(this.max());
        }
    }
Declined
Last Updated: 25 Apr 2016 09:03 by ADMIN
Created by: Surinder
Comments: 4
Category: Kendo UI for jQuery
Type: Feature Request
1
Dear All,  

There should be a provision to enter numeric equations like

=15.75.90*24/100

and on hitting enter it should calculate result and fill in text box being edited.

Also there should be one calculator attached to numeric text box, can be opened or closed using F4 and after calculating result should be copied to text box.

Thanks

Regards
Surinder
Declined
Last Updated: 06 Apr 2016 09:13 by ADMIN
Created by: Surinder
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
I am looking for a way to design a data entry form inside kendoui window. which has three divs
div 1 has toolbar
div 2 has data entry controls
div 3 has sttus bar

div 1 should be stuck to top of window
div 3 should be stuck to bottom of window
div 2 should have a scroll bar if its contents cant fit in its height

contents should not scroll at window level, but at div 2 level only.

Thanks
Declined
Last Updated: 06 Apr 2016 09:12 by ADMIN
Created by: Imported User
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
1
The disabled range sliders still have cursor:pointer. You need to add
.k-state-disabled .k-tick,
.k-state-disabled .k-slider-selection,
...
{
    cursor: default!important;
    outline: 0
}
Declined
Last Updated: 28 Mar 2016 16:35 by ADMIN
I take many times for one issue.How can i refresh ImageBrowser manually?i try this one already

var editor = $("#editor").data("kendoEditor");
editor.bind("execute", function(e) {
   if (e.name == "insertimage") {
       
// necessary because event is fired before window show

       setTimeout(function() {
           var imagebrowser = $("[data-role=imagebrowser]").data("kendoImageBrowser");
           imagebrowser.upload.bind("upload", function() {
               imagebrowser.dataSource.read();
           });
       });
   }
});
But Thumbnail Image never fires again so image never change.
Declined
Last Updated: 17 Mar 2016 12:54 by ADMIN
Created by: Milan
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
5
Please support Internet Explorer 8 when using Kendo-Angular by supporting Angular 1.2.* branch as well.
Declined
Last Updated: 11 Mar 2016 09:11 by ADMIN
Created by: Vennila
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Currently if I choose specific options in editor in iPhone 5 and 6 e.g. bold, italic and underline. It retains the style for first line only. As soon as I hit enter all the selected style is gone. If editor is retaining the style in multi lines in other browsers then it should also retain in iPhone as well
Declined
Last Updated: 07 Mar 2016 13:56 by ADMIN
Created by: Loga
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1