Hi,
Could you please help in solving this issue.I have 4 parameters:
-StartDate is a custom datetime picker param
-EndDate is a custom datetime picker param
-Campus is a builtin param bound to an sql datasource with both value and display text.
-Vehicle Numbers is is a builtin param bound to an sql datasource with both value and display text and mutilvalue enabled.This param is cascading from Campus param,so when picking a campus the vehicle numbers gets filtered
The problem I am facing is that when I pick a campus, the vehicle numbers are filtered but the start and end date values are lost.I feel the whole parameter area in being refreshed so the values entered are not restored.
.ParameterEditors(pe => pe.DateTimeEditor("createDateTimeEditor"))
function createDateTimeEditor(placeholder, options) { var dateTimePickerElement = $("<input type='text' style='width: 100%;' />"); dateTimePickerElement.appendTo(placeholder); var parameter, valueChangedCallback = options.parameterChanged, dateTimePicker; function onChange() { var val = dateTimePicker.value(); valueChangedCallback(parameter, val); } return { beginEdit: function (param) { parameter = param; $(dateTimePickerElement).kendoDateTimePicker({ change: onChange }); dateTimePicker = $(dateTimePickerElement).data("kendoDateTimePicker"); } };Environment:
-ASP.NET MVC 5
.-NET 4.5
-Latest Reporting package
Thanks in advance
Madani