I see a good solution for angular (PopupSettings.appendTo)
https://www.telerik.com/forums/datepicker-doesn%27t-open-in-ionic-modal#5117655
but blazor only has the PopupClass attribute to work with. Assigning that a class with a large z-index didn't help
Woke up this morning, removed the css patch, your code worked, my code worked. My guess is that brave's cache didn't completely flush out 2.23 until today? Sorry Marin please close this!
Hello Victor,
This seems to work fine with me, can you reproduce this issue with the snippet below? I'm also attaching a short video so you can confirm if I am missing some step.
<TelerikWindow @bind-Visible="@WindowIsVisible" Modal="true">
<WindowTitle>
<strong>The Title</strong>
</WindowTitle>
<WindowContent>
Selected value: @selectedValue
<br />
<TelerikComboBox Data="@myComboData" TextField="MyTextField" ValueField="MyValueField" @bind-Value="selectedValue"
Placeholder="Select an item..." ClearButton="true" Filterable="true" FilterOperator="@StringFilterOperator.Contains">
</TelerikComboBox>
<p>some more content</p>
<p>lore ipsum</p>
</WindowContent>
<WindowActions>
<WindowAction Name="Minimize"></WindowAction>
<WindowAction Name="Maximize"></WindowAction>
<WindowAction Name="Close"></WindowAction>
</WindowActions>
</TelerikWindow>
<TelerikButton OnClick="@( () => WindowIsVisible = !WindowIsVisible )">Toggle window</TelerikButton>
@code {
bool WindowIsVisible { get; set; }
IEnumerable<MyDdlModel> myComboData = Enumerable.Range(1, 20).Select(x => new MyDdlModel { MyTextField = "item " + x, MyValueField = x });
int selectedValue { get; set; }
//in a real case, the model is usually in a separate file
//the model type and value field type must be provided to the dropdpownlist
public class MyDdlModel
{
public int MyValueField { get; set; }
public string MyTextField { get; set; }
}
}
Regards,
Marin Bratanov
Progress Telerik
Тhe web is about to get a bit better!
The Progress Hack-For-Good Challenge has started. Learn how to enter and make the web a worthier place: https://progress-worthyweb.devpost.com.
looks like 2.24 indeed fixed it for the date range. But I still need the CSS fix for a TelerikComboBox in a popup window:
If I open the combobox popup via chevron, then it gets the +1 z-index attribute applied to it's animation container. However, if my first attempt to open the combobox popup is initiated via typing a search expression, then the animation container is created w/o a z-index attribute.
Hi Victor,
This will be fixed in our upcoming 2.24.0 release in mid-May, here's a workaround for the time being:
<style>
.k-animation-container {
z-index: 15000;
}
</style>
Regards,
Marin Bratanov
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.