Hi,
I have a grid where amongst other columns, I have two columns which are related - in the first column I select from a list of available options and based on the value selected here, I want to apply a filter to a foreign key column elsewhere in the grid.
So for example if I have a column for "Company ID" with values [1, 2, 3, 4,5] and an FK column "Category", the values bound to the "Category" column are ID/Text pairs for all possible categories, but I'd like to filter that down based on a 3rd "CompanyID" value.
It seems that no matter how I configure the FK column, the underlying data source only ever has the ID/Text values so any attempt at filtering it down based on the CompanyID column doesn't work. Even if my bound values/remote data source returns objects with the required fields for filtering, they get dropped when the FK dropdown list's data source is created.
Is something this even possible to achieve with the grid? If so any pointers would be much appreciated.

I have a grid that's filterable. Each column has a funnel in the header. I can filter by adding a filter value to column1 and Column2. Data is filtered correctly. However when I clear filter value on Column1 and click filter, column2's filter value is also cleared. If I clear the value from Column1 but use the filter button from column2, then column2's value is used to correctly filter the data.
Does the grid NOT check the presence of filter values on all columns before filtering data? Is this a bug?

Hello everybody,
im trying to achieve that the dropdown filter list in my grid takes the size from it's biggest option.
I found other explanations for different situations and none of those worked for me.
I have a MVC Grid with a ForeignKey Column, that is filtered with a dropdown of enum values.
x.ForeignKey(b => b.Status, Model.OrderGapStatus).Filterable(f => f.Cell(c => c.Template("statusFilter"))).Title(Localizer.Lang_Status).ClientTemplate("#: StatusName #");And a js handler trying to set the width to "auto". But it doesn't work :/
<script type="text/javascript">
function statusFilter(element) {
// what do i need to do here?
}
</script>Help would be really appreciated 😃
Have a good day & happy coding
Nils
Hi Team,
I have a Kendo MVC Grid. i need to apply responsive design to grid.
am trying to apply but not achieved. please resolve my issue.
here i want to show columns in all widths.
Please apply changes in my solution only. am deleted kendo scripts version 2020.3.1118 in attached rar file.
if you unable to rar my file then please provide me a sample example kendo grid mvc with more than 10 columns.

function LoadChat(chat) {
$.ajax({
url: "/.../Chat/LoadChatBox?studyID=" + @Model.Recipient.StudyID,
success: function (data) {
var chatHistory = JSON.parse(data);
if (chatHistory) {
$.each(chatHistory.messages, function (n, elem) {
chat.renderMessage(elem.message, elem.sender);
});
}
}
});
}

I have a ListView control, and I need to call a partial view to render part of the template contents. This can't be passed via the ListView data source, as its a more expensive query, and should only be called for the records shown on the current page.
I have tried the code below, but it only gets called once, passing in an empty parameter.
<script type="text/x-kendo-tmpl" id="template">
<div>
<p>#=Name# <span>@Html.Action("ReportTags", "Search", new { reportKey = "#=ReportKey#" })</span></p>
</div>
</script>I need the functionality offered by the LoadContentFrom method in the tabstrip, but as part of the template.
I tried looking at the databound event, but this only gets called once per page, not per record.
Thanks
NB: I have to say the change to the forums makes it harder to browse for solutions by control, which is something I found useful.

