This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,14 @@
@using Kreta.Framework;
@using Kreta.Web.Areas.Adminisztracio.Models;
@using Kreta.Web.Classes
@model ProfilModel
@(Html.Kendo().Upload()
.Name("files").Messages(m => m.Select(StringResourcesUtil.GetString(5548)/*Fájl kiválasztása...*/).StatusFailed(StringResourcesUtil.GetString(5549)/*Fájl feltöltése nem sikerült! Kérjük, próbálja újra!*/).HeaderStatusUploaded(StringResourcesUtil.GetString(5550)/*Fájl feltöltése sikeres!*/).HeaderStatusUploading(StringResourcesUtil.GetString(5551)/*Feltöltés...*/))
.HtmlAttributes(new { accept = "image/*" })
.Async(x => x
.SaveUrl(Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ProfilApi", action = "SaveProfilePicture" }))
.AutoUpload(true)
)
)