Hi Sergiy Tokarchuk
Thanks for your interest in Syncfusion products.
We have analyzed the reported query and found that the cause
of the issue is that the dropdown – menu is hidden behind the table cells “td”.
In order to overcome this issue, we suggest you to override
the css properties of the template column by using the cssClass property
of the Grid columns. Please refer the below code snippet.
<ej:Grid ID="OrdersGrid" runat="server" AllowPaging="True" >
<Columns>
. . .
<ej:Column HeaderText="Dropdown Column" Template="true"
TemplateID="#dropdownTemplate" Width="110" CssClass="customClass"/>
</Columns>
</ej:Grid>
<style>
.customClass, .e-gridcontent {
overflow: visible !important;
}
|
For your convenience, we have created a simple sample based
on your requirement and the same can be downloaded from the below location.
Sample Link: http://www.syncfusion.com/downloads/support/directtrac/general/Sample1803269814.zip
Please get back to us if you need any further assistance.
Regards
Ragavee U S