Hello,
my grid reload data after applying a custom filter so when i have 2000 lines to retrieved, the grid show it correctly but when i passed 9000 line in the result i have 500 error and the grid doesn't refresh. this my ajax call:
@(Html.Kendo().Grid<DigitConvForm.Web.Models.DossierViewModel>()
.Name("Dossiers")
.Columns(columns =>
{
columns.Bound(c => c.Id_Inscription );
columns.Bound("Nom").ClientTemplate("#=Civilite# #=Nom# #=Prenom#");
columns.Bound(c => c.Libelle );
columns.Bound(c => c.DateDebut ).Format("{0:dd/MM/yyyy}");
columns.Bound(c => c.DateFin ).Format("{0:dd/MM/yyyy}");
columns.Bound(c => c.CDV ).ClientTemplate("<span id = 'badge_#=CDV#' class='badgeTemplate'></span>").Width(80);
columns.Bound(c => c.LibelleEntreprise );
columns.Bound(c => c.Code_Financement );
columns.Bound(c => c.CodeDepartement );
columns.Bound(c => c.ContactEcole );
columns.Bound(c => c.Gestionnaire);
columns.Bound(c => c.GestDosAdmin );
columns.Bound(c => c.StatutDosAdmin );
})
.ToolBar(toolbar =>
{
toolbar.Excel();
toolbar.Pdf();
toolbar.Search();
}).Excel(excel => excel.AllPages(true))
.Height(700)
.Pageable(pageable => pageable
.Input(true)
.Numeric(false)
)
.Navigatable().Mobile()
.Sortable()
.Scrollable()
.Resizable(r => r.Columns(true))
.Reorderable(r => r.Columns(true))
//.Filterable()
.Events(e => e.DataBound("onDataBound"))
.Pageable(pageable => pageable
.Refresh(true)
.PageSizes(true)
.ButtonCount(5))
.DataSource(dataSource => dataSource
.Ajax()
.Batch(false)
.PageSize(500)
.AutoSync(false)
.ServerOperation(true)
.Events(events => events.Error("error_handler"))
.Model(model =>
{
model.Id(p => p.Id_Inscription);
model.Field(p => p.Civilite ).Editable(false);
model.Field(p => p.Nom ).Editable(false);
model.Field(p => p.Prenom ).Editable(false);
model.Field(p => p.Libelle ).Editable(false);
model.Field(p => p.DateDebut ).Editable(false);
model.Field(p => p.DateFin ).Editable(false);
model.Field(p => p.LibelleEntreprise).Editable(false);
model.Field(p => p.Code_Financement ).Editable(false);
model.Field(p => p.CodeDepartement ).Editable(false);
model.Field(p => p.ContactEcole ).Editable(false);
model.Field(p => p.GestDosAdmin ).Editable(false);
model.Field(p => p.StatutDosAdmin ).Editable(false);
model.Field(p => p.Gestionnaire ).Editable(false);
})
.Read("GetAllFolders", "RechercheDossiers")$.ajax({
url: '@Url.Action("GetFiltredFolders", "RechercheDossiers")',
type: "Post",
data: { nom, prenom, dateDebut: dateD, dateFin: dateF, sAnticipee, pFormations, financements, gestionnaires },
traditional: true,
dataType: 'json',
async: true,
success: function (result) {
searchResults = result;
},
error: function (xhr, ajaxOptions, thrownError) {
alert('failed')
},
timeout: 30000,
cache: false
}).done(function () {
var dataSource = new kendo.data.DataSource({ data: searchResults });
var grid = $('#Dossiers').data("kendoGrid");
dataSource.read().then(function () {
$('#Dossiers').data('kendoGrid').refresh();
});
var pageSi = grid.dataSource._pageSize
grid.setDataSource(dataSource);
grid.dataSource.query({ page: 1, pageSize: pageSi });
//grid.refresh();
});[HttpPost]
public async Task<JsonResult> GetFiltredFolders(DateTime? dateDebut, DateTime? dateFin,
bool sAnticipee, string nom, string prenom, string financements, string pFormations, string gestionnaires)
{
string departments = Session["department"].ToString();
List<Dossier> dossiers = await _conventionDeFormationService.LoadFoldersByAccess(departments, dateDebut, dateFin,
sAnticipee, nom, prenom, financements, pFormations, gestionnaires);
return Json(dossiers, JsonRequestBehavior.AllowGet);
}
Hi Team,
I am using the kendo grid of the UI for ASP.NET MVC, and the height of the grid gets shorter on initial render of the grid. Once I click on anyone of the columns of the grid, it gets to its actual height assigned in the grid.
Please find the attached screenshot and let me know if I am doing anything wrong.
As you can see, in the first screen shot, the grid is shorter, and in the second screenshot, the grid has its actual height.
Please get back to me team as soon as you can. I really appreciate your help.

How to define the paperSize in the onPDFExport function? Currently getting the error unknown paperSize. Variable width is the total width of all of the columns in the grid, and it is not undefined.
Current code:
function onPDFExport(e) {
var grid = $("#CustomerOrderYearlyAllGrid").data("kendoGrid");
var width = 0;
for (var i = 0; i < this.columns.length; i++) {
this.autoFitColumn(i);
width = width + this.columns[i].width;
}
debugger;
var CustomerID = $("#CustomerID").data('kendoDropDownList');
var selectedCustomerName = CustomerID.text();
grid.options.pdf.fileName = selectedCustomerName + " Summary (Yearly).pdf";
grid.options.pdf.paperSize = (width + "px","500px");
}

I'm using .paperSize("auto") for my Export to PDF, and I want using the .TemplateId("templateName") so that I could include a header when I export to PDF. Using paperSize("auto") will not apply the template. How do I use paperSize("auto") and also include a header? Any help with be appreciated
<script type="x/kendo-template" id="page-template">
<div class="page-template">
<div class="header">
#=getDllValueForPrint()#
</div>
<div class="footer">
@*<div style="float: right">Page #: pageNum # of #: totalPages #</div>*@
</div>
</div>
</script> .Pdf(pdf => pdf
.FileName("Customer Orders Summary (Yearly).pdf")
.AllPages()
.PaperSize("auto")
.Margin("2cm", "1cm", "1cm", "1cm")
.Landscape()
.TemplateId("page-template") function getDllValueForPrint() {
var CustomerID = $("#CustomerID").data('kendoDropDownList');
var selectedCustomerName = CustomerID.text();
return selectedCustomerName;
}