Hello,
I currently have a scheduler that contains three custom timeline views, each with a different number of days, major tick, and minor tick count. I want to dynamically change the tick values, but only for one view at a time. I am aware of the scheduler.setOptions method, however that will apply the update across all views. When I try scheduler.view().setOptions, the changes made will undo when I refresh the view. Is there any way to change the options for a custom view? Thanks!
I've created a grid with "save" and "create" buttons in the toolbar. Configured data source properly. Now when I hit "Add new record" I see empty row added to the top of the grid. That's fine, I can edit all cells, but one-by-one. When I want to fill out a cell to specify attribute value I have to click on the cell before to put it into edit mode! That's very inconvenient, it would be much easier if all of them were already in edit mode.
Is it possible to have all grid cells shown in edit mode when new record is added?
Hi
MVC 5.1 has a simple and elegant solution for Enum's and DropDownList
@Html.EnumDropDownListFor(model => model.MyProp )
This populates the list, it works with the [Range] DataAnnotation, and also works if the model value is NULL. More importantly it selects the item in the list based on the Model value out-of-the-box.
Trying to do this with Kendo is a lot more involved and messy right?
So can we please have a Kendo.EnumDropDownListFor please to match?
Thank you :-)
Hi
When I add lock to my first column, a horizontal scroll get added from the second column. that is expected behaviour.
Though when I remove some column from the Grid, the total width of Grid does not reduce according to remaining column, instead it remain static as before.
If someone want to replicate the issue they can use below example and following replication steps.
http://dojo.telerik.com/arEHa
1. make first column locked.
2. start removing column from last.
3. analyse the width of Grid whether reduced or not.
4.unlock first column.
5. repeat step 1-3 and see result.
can someone suggest a solution with both feature enabled, first column locked and total grid width should reduce with removal of column.
Thanks
How to show cursor:col-resize icon when mouse over on grid column border.
Condition is set grid transform scale below 1
Example:
transform: scale(.90);
Using above scenario, cursor wont display
I've been playing with overwriting the adomd command text and came across an odd bug with the pivotgrid/datasource.
I've made a dojo example here that reproduces the issue. Clicking the button triggers:
$("#pivotgrid").data("kendoPivotGrid").dataSource.read();If the rows are not expanded, the function call works fine. But after expanding the row data (All Geographies) to show Abingdon, Albany, etc..triggering the read function again causes a javascript exception in kendo.all.min.js (dataItem is undefined).
Is there a way to resolve this issue?
I have 1000+ data to show in a dropdown list on web page, but when I after bind data to this controll ,it will crush and waits a long time to show my result. how could I fix this issue.
var grdUP = $("#weblogGrid").data("kendoGrid");grdUP.dataSource.transport.options.read.url = url; // new url//Read data source to updategrdUP.dataSource.read();var grid = $("#weblogGrid").data("kendoGrid");grid.saveAsExcel();We have created a sample, which should support default column grouping, dynamic drag and drop column grouping with aggregate operations. The attached sample is not working with current code. It works fine after removing this part of code ",
group: {
field: "UnitsInStock",
dir: "asc"
}".
Let us know is it expected behaviour or not?
I apologize if this has been asked already, but I have looked all over and found nothing. I am looking to see if there is a way to use the category label as a display value in a chart tooltip template. I have tried using the category property, but that really only seems usable in the use of a pie chart. In my case I am using a column chart that is being plotted by date. So when I use category in my tooltip, I get something like this: Tue Mar 01 2016 00:00:00 GMT-0600 (Central Standard Time). I can't just apply a date format to the category, because the charting code we have is being used generically, so the category will not always be a date. I would prefer to be able to just use the label on the category (Mar '16). Is that possible? Or is there some other available property to get the formatted value that is used on the axis? Or some other solution?
Template code:
tooltip: {
visible: true,
template: "#= series.name # - #= category #: #= value #"
},
labels: {
template: "#= value #"
}
Current tooltip
Total Expenses by Period - Tue Mar 01 2016 00:00:00 GMT-0600 (Central Standard Time): $936,248.35
Desired tooltip
Total Expenses by Period - Mar '16: $936,248.35