I'm using the scheduler component to display events for a day. These events occur one after another and can take different lengths of time but none can occur at the same time.
On a widescreen, the scheduler displays as expected with each event taking up the full width of the scheduler (NormalOperation.png). However, on a screen with a lower resolution or one with the browser zoom higher or lower than 100%, the events do not take up the entire width but appear as if they happen at the same time (DisplayIssue.png).
I have tried removing the custom style sheets we have in case there are any conflicting styles but this doesn't seem to make a difference.
Changing the start time of the events to 1 second later did seem to fix the issue but only when zoomed out in the browser.
Any help would be appreciated,
Ben
Hello Dear,
I have a problem when I use DropDownList in IPAD 13.0 Safari browser - Request Desktop Sites is on
<device>
IPAD IOS version - 13.5
<kendoUI Version>
v2013.2.918
<Source>
$(tagName).kendoDropDownList({
dataTextField: textField,
dataValueField: dataValueFieldName,
dataSource: datasources,
autoBind: autoBind,
select : func
});
<descreption>
when the kendoDropDownList is selected by touch, the binded function will never be fired
<others>
this problem will not happen in IPAD 13.0 Safari browser - Request Mobile Sites is on
this problem will not happen in IPAD 12 Safari browser
this problem will not happen in desktop browser such as Chrome, IE11
Based on the old Kendo UI version used and the code modifications + the changes introduced in iOS 13 the issue might be a quite complex one,
I will be very very grateful if I can get some hints or advices about how to resolve this issue.
or would someone tell me the difference in dropdownlist when it worked on Safari Request Mobile Sites Mode and Request Desktop Sites Mode
Regards
I'm trying to format a numeric text box item with the following:
attributes: {format: "#", decimal: 0}
But it has no efect
Could you give an example of how to achieve the above
Thanks
@(Html.Kendo().Grid<
Dto.ReportTimeStatDto
>()
.Name("ReportGrid")
.Columns(columns =>
{
columns.Bound(c => c.BusinessProcess).Width(100);
columns.Bound(c => c.WorkName)).Width(150);
columns.Bound(c => c.CreationDate).Width(130);
columns.Bound(c => c.TimeLimitDate).Width(130);
columns.Bound(c => c.FinishDate).Width(130);
})
.AutoBind(false)
.Scrollable()
.Resizable(r => r.Columns(true))
.Groupable()
.Sortable()
.Filterable( )
.Pageable(pageable => pageable
.Refresh(true)
.PageSizes(true)
.ButtonCount(5))
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Action("Read", "ReportTimeStat"))
.Model(model => model.Id(m => m.Id))
)
)
<
button
id
=
"statistics"
type
=
"button"
>Statistics</
button
>
$(
"#ReportGrid"
).data(
"kendoGrid"
).dataSource.filter()
Latest 2019 R3 release,
kendo for dotnet core,
pdf.js same version as from pdf vewier kendo demo cdn,
only started happening in R3, R1,R2 weren't effected.
Please see attached.
I'm incorporating Kendo ui widgets into an existing application. Unfortunately, the Kendo theme css is overriding other css styles for non kendo widgets.
Is there a way to prevent kendo theme css from doing this?
Apologies if this has been asked before...
I have a grid where we display a matrix with checkboxes that users can click to check/uncheck items. As long as there aren't ~ > 1000 rows and columns everything is fine. I turned on virtual scrolling like this:
scrollable: { virtual: true }
and like this:
scrollable: { virtual: "rows, columns" }
neither seems to do much when you have 2500 columns and 3000 rows.
Is this even doable? Is there an example of this somewhere I could see?
Matt
Hello. I have a very weird issue with Kendo grid. After creating a new record the grid seems to firing a destroy event for some random records. it calls DELETE action on the server that modifies some rows in DB:(sets IsActive field to false, updates ModifyDate and some more rows). I am certain that the delete action is called because of these rows are updated as it is configured in the action. the rows that are being deleted (deactivated) are completely unrelated. has anyone had the similar issue or any ideas how to fix this?
I have attached couple photos. one shows the destroy event configuration, and another one shows database rows, the top ones are deactivated after create event of the bottom row. about 4 to 6 rows are deleted every time.
please let me know if you have some ideas. Thank you in advance
$("#scheduler").data("kendoScheduler").destroy();