Hi,
We have problem with Kendo grid + angular directive + keyboard shortcut.
When we put a kendo grid inside any angular directive, the inline editable will require double click to edit. This makes keyboard shortcut, Enter, unable to edit. When use focus on an editable cell, and press enter or single click, the field will appear as editable input box, but not focused, so user must click one more time to start editing. Press enter again, will return to non-editable cell, so user cannot perform edit with keyboard shortcut.
Demo: http://plnkr.co/edit/E7nRyPhggEqw5RpzXSxW?p=preview
Hi, I have a grid data source paramter thats coming from the model, when the partialview containting the grid is first rendered the value is passed back correctly but then after that its not being sent back, ive even put a breakpoint on the grid to see what the accountid value was and it was correct, but on Read its being sent as 0 which is default value
@(Html.Kendo().Grid<LiteraSite.Models.AccountCamps>()
.Name("grdAccountCamps")
.Columns(col =>
{
col.Bound(p => p.Selected).HtmlAttributes(new { @style = "padding-left: 5px;" }).ClientTemplate("<input # if(Selected) {# checked='checked' # } # value='selected' type='checkbox' />");
col.Bound(p => p.CampCode).HtmlAttributes(new { @style = "padding-left: 8px;" });
col.Bound(p => p.CampName).Title("Account Users").HtmlAttributes(new { @style = "padding-left: 5px;" });
})
.Navigatable()
.Scrollable(src => src.Height(260))
.DataSource(dataSource => dataSource
.Ajax()
.Model(model => model.Id(p => p.CampID))
.Read(read => read.Action("GetCampsWithSelection", "Administration", new { @clientAccountID = (int) Model.FoundAccount.AccountID })
)
))
On this demo as binding to remote data, take these steps:
Both "7/7/1996" and using the calendar to select "07/07/1996", still the same empty result.
On the other hand, I like this grid because the coding is clean and easy to understand. This is a huge plus over other open-source grid as they are hard to understand.
Hi,
Is it possible bellows:
1) Display Appointment between few days
2015/07/01 01:00 ~ 2015/07/02 03:00
[ 7/1 ][ 7/2 ]
[ =========== ]
see MonthView.png
2) Hierarchical resource Timeline view
see MultipleResourceTimeline.png
Thanks,
I knew, there was an event "columnReorder", after order of column was changed.
But, I need another event "columnReordering", that is fired before order of column will be changed, and with these parameters: cancel (true/false), column (kendo.ui.gridcolumn), sender (kendo.ui.grid), newIndex (number), oldIndex (number). If cancel is "true", reordering will be rejected right now.
Do you have any suggestion?
Hi,
I am attempting to select all shapes in order to apply a new color to all of them.
I started off with the kendo geojson demo for the map where a color is applied to every country (shape) when created using the shapeCreated event.
shapeCreated= function(e){
var shape = e.shape;
var users = shape.dataItem.properties.users;
var scale = chroma.scale(["white", "green"]).domain([1, 1000]);
if (users) {
var color = scale(users).hex();
shape.options.fill.set("color", color);
}
}
but I don't find a way to now change this once the shape is created.How do I loop through the shapes and apply a new color?
Also, the normal charts have .redraw() and refresh() methods, the map doesn't seem to have something like this? How do I refresh the map when something fundamental changes?
Thanks in advance,
Arno
Hi team,
Validation is not firing when the Date picker value is null in the grid, so what is the format for the Date with Null.
Thanks
Rajesh
Hi there,
once again i have to build a very special chart,lets call this a sales chart, based on a daily base.
In the attachment you can see how far i came.
the code for that is
http://dojo.telerik.com/@mathias.koelbl@get-ag.com/OMuYI
now i have to mark special date regions with a comment,
in the coded example it's the variable data2
i tried
http://demos.telerik.com/kendo-ui/bar-charts/plotbands
but it seems they dont work horizontally
selection is not made for multiple sections
is there another solution to archieve my goal?
best regards
mathias