Hi, I'm doing a test with the blazor but in the combo as I click to appear the list the items appear far from the component. Can you help me with that? Thanks.
<div class="col-md-6"> <label class="form-label">Categoria</label> <TelerikComboBox Data="@_categorias" Filterable="true" FilterOperator="StringFilterOperator.Contains" Placeholder="Selecione a Categoria" @bind-Value="@subcategoria.CodigoGrupo" TextField="Descricao" ValueField="Id" Id="CBCategoria" AllowCustom="false" Width="100%"> </TelerikComboBox></div>
9 Answers, 1 is accepted
Hello Klayton,
The following section of the documentation treats the most common reasons for such problems: https://docs.telerik.com/blazor-ui/troubleshooting/general-issues#wrong-popup-position. If it does not help you move forward, I recommend you open a support ticket and send us a simple runnable example that shows the problem.
Regards,
Marin Bratanov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Hi,
It worked out following Marin Bratanov's instructions,
Thank you very much

Hi Dean,
The article linked above summarizes the known causes for such problems. If it does not help you move forward, I advise that you open a support ticket and send us a simple runnable example of the Telerik problem (remove business logic, actual data, databases and dependencies, just the isolated Telerik component with a few hardoded items of data to showcase the problem).
Regards,
Marin Bratanov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Hello Dean,
Would you mind sharing it with the community, it might help someone else?
Regards,
Marin Bratanov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Thanks for the update, Dean.
Regards,
Marin Bratanov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

I found a solution to this.
Add the following codes:
<style>.k-animation-container{
position:fixed
}
</style>