Hello,
how to use CSS to set the height of the Upload to fill the parent (see picture)
Robert
Hi all,
I'm trying to understand if it is possible to create a Spreadsheet with the RadSpreadProcessing library and work with it in a web environment. I saw from older posts that there was a Telerik.Web.Spreadsheet library that supported this integration, but it seems that it is not directly supported now with .NET 6.
I need to show a spreadsheet to the user on a browser, with support for formulas, macros, excel graphs, workbook/worksheet protection, autofit of columns, basically everything that can be done with excel. From the documentation it seems that many of the features that I need are not supported by Telerik UI Web, but are supported by the RadSpreadProcessing. Is it correct? Is there a way to implement all this with the Web UI libraries?
Thank you everyone in advance!
Tommaso
We have a Asp.net core 6 application and we are trying to use the kendo-scheduler to display data in a month view.
I am following the "Basic Usage" example.
My calendar renders but there are no events displaying. And there are no errors.
My controller is getting called and it is passing back a list of events based on my model below.
I'm also trying to use an event-template. But this doesn't displaying anything in the calendar.
My ultimate goal would be to display a kendo-chart in each day of a month using the template.
But for now I'd like to get something like the below to work.
//This is my model:
public class TaskViewModel : ISchedulerEvent
{
public int TaskID { get; set; }
public string Title { get; set; }
public string Description { get; set; }
private DateTime start;
private DateTime end;
public bool IsAllDay { get; set; }
public int? OwnerID { get; set; }
}
//My controller:
public virtual JsonResult Basic_Usage_Read([DataSourceRequest] DataSourceRequest request)
{
List<TaskViewModel> list = GetItems();
return Json(list);
}
//Here is my Index.cshtml:
@{
var resources = new[]
{
new { Text = "Alex", Value = 1, Color = "#f8a398" } ,
new { Text = "Bob", Value = 2, Color = "#51a0ed" } ,
new { Text = "Charlie", Value = 3, Color = "#56ca85" }
};
string defaultTitle = "No Title";
}
<script id="event-template" type="text/x-kendo-template">
<div class="template-container">
<h3>Hello World #: Title # </h3>
</div>
</script>
<kendo-scheduler name="scheduler"
date="new DateTime(2022, 10, 01)"
start-time="new DateTime(2022, 10, 01, 7, 00, 00)"
height="600"
event-template-id="event-template"
timezone="Etc/UTC">
<views>
<view type="month"></view>
</views>
<resources>
<resource field="OwnerID" title="Owner" datatextfield="Text" datavaluefield="Value" datacolorfield="Color" bind-to="@resources">
</resource>
</resources>
<schema data="Data" total="Total" errors="Errors">
<scheduler-model id="TaskID">
<fields>
<field name="TaskID" type="number"></field>
<field name="title" from="Title" type="string" default-value="@defaultTitle"></field>
<field name="start" from="Start" type="date"></field>
<field name="end" from="End" type="date"></field>
<field name="description" from="Description" type="string"></field>
<field name="OwnerID" type="number" default-value="1"></field>
<field name="isAllDay" from="IsAllDay" type="boolean"></field>
</fields>
</scheduler-model>
</schema>
</scheduler-datasource>
</kendo-scheduler>
Hi,
I want to close the dropdown list as soon as the event (it creates the confirmation pop-up) is triggered from selecting an option from the list.
How this can be achieved.
Thanks,
Hello, I would like to know if there is any way to extract the graphs from an excel sheet. I have managed to export the content of the excel sheet but I have not been able to export the graph that is generated there
So far this is the code I handle
byte[] bytes = System.IO.File.ReadAllBytes(@"path"); Stream stream2 = new MemoryStream(bytes); Workbook workbook = Workbook.Load(stream2, ".xlsx"); Telerik.Windows.Documents.Spreadsheet.Model.Workbook document = workbook.ToDocument(); document.ActiveSheet = document.Worksheets.First(sheet => sheet.Name == "Rep.F3"); foreach (Telerik.Windows.Documents.Spreadsheet.Model.Worksheet sheet in document.Worksheets) { if (sheet.Name != "Rep.F3") { sheet.Visibility = Telerik.Windows.Documents.Spreadsheet.Model.SheetVisibility.Hidden; //document.Worksheets.Remove(sheet); } else { var shapes = sheet.Shapes; var img= sheet.Images; sheet.WorksheetPageSetup.PaperType = Telerik.Windows.Documents.Model.PaperTypes.A4; sheet.WorksheetPageSetup.PageOrientation = Telerik.Windows.Documents.Model.PageOrientation.Portrait; sheet.WorksheetPageSetup.CenterHorizontally = true; sheet.WorksheetPageSetup.PrintOptions.PrintGridlines = false; sheet.WorksheetPageSetup.ScaleFactor = new Telerik.Documents.Primitives.Size(0.9, 1); sheet.WorksheetPageSetup.Margins = new Telerik.Windows.Documents.Spreadsheet.Model.Printing.PageMargins(0 , 20, 0, 0); } }
I have tried to get the list of images and forms but it does not return any result
Hello,
I have followed this help article, how to bind CheckBoxGroup to model on razor page. This article does not show how to get selected values back on post.
https://docs.telerik.com/aspnet-core/html-helpers/editors/checkboxgroup/razor-page
OnPost CheckBoxGroupModel models that is bind property, it's CheckBoxGroupValue property stays null when posted back. Only way to get values back is to read them from Request.Forms["checkboxgroup"].
Hi,
I need to add a trash can against each option of the dynamic dropdown list.
example:
How can this be achieved?
What I have achieved so far:
Dynamically populating the list.
Thanks,
VM
The three dots buttons that open column menu settings work in the last three column but no in the others. On the other hand we use kendo windows, when we change the width of window; the column menu opener buttons work properly.