Hi, is there any way to filter rows in the spreadsheet by cell colour? Excel has this functionality - its called "Filter by Color or Filter Cell by color"
Thanks
Marc
Hi,
I'm trying to figure out how to display the category name for each data series on a column chart (I'm trying to get to something like the attached picture).
For now I'm just hard coding up an example in an html template. and so far I have the following:
<
kendo-chart
[categoryAxis]="{ categories: ['Assets', 'Liabilities']}">
<
kendo-chart-title
text
=
"Balance Sheet"
font
=
"22pt Segoe UI"
>
</
kendo-chart-title
>
<
kendo-chart-series-defaults
type
=
"column"
[labels]="{ visible: true }">
</
kendo-chart-series-defaults
>
<
kendo-chart-legend
[visible]="false"></
kendo-chart-legend
>
<
kendo-chart-series
>
<
kendo-chart-series-item
[stack]="true" [gap]="0.5" [data]="[60000, 0]" [name]="'Current Assets'">
</
kendo-chart-series-item
>
<
kendo-chart-series-item
[name]="'Capital & Reserves'" [data]="[0, 20000]">
</
kendo-chart-series-item
>
<
kendo-chart-series-item
[name]="'Current Liabilities'" [data]="[0, 40000]" >
</
kendo-chart-series-item
>
</
kendo-chart-series
>
</
kendo-chart
>
Looking at the docs (SeriesLabel) I think I can add more to the labels json object I'm configuring on line 4. But I'm struggling to get the syntax correct.
Does anyone have any suggestions?
Can you look this example http://dojo.telerik.com/ebAkU/5.
When i use "editRow" method first time - all work good. But the second call "editRow" kendo grid do nothing.
Did i do something wrong? Or it is a grid bug?
I have a method which takes some data from the datasource and via a RESTful webservice, changes it. I then need to update the datasource items.
I am using AngularJS so I have tried updating the $scope variable which is used inside the read method of my datasource ie (in the below example I changed $scope.myLocalResults
read: function (options) {
options.success($scope.myLocalResults);
}
And then called datasource.read() - however this turned out to be quite slow.
I have then tried just updating the changed records - ie my webservice returns an array of records (order guaranteed so I find the originally index of the record from $scope.myLocalResults, and then do:
var dataItem = dataSource.at(index);
dataSource.remove(dataItem);
dataSource.insert(index, myNewRecord);
However this is also quite slow - around 1 second per record, and I have around 2000 records.
Is there a quicker way to achieve what I want to do? I cannot simply using the .set method of the dataItem, as we have around 200 columns which could change.
Also - does .remove and .insert on the dataItem cause any datasource method to be fired, ie read or sync or something like that? I'm trying to work out why this is so slow, in comparison to other operations I am doing to the JS objects.
Thanks
Marc
Good afternoon,
I am trying to implement some custom behaviour in a Scheduler during a move operation.
I am binding to the moveEnd event, and the API is very helpfully providing the destination slot and the resources associated with that slot. So far, so good. But I also require the origin slot and the resources associated with it. The moveEnd event does not provide this information. The moveStart event does not provide any information about slots or resources at all. My grouping resource allows multiple values, so I can't determine by looking at the event itself which of its several resources corresponds to the slot that was clicked at the start of the drag. How can I determine this information?
Hi,
I have a aspgrid for which i am applying kendo grid ui. There are 2 columns in the grid, 1. BoundField 2. TemplateField in which i want to show KendoEditor control.
But KendoEditor UI is applied to only first row. I am expecting this will get applied to all the rows.
I have attached my aspx and aspx.cs code snapshots.
Dear Team ,
Here is a dojo where I have a simple scroll view working fine
Basic Scroll View Working Fine :http://dojo.telerik.com/OfUbI
When I use the scroll view along with a tabstrip ,the scroll does not work, it does not even show the pager
Scroll Not working with tabstrip : http://dojo.telerik.com/uDeZO/3
Another Issue I have is that when I have multiple images of different sizes in the scroll-view the scroll-view takes the height of the largest image.
Is there any way that this can be made dynamic such that the pager appears directly below the image with small size without leaving blank space in between ?
Or can the smaller images be automatically resized to fit the height of the largest image of the scroll view
Here is the sample for the same : Scroll with different size images
I have my views for the kendo scheduler set up like so:
views: [
{type: "day", startTime: new Date(1901, 1, 1, 0, 0, 0), endTime: new Date(1901, 1, 1, 23, 59, 59), workDayStart: new Date(workHoursStart), workDayEnd: new Date(workHoursEnd)},
{type: "week", startTime: new Date(1901, 1, 1, 0, 0, 0), endTime: new Date(1901, 1, 1, 23, 59, 59), workDayStart: new Date(workHoursStart), workDayEnd: new Date(workHoursEnd), selected: true},
{type: "workWeek", startTime: new Date(1901, 1, 1, 0, 0, 0), endTime: new Date(1901, 1, 1, 23, 59, 59), workDayStart: new Date(workHoursStart), workDayEnd: new Date(workHoursEnd)},{type: "month"},
{type: "agenda", eventTemplate: $('#agendaEventTemplate').html()},
{type: AgendaDayView, title: 'Day Agenda', eventTemplate: $('#agendaEventTemplate').html()},
{type: "timeline", columnWidth: 1, minorTickCount: 1, startTime: new Date(1901, 1, 1, 0, 0, 0), endTime: new Date(1901, 1, 1, 23, 59, 59), workDayStart: new Date(workHoursStart), workDayEnd: new Date(workHoursEnd), group: {orientation: 'vertical', resources: ['OwnerName']}},
{type: "timelineWeek", minorTickCount: 1, majorTick: 1440, columnWidth: 1, startTime: new Date(1901, 1, 1, 0, 0, 0), endTime: new Date(1901, 1, 1, 23, 59, 59), workDayStart: new Date(workHoursStart), workDayEnd: new Date(workHoursEnd), group: {orientation: 'vertical', resources: ['OwnerName']}},
{type: "timelineMonth", startTime: new Date(1901, 1, 1, 0, 0, 0), endTime: new Date(1901, 1, 1, 0, 0, 0), group: {orientation: 'vertical', resources: ['OwnerName']}}],
with no declaration of workDayStart and workDayEnd in the scheduler initialization outside of each view declaration, because timelineMonth and timelineWeek throw an error when switching to show work hours. Doing what I did above and getting rid of setting workDayStart and workDayEnd as an option in the scheduler fixed the timelineMonth error, but the timelineWeek error is still there... I am wondering if anyone knows how I show work hours in the timelineWeek view. Can timelineWeek view even handle show work hours? Or is it not supposed to? (like timelineMonth)
The error I get is: 'Uncaught TypeError: Cannot read property "end" of undefined' when switching to work hours in timelineWeek view.
I have a multiselect that list selection is too much value, so I use virtual to load them. I suppose that I load each 80 items, I select the first item to multiselect, then select the 85th item. After I reload the page contain multiselect, only the first item is selected. The multiselect value still has 2 items that I selected, but only 1 is shown to the textbox.
How to fix this issue? Thanks!