Hello,
How to expand all columns after databound pivot grid?
I need that when the pivot Grid finish to load, the user can the grid with all columns expand automatically.
Thanks.
Hi
We are programatically configuring an odata datasource. We setup filters, group and sort and columns.
The datasource appears to be issueing two reads during this process.
The code is something like:
ds.filter(filter);
ds.group(group);
ds.sort(sort);
At no point are we explicitly calling ds.read() but the above statements trigger 2 consecutive reads, the first of which is triggered on the ds.filter(filter) and serves no purpose at all.
We would like to prevent the reads until the datasource has been fully configured.
Is this possible to disable the first read and control reads explicitly?
Thanks,
Sune
Hi,
Is there any default function to mark an event as completed in Kendo Scheduler.
If not, Can you please help me with the process of marking an event as Read and changing the color of the event.
Thanks in Advance..
@(Html.Kendo().Grid(Model) .Name("grid") .Columns(columns => { foreach (System.Data.DataColumn column in Model.Columns) { columns.Bound(column.ColumnName); } }) .Filterable() .Sortable() .Groupable() .DataSource(datasource => datasource .Ajax() .Model(model => { foreach (System.Data.DataColumn column in Model.Columns) { model.Field(column.ColumnName, column.DataType); } }) .Read(read => read.Action("Read", "Home")) ))<script type="text/javascript"> $(function () { $(document).ready(function () { var grid = $("#grid").data("kendoGrid"); //grid.bind("dataBound", grid_dataBound); setInterval(function () { grid.dataSource.read(); }, 4000); }); });</script>
I have a grid that shows data from a view, which contains an outer join, showing quite a few Boolean fields, which can also be null.
The grid filter for these columns only shows true or false, so if a user is not aware of how null values work, they may accidentally filter out records they didn't want to.
How can I get the filter to show a null option as well?
Thanks
I need to implement a custom report engine where users are able to select different system model entities (tables) in a treeview or other ui compenent (list, dropdownbox etc.). Also, they may select and configure different filters according each entity field. They will work as input parameters for a custom report. The users may select different entities and merge their columns by providing the joined columns. The idea is provide a custom report engine similar to Google Fusion Tables or the report engine of Salesforce.
We are using Angular as main front-end framework and the kendo ui components (grid, buttons, etc).
There is any broader component or telerik tool to support such scenario or any available demo? The Product Reporting is suitable for dot net infrastructure and sql server databases. Our projects uses Rails and postgres, thus, at priori, we are not interested on this reporting product.
I have a kendo notification like so:
<span id="notification"></span>
var notificationWidget = $("#notification").kendoNotification({
autoHideAfter: 300000
}).data("kendoNotification");
I then display several notifications in quick succession like so:
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
The kendo widgets are stacked vertically; however, there is an increasing horizontal indentation. I want all the notifications displayed to be vertically-aligned and maintain their current vertical stacking. How can I achieve this?

Hello,
We have a tabstrip control that is already initialized and we are referencing that using : $("#tabstrip").data("kendoTabStrip"). We would like to perform multiple selects on different tabs one after the other:
Here is the Dojo for that.
http://dojo.telerik.com/iJOGe/24
If we set the animation to false, it works but since the tabstrip is already initialized we would like to perform a second select after the animation is completed or remove the animation from the tabstrip component completely. We do not intend to use a timeout. Is there a way we can achieve this?
