Hello,
I need to control my sortable list with the keyboard. As far as I know there is no such function implemented in the current sortable widget, right? I just tried the following to extend it by myself, but there is a problem:
Could you please help me with a working solution?
Hello,
the accessibility is in our projects an importnant point. I need to use each feature with keyboard control. For the spreadsheet I found the following documentation for keyboard access.
http://docs.telerik.com/kendo-ui/controls/data-management/spreadsheet/end-user/list-of-shortcuts
The main problem is, that when I am with the focus in the toolbar, I cant access the back/forward buttons or tabs above. And when I am tabbing into the first cell, I am caught in the table. When I reach the last cell and press tab again, it pushes me back to the first cell. How is it possible to lose the focus of the spreadsheet to continue to the other focusable items of the application. Is this a bug or am I missing a shortcut here?Hello,
I just used the TreeView widget and inserted items with the API method 'insertAfter' and 'insertBefore'. Unfortunately the typescript definition of these methods says, it returns void, but actually it returns the new inserted item (which I need at this point). I updated my kendo.all.d.ts file now, but if I will update kendo in the future, it would overwrite these lines. It would be great if you could fix this for the next release.
insertAfter(nodeData: any, referenceNode: JQuery): void;
insertBefore(nodeData: any, referenceNode: JQuery): void;
// to
insertAfter(nodeData: any, referenceNode: JQuery): JQuery;
insertBefore(nodeData: any, referenceNode: JQuery): JQuery;
When adding the Destroy command to a column, the .Destroy action does not hit the controller action method.
You can reproduce the bug with your DVDGo sample application by making it InCell editing, .Batch(true), .ServerOperation(false).
Hello,
to localize my spreadsheet, I included the "kendo.messages.de-DE.js" into my document. Because it is not translated completely, I extended my version with the keys from "kendo.messages.en-US.js".
I.e. when I hover over the "freeze panes" button, I get my translated title, but the submenu still shows me the english text. Its the same problem with the "Merge cells" button.
kendo.spreadsheet && kendo.spreadsheet.messages.toolbar && (kendo.spreadsheet.messages.toolbar = a.extend(!0, kendo.spreadsheet.messages.toolbar, {
...
freeze:
"Fenster fixieren"
,
freezeButtons: {
freezePanes:
"Fenster fixieren"
,
freezeRows:
"Zeile fixieren"
,
freezeColumns:
"Spalte fixieren"
,
unfreeze:
"Fixierung aufheben"
},
...
Hello,
in your example http://demos.telerik.com/aspnet-core/spreadsheet/index if you have a selection and start to drag (copy) the cells with the right bottom corner point, there appears a cut-off box at the top left corner of the table. This seems to be a style issue, right?
On my developer machine i have polish language system, but i need to develop all pages in english. I am working with Sample Telerik C# ASP.NET Core MVC Application.
My Razor code is currently:
<
p
>CurrentCulture: @Html.Raw(System.Globalization.CultureInfo.CurrentCulture.ToString())</
p
>
<
p
>CurrentUICulture: @Html.Raw(System.Globalization.CultureInfo.CurrentUICulture.ToString())</
p
>
@(Html.Kendo().Grid<
TelerikAspNetCoreApp2.Models.OrderViewModel
>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.OrderID).Filterable(false);
...
})
.Groupable()
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(20)
.Read(read => read.Action("Orders_Read", "Grid"))
)
)
HTML result is:
<
p
>CurrentCulture: en-US</
p
>
<
p
>CurrentUICulture: en-US</
p
>
<
div
id
=
"grid"
name
=
"grid"
></
div
><
script
>kendo.syncReady(function(){jQuery("#grid").kendoGrid({"groupable":{"enabled":true,"messages":{
"empty":"Przeciągnij nagłówek kolumny i upuść go tutaj aby pogrupować według tej kolumny"}},"columns":[{"title":"Order ID","field":"OrderID","filterable":false,"encoded":true},{"title":"Freight","field":"Freight","filterable":{"messages":{"info":"Pokaż wiersze o wartościach które","isTrue":"prawda","isFalse":"fałsz","filter":"Filtr","clear":"Wyczyść filtr","and":"Oraz","or":"lub","selectValue":"-Wybierz wartość-","value":"Wartość","cancel":"Anuluj","selectedItemsFormat":"{0} selected items"} ....
HTML Rendered code contains valid Culture Info=en-US, but Kendo Grid messages are in polish language. How to force Kendo to use English language? Is it also possible to disable this messages? I would like to have short javascript as it is in pure Kendo JS.
On the demo page for Server filtering in ASP.NET Core AutoComplete the DataSource property is setup to read products using the GetProducts action of the Home controller:
read.Action(
"GetProducts"
,
"Home"
);
Anyway you could publish the contents of the GetProducts action?
Hello,
why does the following Kendo Menu in ClientTemplate not working?
the menu doesn't open on hover nor on click?
@(Html.GpdbKendoGridEdit<SELECT_Standort>(
"Standort"
,
"Standort_ID"
)
.Columns(columns =>
{
columns.Bound(c => c.Standort_ID).MinScreenWidth(768).Filterable(
false
).Sortable(
false
).IncludeInMenu(
false
).Width(60);
columns.Bound(c => c.Standort_ID).Title(
" "
)
.ClientTemplate(
Html.Kendo().Menu()
.Name(
"menu_#=Standort_ID#"
)
.OpenOnClick(
true
)
.Items(its =>
{
its.Add()
//.SpriteCssClasses("fa fa-tasks")
.Text(
""
).Items(nested =>
{
nested.Add().Text(
"test1"
);
nested.Add().Text(
"test2"
);
nested.Add().Text(
"test3"
);
nested.Add().Text(
"test4"
);
});
})
.ToClientTemplate().ToString()
)
.Filterable(
false
).Sortable(
false
).IncludeInMenu(
false
).Width(80);
columns.Bound(c => c.Strasse).ClientTemplate(
"#=getRowFormat(Strasse, gelöscht, true)##=(Art == true) ? ' <span class=\"label label-success pull-right\">ZS</span>' : '' ##=(Nichtbetriebe > 0) ? ' <span class=\"label label-danger pull-right\">R</span>' : '' #</br><small>#=getRowFormat(Postleitzahl.concat(' ', Ort), gelöscht, false)#</small>"
);
columns.Bound(c => c.Betriebsteil).MinScreenWidth(768).ClientTemplate(
"#=getRowFormat(Betriebsteil, gelöscht, false)#"
);
columns.Bound(c => c.gelöscht).MinScreenWidth(768).Format(
"{0:dd.MM.yyyy}"
).Width(110).ClientTemplate(
"#=getRowFormat(kendo.toString(gelöscht,'dd.MM.yyyy'), gelöscht)#"
);
})
.Editable(e => e.TemplateName(
"~/Areas/Mitglied/Views/Standorte/_frmStandortEdit.cshtml"
)
.Mode(GridEditMode.PopUp).Window(w => w.Title(
"Standort"
).Animation(animation => animation
.Open(open => open.SlideIn(SlideDirection.Left).Duration(500))
.Close(close => close.SlideIn(SlideDirection.Left).Duration(500).Reverse(
true
))
)
))
.DataSource(dataSource => dataSource
.Ajax()
.Model(model => model.Id(p => p.Standort_ID))
.Read(read => read.Action(
"Standorte_Read"
,
"Standorte"
))
.Update(read => read.Action(
"Standorte_Update"
,
"Standorte"
))
.Destroy(destroy => destroy.Action(
"Standorte_Destroy"
,
"Standorte"
))
)
.AutoBind(
false
)
.ClientDetailTemplateId(
"template"
)
)