Telerik Forums
Kendo UI for jQuery Forum
1 answer
82 views
There appears to be a bug in the recent Kendo UI Web 2012.3.1114 release in regards to the Calendar control. When navigating the calendar using the arrows to go from month to month the calendar is highlighting a day in each month. When inspecting the highlighted cell, the attribute 'aria-selected' is on the TD element that is being highlighted. It appears to have the styles defined by the "k-state-focused" css rule.

Steps to recreate.
1) Go to http://demos.kendoui.com/web/calendar/index.html (today's date is 11/16/2012)
2) Click the left arrow to go to October
3) Notice that October 16 is highlighted gray
4) Click left again to go to September
5) Notice Sept 16 is also highlighted gray

Environment:
- Windows 7
- Firefox 16, IE 9, and Chrome
Georgi Krustev
Telerik team
 answered on 19 Nov 2012
3 answers
177 views
In the Nov 14 nightly build, there is a regression issue. The tabs now stretch to fit the width of the strip on ie10 and Chrome 23 on the pc. 
Kamen Bundev
Telerik team
 answered on 19 Nov 2012
3 answers
117 views
I don't know if you have even considered this but I have an idea how you could in fact speed up this.

These guys make a GANTT scheduler tied to ExtJS but as far as I know, it is an independent Vendor.
Any chance you could ask this company to spread out so to speak and do something for KendoUI? I think his components look stellar.

http://www.bryntum.com/?gclid=COL_m-y-07MCFfJ2cAodbWgABQ
Klas
Top achievements
Rank 1
 answered on 19 Nov 2012
1 answer
69 views
When forcing platform ios on android, all icons are squares using Q3 release. However, forcing platform blackberry on android works perfectly fine.
Kamen Bundev
Telerik team
 answered on 19 Nov 2012
2 answers
307 views
I have a requirement for BOTH axes to show a string label. My problem is that I need the value axis to show a string label the way the category axis does by default. The column chart below renders the tooltips correctly when I use the: template: "#= dataItem.ProductName #". If I try to use the dataItem property in the LABELS template section, it's not there. I realize that the value axis must be numeric. That is fine. What I need is to replace the y-axis numeric value label with it's non-numeric label contained in the model. There simply must be a way to intercept that label and convert it to a string.  For example.. template : #= (value==3) ? 'string' : 'string' # . Or maybe an event, even an internal event. Do I have to examine the chart AFTER it is rendered and find labels and then replace them with jQuery?

The model is
CategoryName(string) category axis
ProductName(string) // need THIS label
ProductId(int) //value axis

$("#Chart").kendoChart({
    theme: "default",
    title: {
        text: "Product Categories"
    },
    legend: {
        position: "bottom"
    },
    seriesDefaults: {
        type: "column"
    },
    series: [{
        name: "Product",
        field: "ProductId"
    }],
    valueAxis: {
        labels: {
            template: "#=value#" // I need to replace with a NAME
                 // template: "#= dataItem.ProductName #" // this does NOT work
        }
    },
    categoryAxis: {
       field: "CategoryName"
    },
    tooltip: {
       visible: true,
       template: "#= dataItem.ProductName #" // THIS works
    },
    ... omitted
Neil
Top achievements
Rank 1
 answered on 19 Nov 2012
0 answers
240 views
My code is given below
VIEW:-
@model IEnumerable<SampleKendo.Models.TestModel>
@using Kendo.Mvc.UI
@using Kendo.Mvc.UI.Fluent
@using SampleKendo.Models


@(Html.Kendo().Grid(Model)    
    .Name("Grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.Id).Groupable(false);
        columns.Bound(p => p.Name);
        columns.Bound(p => p.Age);
        
        
    })
   
    .Pageable()
   
    .Scrollable()
    .Filterable()
    .Sortable()


     .DataSource(dataSource => dataSource
            .Ajax()
           
              .ServerOperation(false)  
          
            
               .Read(read=>read.Action("GetDepartment","Test")))


        )

Controller:_
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Kendo.Mvc.Extensions;
using Kendo.Mvc.UI;
using SampleKendo.Models;


using System.Web.Mvc;




namespace SampleKendo.Controllers
{
    public class TestController : Controller
    {
        //
        // GET: /Test/


      
        public ActionResult Index()
        {
            return View(GetDepartmentData());


        }




        public ActionResult GetDepartment([DataSourceRequest] DataSourceRequest request)
        {
            return Json(GetDepartmentData().ToDataSourceResult(request), JsonRequestBehavior.AllowGet);
        }


       




        private static IEnumerable<TestModel> GetDepartmentData()
        {
            var db = new DBPULSEEntities();
            return db.DEPARTMENTs.Select(c =>
                                         new TestModel
                                             {
                                                 Id = c.Id,
                                                 Age = c.Age,
                                                 Name = c.Name,
                                                 Birthday = c.Birthday


                                             });
        }
    }
}

I have set the ServerOperation() to false..  but still its not working



When i try to sort, or filter the result is per given in the pic
Arathy
Top achievements
Rank 1
 asked on 19 Nov 2012
0 answers
218 views
Customers who are observing this bug can download the latest internal build to address this.

Since this is a regression, we are providing the patched javascript file that can be used in GPL projects (attached to this post).
Telerik Admin
Top achievements
Rank 1
Iron
 asked on 19 Nov 2012
1 answer
430 views
I am defining the code as below, the url fires but i dont get a message in the console for the success event? What did I do wrong?

var dataSource = new kendo.data.DataSource({
                           
                            transport: {
                                read:  {
                                    url: "cfcs/loadCSR.cfm",
                                    cache: false                                    
                                },
                               destroy:  {
                                    url: "cfcs/deleteCSR.cfm",
                                    cache: false,
                                    type: "POST",
                                    success: function(result){
                                        console.log("lol");
                                    }
                                }
                            },
                            batch: true,
                            pageSize: 30,
                            schema: {
                                data: "data",
                                model: {
                                    id: "BADGEID",
                                    fields: {
                                        BADGEID: {
                                            type: "number"
                                        },
                                        EMPLOYEENAME: {
                                            type: "string"
                                        },
                                        UNITID: {
                                            type: "number"
                                        },
                                        UNITNAME: {
                                            type: "string"
                                        }
                                    }
                                }
                            }
                         
                    });
Warren
Top achievements
Rank 2
 answered on 19 Nov 2012
3 answers
2.3K+ views
Here is an example of a JSON date passed to the client:

    "date":         {
        "date": 14,
        "day": 2,
        "hours": 0,
        "minutes": 0,
        "month": 7,
        "seconds": 0,
        "time": 1344920400000,
        "timezoneOffset": 300,
        "year": 112
    }

How can I display this date in a Kendo grid as MM/dd/yyyy? I have tried:
$("#resultsGrid").kendoGrid( {
  dataSource: {
            type: "json"
    },
     columns: [
            {
                field: "date",
                title: "Date",
                format: "{0:MM/dd/yyyy}"
}]});


However, the grid displays [object Object].

Basem
Top achievements
Rank 1
 answered on 19 Nov 2012
1 answer
267 views
I am utterly confused to how to change the background-color of the body of a tab, specifically on Android. I want to leave the appearance of the tabs untouched, however I simply want to change the background-color of the entire body of each tab.

Can't really believe I'm asking this as it's so simple, but I am confused to what element I need to reference and I can't find any docs.

Many thanks
Todd Anglin
Top achievements
Rank 2
 answered on 19 Nov 2012
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?