I am using the "row" mode for my grid filters (http://demos.telerik.com/kendo-ui/grid/filter-row). I have a column that is a boolean and it looks like Kendo places the label before the radio button. Here's an example of what I'm seeing: http://dojo.telerik.com/OJEWU
Is there a way to configure the radio buttons from being on the right side of the label to being on the left side?
Hello,
I would like to report a filtering issue or ask if it is a normal functionality and why it is.
Let's suppose we have a grid with 'persons' data and there is a column age. If we try to filter the grid by age (For instance there are check boxes with the different ages into the grid) and select age 28 and 30. Then all persons with age 28 and 30 will be shown. Now if we try to deselect ages 28 and 30 and click the 'Filter' button then nothing happens(all check boxes are now deselected), the filtered result is still out there. When we just click 'Clear' button then all data is shown again as expected in the previous step. This could be seen in the example here: http://demos.telerik.com/kendo-ui/grid/filter-multi-checkboxes with unit price
Thanks!

Sorry if this is a repeat. What is the best way to set the autocomplete datasource after the page loads in a document.ready function (not waiting for the user to click on the input)?
I'm using mvc/razor.
Thanks

Hi,
I am new to Telerik, and we are evaluating the Kendo UI. I was checking the date picker and time picker and I noticed that the user can enter any value in the text without any validation. Is there an option to retstrict invalid date for date picker and time for time picker?
Thank you in advance
Hi, we are developing a component where we use nested Kendo UI Windows. Attached picture shows what we need. Following is the functionality.
On clicking of "Button1" we need to create kendo windows (Modal1,Modal2 etc) within the div (TotalContainer). If the width exceeds div width scroll bar should appear. Modal windows should be draggable within TotalContainer. Similarly if we click on "Button2" we need to create nested windows(submodal1,submodal2 etc ) with in Modal1. If the width increases Modal1 width scroll bar should appear. And all the submodals should be draggable within Modal1 itself.
We have achieved the above functionality, but on dragging any SubModal entire Modal1 is being dragged. We are unable to drag SubModal1 alone within Modal1.
Attached is the code which we have developed.
Thanks in advance
Hello,
Is there any sort of callback that can be used with kendo.saveAs?
Specifically, we are using kendo.drawing.exportPDF and then calling kendo.saveAs, and would like to know when saveAs completes. When kendo.saveAs uses a proxyURL, the user is often waiting on the file to come back from the server and we would like some way to inform the user of the progress or completion.
If there isn't a callback, is there a recommended way of approaching this?
Thanks for you help,
Jeff
2nd Grid is not refreshing.
Here is part of my code:
1st grid:
@(Html.Kendo().Grid<OpenInvoicesInfo>()
.Name("OpenInvoiceGrid")
.Events(e => e.DataBound("LineItems_Databound"))
.ColumnMenu(i => i.Columns(false))
.Columns(columns =>
{
columns.Bound(p => p.INVOICE).ClientTemplate("<input type='checkbox' value='#= INVOICE #' class='testclass' />").Width(4);
columns.Bound(i => i.INVOICE).Title("Invoice").Width(15);
columns.Bound(i => i.ORDER_NBR).Title("Order").Width(10);
...
.Scrollable()
.ToolBar(i => { i.Custom().Text("Get All Invoices Comments").Url("javascript:GetAllInvoicesComments();"); })
.Sortable()
.Filterable()
.DataSource(dataSource => dataSource
.Ajax().UseJniErrorHandler()
.PageSize(8)
.Read(read => read.Action("GetOpenInvoices", "Maint", new { cust = Request.QueryString["cust"] }))
)
2nd grid:
@(Html.Kendo().Grid<CustomerComments>()
.Name("CustomerCommentsGrid")
.AutoBind(false)
.Columns(columns =>
{
columns.Bound(i => i.Invoice).Title("Invoice").Width(15);
columns.Bound(i => i.Comment).Title("Comment").Width(40);
}).Pageable(pageable => pageable
.Refresh(true)
)
.Scrollable()
.Sortable()
.Filterable()
.DataSource(dataSource => dataSource
.Ajax().UseJniErrorHandler()
.PageSize(10)
//.Read(read => read.Action("GetCustomerComments", "Maint", new { invoices = "fail" }))
)
)
<script type="text/javascript">
function GetAllInvoicesComments() {
var result = [];
var items = $("#OpenInvoiceGrid").find(".testclass").filter(":checked");
items.each(function () {
result.push({
Value: $(this).val(),
Checked: true
});
});
var invoicesList = "'";
for (var i = 0; i < result.length; i++) {
invoicesList = invoicesList + result[i].Value.trim() + '\',\'';
}
invoicesList = invoicesList.substring(0, invoicesList.length - 2);
$.ajax({
url: webManager.resolveUrl("~/maint/GetCustomerComments"),
method: "POST",
data: { invoices: invoicesList },
success: function () {
var grid = $('#CustomerCommentsGrid').data('kendoGrid');
grid.dataSource.read();
grid.refresh();
alert('success');
},
error: function () {
alert('an error occurred');
}
});
}
Any help will be appreciated. Waiting for any replies.
Thank you.
Hi.
I have a Grid with a custom command button and when I click it, I want to open a context menu. I created this (http://dojo.telerik.com/@kristjk/UNOwE) which has a Grid, similar to mine, and a custom command button as the last cell in the row.
How would I go about showing a context menu when I click it and not show it on right-click ?
Best regards,
Kalli
I've got a project that's been in development since late last year, with many grids in it, all of which have resizable columns (resizable: true). I dropped in the latest Kendo release that was made available this past week, and now (with no other changes made to the project) none of the grids' columns in my project are resizable. There's nothing in the release notes about this. What's going on with column resizing?
