Completed
Last Updated: 13 Jun 2013 20:58 by ADMIN
Richard
Created on: 08 Apr 2013 09:39
Category: Kendo UI for jQuery
Type: Feature Request
1
Fix default Data Comparer, asc: is wrong when nulls and negatives are present
Suggested fix

                if (a != null && b !== null) {
                    return a > b ? 1 : (a < b ? -1 : 0);
                }

                if (a == null && b == null) {
                    return 0;
                }

                if (b == null) {
                    return 1;
                }

                return -1;
1 comment
ADMIN
Brandon
Posted on: 13 Jun 2013 20:58
fixed