Minitoolbar & MultiColumnComboBox

Hi,

I am using a minitoolbar in which i am hosting a MultiColumnComboBox control which is working fine.
But after selecting value from combo box, if the row is outside minitoolbar box area the minitoobar is not visible.
Which works fine in case of toolstripcombobox.
What is the reason behind such kind of behaviour, how can i overcome it.Please let me know the solution to have minitoolbar behaviour same for multicombobox as well.

Thanks,
Santosh

3 Replies

KN Karikalan Natarajan Syncfusion Team May 12, 2010 03:09 PM UTC

Hi Santosh,

Thanks for your interest in Syncfusion products.

MultiColumnComboBox has been implemented by combination of two more controls. When we click on outside of the minitool bar, it will be closed. Now I have handled this problem in work around. Please find the following sample link which illustrates “if the row is outside minitoolbar box area the minitoobar is not visible.”

http://www.syncfusion.com/uploads/redirect.aspx?&team=support&file=WindowsFormsApplication2-1514946789.zip

The sample code as follows,

void miniToolBar1_Closing(object sender, ToolStripDropDownClosingEventArgs e)
{
if (this.multiColumnComboBox1.DroppedDown)
{
e.Cancel = true;
}

}

Please let me know if you need further information on this.

Thanks,
Karikalan N


SU Santosh U May 13, 2010 05:52 AM UTC

Hi Karikalan,

Thanks a lot for the solution in first go, it works the way i want. :)

Thanks syncfusion for always help. :)

I will get back to you if i found any further problem with it.

Thanks,
Kanchan


KN Karikalan Natarajan Syncfusion Team May 13, 2010 08:38 AM UTC

Hi Kanchan,

Thanks for your update. We are happy to assist you.

Thanks,
Karikalan N

Loader.
Up arrow icon