Telerik Forums
Kendo UI for jQuery Forum
3 answers
115 views
1. How to add a customized component to the header column, such as a check box clicked to make all the check boxes in cells checked / unchecked. 

2. Is Kendo grid support the frozen feature? For example, if we have 20 columns, is it possible to make first 3 columns frozen and the other columns with a scroll bar? 

3. How to apply the permission on grid?  If we have check box in each row, is it possible to make some disabled or read only if end user has no permission?

4. Can you provide us the source code of Kendo UI, if we need customized something by ourselves? 

Thank you so much.
Iliana Dyankova
Telerik team
 answered on 03 Apr 2013
1 answer
292 views
Hello,

Is there a way to capture a change event from a mobile input field?  I'm trying to recalculate values in a mobile view based on user input, but since the mobile input control is not the same as the web one, it doesn't work using the "data-change" attribute.

Thanks,
Hans
Hans
Top achievements
Rank 1
 answered on 03 Apr 2013
1 answer
257 views
Hello,

I have a working example that works locally, but when I deploy it up to JSFiddle, this doesn't work correctly.  I was curious if there is a specific way I have to set this up?  There is some JS initialization that happens on window.onload (setup by JSFiddle) that I thought might be throwing off Kendo UI, because none of the data-binding is working, when it did before.

Here is the fiddle: http://jsfiddle.net/bmains/7pata/

Thanks.
Alexander Valchev
Telerik team
 answered on 03 Apr 2013
1 answer
284 views
I have a series of kendo windows and some may contain iframe tags within their contents. When a user drags a window, dragging stops while the mouse is over the iframe. There is a jquery plugin that fixes this issue when using jquery drag, is there something similar for Kendo or could I use the same plugin? The plugin is posted below:

$.ui.plugin.add("resizable", "iframeFix",
    start: function() {
        var o = $(this).data('draggable').options;
            $(o.iframeFix === true ? "iframe" : o.iframeFix).each(function() {
            $('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>')
             .css({
                width: this.offsetWidth+"px", height: this.offsetHeight+"px",
                position: "absolute", opacity: "0.001", zIndex: 1000
             })
             .css($(this).offset())
             .appendTo("body");
          });
        },
        stop: function() {
            $("div.ui-draggable-iframeFix").each(function() {
                this.parentNode.removeChild(this);
             }); //Remove frame helpers
        }
    });
Daniel
Telerik team
 answered on 03 Apr 2013
1 answer
52 views
For some reason I cant add a post in http://www.kendoui.com/forums/dataviz/chart/chart-with-navigator.aspx
The Q1 release did not contain this requested feature.
Is there any date for an internal build with this capbability ?
Thx
Sagi
Iliana Dyankova
Telerik team
 answered on 03 Apr 2013
1 answer
340 views
Hello Kendo,

I just used the following test code with kendo DropDownList mvvm as to your demo:

    <script>
    $(function() {
          var vm = kendo.observable({
            dropdownlistSource: [
              { text: 'True', value: true },
              { text: 'False', value: false }
            ],
            selected: null
          });

          vm.selected = vm.dropdownlistSource[1];
      kendo.bind($('body'), vm);
    });
    </script>
</head>
<body>
      <input data-role="dropdownlist" data-text-field="text" data-value-field="value" data-bind="source: dropdownlistSource, value: selected" />
</body>

However, the widget just display the first item every time, not the value demonstrated in data-bind attr. When i switch the value field of data source to interger 1 and 0, that works perfect.

I think this would be a bug in your control, and please pay attention to it when u r free.

Wenhao
Holger
Top achievements
Rank 1
 answered on 03 Apr 2013
1 answer
703 views
I'm having some timing issues and was wondering if there is a way for saveChanges to have a callback when it's save is complete?
Dimiter Madjarov
Telerik team
 answered on 03 Apr 2013
1 answer
74 views
A project we are just starting requires us to display graphs on both desktop and mobile versions of the app.

The browsers available to us within Visual Studio 2012 and Webmatrix are as follows:
Desktop: Firefox, Google Chrome, Internet Explorer, Opera Internet Browser, Safari
Mobile: Windows Phone 7, Opera Mobile Emulator, Electric Plum iPhone/iPad simulator

The chart appears on all browser types except for the Electric Plum iPhone/iPad emulator. The main mobile focus for us are the iOS devices so we really need to get it working.

I created a test application (as a 'Kendo UI  for MVC Web Application') and the only files I have altered are those in the attached zip file. I wonder if you could let us know what we need to do to get the graph to appear please?
Iliana Dyankova
Telerik team
 answered on 03 Apr 2013
5 answers
122 views
Your documentation implies that this should work, but it doesn't. How do I use a local shared data source that allows multiple charts and grids to sort the same data?

If I get the data source from an XML file, it works, but not from a local JS array.



var salesData = [{
    employee: "Joe Smith",
    sales: 2000
}, {
    employee: "Jane Smith",
    sales: 2250
}, {
    employee: "Will Roberts",
    sales: 1550
}];


var localDataSource = new kendo.data.DataSource({ data: salesData });


$(document).ready(function () {
    $("#test").kendoChart({
        title: {
            text: "Employee Sales"
        },
        dataSource: {
            data: localDataSource
        },
        series: [{
            type: "line",
            field: "sales",
            name: "Sales in Units"
        }],
        categoryAxis: {
            field: "employee"
        }
    });
});

Alexander Valchev
Telerik team
 answered on 03 Apr 2013
1 answer
166 views
I have created a simple 1 table service using Openaccess Domain Model and oData Data Service. When I try to call the service using the Kendo Grid, I can see the json data (using Fiddler) being returned/parsed but it is never displayed in the grid.

When I use IE9 to run my test, i get the following error:
Error: Unable to get value of the property '__count': object is null or undefined

I don't get that error in Chrome or Firefox but the data still does not display.

I used the example at http://demos.kendoui.com/web/grid/remote-data.html and just changed the service url and data fields as needed.

My service is a oData v3 and I have included the JSONSupportBehavior attribute in my class. You can use this link http://www.thinkkentucky.com/fidatao/ftentitiesmodelservice.svc/FUNDTYPEs?$format=json to see a text file of the data returned from my service.

I would appreciate any help to understand what is causing this problem and how to fix it.

Thanks
Ben


Daniel
Telerik team
 answered on 03 Apr 2013
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
Drag and Drop
Map
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
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
Licensing
ScrollView
Switch
TextArea
BulletChart
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
TimePicker
FloatingActionButton
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
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?