Telerik Forums
Kendo UI for jQuery Forum
3 answers
170 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
108 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
66 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
297 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
234 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
207 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
421 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
259 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
3 answers
598 views
I am implementing server side filtering and found the explanation of the filter data to expect from Kendo to be incomplete at best.  Depending on how many columns you sort on and in which order you do it, the filter parameters in the URL parameters vary considerably.  Noting that there's no direct way to translate them into maps and arrays, how exactly did you intend for us to parse them out?

If any of you have successfully implemented server side filtering, please respond with any info you could share about how you parsed out the filter parameters.
Jerry
Top achievements
Rank 1
 answered on 18 Nov 2012
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
Date/Time Pickers
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)
SPA
Filter
Drawing API
Drawer (Mobile)
Globalization
Gauges
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
OrgChart
TextBox
Effects
Accessibility
ScrollView
PivotGridV2
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Collapsible
Localization
MultiViewCalendar
Touch
Breadcrumb
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
Popover
DockManager
FloatingActionButton
TaskBoard
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?