Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using a UltraComboBox from Infragistics in a forms Task Manager screen

AssignTo

The UltraComboBox has its dropdown button hidden, and AutoCompletion is active so the user can type a couple of letters to retrieve an user name to assign someone to a task.

However, the user has the possibility to let the task "Not assigned" by clicking the eraser icon, setting the internal value of the ComboBox to null :

private void SetNotAssigned_Click(object sender, EventArgs e)
{
    AssignedToComboBox.Value = null;
}

Instead of having my ComboBox filled with its NullText property ("Not assigned"), it is blank. Why ?

share|improve this question

1 Answer

up vote 0 down vote accepted

I just found why.

I had to put AlwaysInEditMode to false.

It looks like Infragistics is using a hidden TextBox that appears during edition and disappears afterwards. I suspect this TextBox behavior is not allways the expected one. AlwaysInEditMode seems to make that hidden TextBox on all the time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.