Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
605
Unable to Select from DropDown ( which is on a column on the UltraGrid )
posted

Hello,

I have an ultraGrid which has some drop downs on a couple of its columns. The problem I am facing is that I am not able to choose from the dropdown if I reduce / minimize the size of the form which holds the  grid from its original size.  It worked fine until I added the following piece of code

private void OrderRepositoryDetailsView_SizeChanged(object sender, EventArgs e)
{
  dgItems.SetBounds(0, 0, this.ClientSize.Width, this.ClientSize.Height);
  this.AdjustFormScrollbars(false);
}

I also noticed that when I click on any of the dropdowns in the some of the columns on a row , this event seems to be getting fired, although I can see the drop down I am not able to select a value from the drop down. 

Not sure what is happening, any help will be greatly appreciated


Thanks,
AJ

Parents Reply Children
No Data