Telerik Forums
UI for Blazor Forum
1 answer
162 views
Does Signature component embed and/or display a DateTimeStamp when viewing the signature after it has been submitted?
Nadezhda Tacheva
Telerik team
 answered on 04 Apr 2023
1 answer
132 views

Good day,

can time zones be inserted in TelerikGantt?
If I want to insert events only in certain working hours (for example, Monday to Friday from 6am to 10pm). If an event starts Friday at 9pm, it should be automatically extended to Monday (if the event lasts more than 1 hour). The function should be part of any Gantt by default, but I can't find a description for the definition of the ranges. Can you give me the path to the description or a short description on how to perform the described functionality?
Thanks!

 

Regards

Paul

ProduktionsplanungIGP
Top achievements
Rank 1
Iron
Iron
 answered on 04 Apr 2023
0 answers
303 views

Hi,

 

I am currently using the TelerikMenu Blazor component and I am having issues with changing the color of the pressed/clicked state of a menu item. I can successfully change the coloring for the other states of the menu items e.g. selected, focused, active, hover. How would I approach this to solve my problem?

 

This is what I have so far:

 

MenuItems = new List<MenuItem>();

        MenuItem Library_Header = new MenuItem() { Text = "Library", Icon = "book", Items = new List<MenuItem>() };
        MenuItem Library_Item_EFT = new MenuItem() { Text = "EFT Library", Icon = "book", Items = new List<MenuItem>() }; 
        MenuItem EFT_Item_Bank_View = new MenuItem() { Text = "Bank view", Icon = "book" };

        MenuItem EFT_Item_Version_View = new MenuItem() { Text = "Version view", Icon = "book" };

 

Menu css (example of the menu's selected state being changed):

.k-menu-group .k-item:focus, .k-menu-group .k-item.k-state-selected,
    .k-menu.k-context-menu .k-item:selection,
    .k-menu.k-context-menu .k-item.k-state-selected {
        background-color: green; //I want to change the clicked state to green
    }
Andy
Top achievements
Rank 1
 asked on 03 Apr 2023
1 answer
375 views

I'm working on a landing page builder, I need to be able to do a couple of extra things with TileLayout. I would like this behaviour to be added optionally by configuration. 

 

I would like to Drag & Drop elements between two TelerikTileLayout collections.

In my dahsboard I want to have groups of tiles, like the ones in SAP launchpad, here are some images. I want to move tiles from one section to another.

https://experience.sap.com/wp-content/uploads/sites/56/2021/06/SAP-Fiori-Launchpad-Spaces_MyHome_1.96.png

 

I would like to specify the actual position of a element with the Row & Column index.

I want to build a launchpad like the one in Azure. Here are some images of what I want to build. As you can see, you are free to chose any row/col you want in the grid.

https://media.licdn.com/dms/image/C5112AQGroL99SJPhag/article-cover_image-shrink_720_1280/0/1559712744601?e=2147483647&v=beta&t=0_c13EnPEq_pxXxf8SNuH1jzC4_N8hUYR_uf2kUKmSA

https://adamtheautomator.com/wp-content/uploads/2022/09/image-93.png

Nadezhda Tacheva
Telerik team
 answered on 03 Apr 2023
1 answer
314 views

Hi, i show in a specific position a context menu with some fields.

If i try to update a binding field (using @bind-Value),

for example with a TelerikTextBox it does not work.

You can see this simple example, press Reset button does not update the textbox content.

What's wrong?

Thanks

 

https://blazorrepl.telerik.com/QxkRwDbe51q1XmYf53

 

 

<TelerikContextMenu@ref="ContextMenu"TItem="object">

  
    <Template>
        <div>Input name</div>
        <TelerikTextBox @bind-Value="Value" />
        <br />
        <TelerikButton OnClick="@(() => Value = "")">Reset</TelerikButton>
        <TelerikButton OnClick="@(() => ContextMenu.HideAsync())">Close</TelerikButton>
    </Template>
</TelerikContextMenu>
<TelerikButton OnClick="() => ContextMenu.ShowAsync(100,100)">Open context menu</TelerikButton>
@code
{
    private TelerikContextMenu<object> ContextMenu {get;set;}
    private string Value {get;set;}
}
Hristian Stefanov
Telerik team
 answered on 03 Apr 2023
0 answers
190 views
For the Telerik UI For Blazor, I need to prevent the button from refreshing the page and for a textbox I need to format it as a phone number. I could not find answers to this in the documentation or searching the internet. It keeps referring me back to Kendo UI. How can I achieve this?
Richard
Top achievements
Rank 1
 asked on 02 Apr 2023
0 answers
404 views

Hello,

I have a blazor app which consumes an API that sends documents as byte arrays. 

In the header is the file name, so I can determine what sort of file it is. I am currently using the following:

DocxFormatProvider

DocFormatProvider

TxtFormatProvider

RtfFormatProvider

Which works great, for me to get a byte array that can be used with the TelerikPdfViewer.

The issue I have is, that some of the documents are email messages, specifically .msg files.

There isn't a provider for Msgs, so I wondered if anyone had a work around, to be able to show the file in the browser?
I cannot save the file as a .msg, I can only use the byte array.

 

Thanks

Toby
Top achievements
Rank 1
 asked on 30 Mar 2023
1 answer
533 views

I use TelerikGrid, and in it I do grid grouping.

 new GroupDescriptor()
                {
                    Member = "workItemViewModel.WorkItemGroupId",
                    DisplayContent = "Application",
                    MemberType = typeof(string)
                }

Grouping is working, but I need to see text "Application", but I see "workItemViewModel.WorkItemGroupId" instead.

How to fix it?

Svetoslav Dimitrov
Telerik team
 answered on 30 Mar 2023
1 answer
389 views

Hi,

I was hoping to use the FileManager component as a visual representation of a file hierarchy which is based on categories, instead of actual directories in a file system. From the examples I'm currently not able to figure out how to support a single file being part of multiple hierarchies.

The features I'm hoping to implement through the FileManager component:
1. If my file has multiple categories/directories associated with it, I want the same file to be listed under each single category/directory.

2. If a directory is selected in the FileManager TreeView, I want the List/Grid to show all files under that directory and it's sub folders. I don't want to see the sub folders as icons in the Grid/List.

Any ideas/examples on how to accomplish this?

Kind regards.

Dimo
Telerik team
 answered on 30 Mar 2023
0 answers
111 views

I am working with a TelerikGrid and a module, in both I have a TelerikGrid with a SearchBox, the thing is that once I write in the module SearhcBox it also writes in the SearchBox behind the module, does anyone knows whats going on?

Thanks for the help

Luis Ignacio
Top achievements
Rank 1
 asked on 29 Mar 2023
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?