I am using 2010 volumn 1 version. how to solve this
Thanks, it's wroking fine
Hi,
Set EnableDropDownAsChild="false" to the WebDropDown, then add a ClientEvent for Initialize in the following way:
<ClientEvents Initialize="setZIndex" />
then define the actual handler:
<script type="text/javascript">
function setZIndex(sender,args)
{
sender.behavior.set_zIndex(100000);
}
</script>
(it should be some big value so that it overrides the row edit template one)
And it should work fine.
Thank you,
Angel
this is also happening on an unbound dropdown like this:
<ig:WebDropDown ID="WebDropDown1" runat="server" Width="200px">
<Items>
<ig:DropDownItem Text="1" Value="1" />
<ig:DropDownItem Text="2" Value="2" />
</Items>
</ig:WebDropDown>
hi
Here i am using objectdatasource to bind the dropdowns
Are these drop downs data bound?
You probably need to find these dropdowns at prerender, assign data source and call databind() for each of them.