Hi,
When I select any text and try to format, then the entire text is getting formatted.
However, in the tools when I change the shift settings, only the selected text is getting formatted as expected.
Attached are the screenshots for the working and non-working scenarios.
Could you please help me in this regard.
Thanks,
Pavan
I have two sparkline charts.
A is using dataSource, B is using data.
How do I set the line width of B? (line width in A work fine).
Sparkline A
$(".item-dev-chart", sparkline).kendoSparkline({ theme: "bootstrap", dataSource: itemDevDs, series: [{ type: "line", field: "p", width: 2 }], tooltip: { visible: false }});Sparkline B:
$t.kendoSparkline({ theme: "bootstrap", data:$t.data("source").split(','), type: "line", chartArea: { background: "#f5f5f5" }, tooltip: { visible: false }});Copying series options from A to B causes B to not show at all.
Hi
I have a bunch of colums with fixed width and the last column which has percentage as width (I want it to occupy all the remaining space in the grid).
If the window is resized the last item disappears and the scrollbar only appears after the item before it starts to be hidden.
How can I have the scrollbar appear for the percentage width table column or perhaps is there some other way to have the last column occupy the remaining space of the grid.
Thanks
Hi
For some reason scrollbar doesnt work property with virtual: true when a schema.data object is specified. This works fine if the data is flat.
http://jsfiddle.net/9dn1qsoz/

public class TestContract{ public int Id { get; set; } public string Name { get; set; } public string Description { get; set; }}
​public class TestController : ApiController{ private IEnumerable<TestContract> getTestData() { return (new TestContract[] { new TestContract{ Id = 1, Name = "Name 1", Description = "Description 1" }, new TestContract{ Id = 2, Name = "Name 2", Description = "Description 2" }, new TestContract{ Id = 3, Name = "Name 3", Description = "Description 3" }, new TestContract{ Id = 4, Name = "Name 4", Description = "Description 4" }, new TestContract{ Id = 5, Name = "Name 5", Description = "Description 5" } }).AsEnumerable(); }...var app = angular.module('app', ['kendo.directives']);app.filter("asDate", function () { return function (input) { return new Date(input); }});(function () { 'use strict'; angular .module('app') .service('TestService', ['$http', TestService]); function TestService($http) { this.getData = getData; function getData() { return $http.get(rootUrl + 'api/test'); } }})();(function () { 'use strict'; angular .module('app') .controller('TestController', ['$scope', 'TestService', '$http', TestController]); function TestController($scope, service, $http) { $scope.title = 'TestController'; $scope.testGridOptions = { columns: [ { field: "Id", title: "Column 1" }, { field: "Name", title: "Column 2" }, { field: "Description", title: "Column 2" } ], dataSource: { schema: { data: "d" }, transport: { read: function (e) { service.getData(). success(function (data, status, headers, config) { e.success(data) }). error(function (data, status, headers, config) { alert('something went wrong in test grid') console.log(status); }); } }, pageSize: 5 } }; }})();@{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Layout.cshtml";}<h2>Index</h2><div data-ng-controller="TestController"> <div>Controller: {{title}}</div> <div>Grid 2 Starts</div> <div data-kendo-grid="" data-k-options="testGridOptions"></div> <div>Grid 2 Ends</div></div>I have custom buttons inside a table in my row template grid.
on click of the button,i need to get the corresponding row values to perform some action.
How do we get the HTML control values of the row corresponding to the button click.