This is something pretty specific and will need exact CSS styles to fix.
Can you provide a REPL example demonstrating it? Or maybe modify the attached sample to replicate the issue and send it to me? This will allow me to debug the project locally and provide more accurate and precise solutions to the matter.
Regards,
Eyup
Progress Telerik
Stay tuned by visiting our public roadmap and feedback portal pages. If you're new to the Telerik family, be sure to check out our getting started resources, as well as the onlyREPL playground for creating, saving, running, and sharing server-side code.
Not doing anything special, justing kendo as is out of box. The loading icon is bigger than the control forcing it to grown then shrink. Our temporary fix is this
so only thing not out of box is the two extension methods .Required and .
// DROP DOWN LIST public static DropDownListBuilder Required(this DropDownListBuilder builder) { builder.ToComponent().HtmlAttributes.Add("required", "required"); builder.OptionLabel("Please Select"); return builder; }
public static DropDownListBuilder Width(this DropDownListBuilder builder, int width) { builder.ToComponent().HtmlAttributes.Add("style", "width:" + width.ToString() + "px"); return builder; }
Eyup
Telerik team
commented on 29 Feb 2024, 03:25 PM
Yeah, your code seems correct. There is some CSS probably mixmatch somewhere.
However, in order for me to track it down more deeply, I will need you to modify the kendocoregridsample2023r2.zip sample and send it back to me for further investigation.