I have to upload the files and I have some restriction that can be evaluated on the server. For instance the total size of all the files uploaded have a maximum size.
The demo states this: "// Return an empty string to signify success". From this I took that if I return a string that is not empty it will not be success. But when I tested instead of getting the error event the upload widget shows success.
Please provide an example on how to signify errors and if possible to return for instance an object as error.
What I have returned is something like this Json(new { errors: [{ ErrorMessage: "1"}, {ErrorMessage: "2"}] })
Hello,
Does "UI for ASP.NET Core" components supports "ASP.Net Core 2.1 and Razor Pages"?
Regards
I have a grid with a custom command column for delete. I have also configured the Destroy method using additional parameters which is supported
.Destroy("DeleteAction", "MyController", new { extraId = Model.Id })
I should mention that the Create function is not defined since I am not going to use it.
When I press the button I was getting nothing. After attaching to the error event I got an exception with Not Found. After further investigation I saw that instead of calling Destroy method it was calling Create. I define also the Create and confirmed that the telerik grid on delete button was calling create method.
Since Destroy does not support the parameter routeValues why is it available?
I want to add a record in kendo grid .net core (with inline edit mode) after selected row in same group . but when I click on button "Add Record" as shown in image attached, its creating a new collapse expand group and adding a new row there.
As in Image1, I want to add record after selected row with ID 2 , but its creating a new collapse expand group and adding a row there as shown in Image2.
Please provide solution how can I add a row after selection in same group.
Hi, I'm looking for help disabling an entire rows edit abilities by using the value in one of the columns.
ex.
...
columns.Bound(p => p.releaseState).Title("Release State");
columns.Command(command => {command.Edit().Visible("isEditable(releaseState)");});
...
This does not work neither does isEditable(p.releaseState) or isEditable(Model.releaseState)...
Any help would be greatly appreciated.
I was trying to get DatePickerFor work on a Kendo Grid Popup editor with no luck. I've already spent countless hours first with the DropDownListFor (https://www.telerik.com/forums/dropdownlistfor-events-in-razor-pages) which still doesn't work and now with DatePickerFor. Any help is much appreciated.
I have the DatePickerFor in a Kendo Grid Popup Template.
Grid:
.DataSource(dataSource => dataSource
.Custom()
.Transport(t => {
t.Read(r => r.Action("Cases", "CaseList", new { handler = "GetCases" }).Type(HttpVerbs.Post).Data("sendAntiForgeryToken"));
t.Create(r => r.Action("Cases", "CaseList", new { handler = "AddCase" }).Type(HttpVerbs.Post).Data("sendAntiForgeryToken"));
})
Razor Page:
public JsonResult OnPostAddCase([DataSourceRequest] DataSourceRequest request, CaseModel newCase)
Popup Template:
@(Html.Kendo().DatePickerFor(model => model.LetterDate)
.HtmlAttributes(new { style = "width:150px; font-size:14px" })
)
Model:
[DataType(DataType.Date, ErrorMessage ="Letter Date is required")]
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}", ApplyFormatInEditMode = true)]
[Display(Name ="LetterDate")]
public DateTime LetterDate { get; set; }
FormData:
LetterDate: Tue Jul 31 2018 13:04:15 GMT-0400 (Eastern Daylight Time)
Error: The value 'Tue Jul 31 2018 13:04:15 GMT-0400 (Eastern Daylight Time)' is not valid for LetterDate.
I have tried several solutions like setting up the culture, changing the formats but nothing seems to work.
The only option that I'm left with is intercepting the date before submit. But before I do that I would like to know why it is so hard to get the basic functionality work with kendo controls. This is so frustrating.
I have an application that uses the SCSS telerik theme
/*Bootstrap v4 custom variables*/
@import
"lib_overwrite/bootstrap_variables_overwirte"
;
/*Kendo UI custom variables*/
@import
"lib_overwrite/sbkvariables"
;
/*Keno UI - Bootstrap v4 theme*/
@import
"../../../node_modules/@progress/kendo-theme-bootstrap/scss/all"
;
/*Original Bootstrap v4 reboot*/
@import
"../../../node_modules/bootstrap/scss/bootstrap-reboot"
;
/*Original Bootstrap v4*/
@import
"../../../node_modules/bootstrap/scss/bootstrap"
;
/*Custom sass*/
@import
"main"
;
but the resulting css does not contain the browser prefix styles. I have found this because on IE 11 the filter grid row contains the input fields but they do not have the same width as the column. But If I add the "-ms-flex 1 1 0px" that exist on the telerik site the input fields have the correct width.
How can the browser prefix be generated using SCSS for the telerik?
I'm trying to add Change Event for DropDownListFor in Razor Pages but facing an issue - "Cannot use lambda expression..."
@(Html.Kendo().DropDownListFor(model => model.CaseSourceCode)
.BindTo(ViewBag.LookupSourceTypes)
.Events(e => e.Change("OnChange")
)
If I don't add the Events line the DropDownListFor works just fine.