wxruby - Set max length of ComboBox

Posted by Jonas Söderström on Stack Overflow See other posts from Stack Overflow or by Jonas Söderström
Published on 2010-04-13T14:50:39Z Indexed on 2010/04/13 14:52 UTC
Read the original article Hit count: 394

Filed under:
|

Is is possible to set the Max length of a ComboBox in wxruby?

I have looked in the documentation but find nothing
http://wxruby.rubyforge.org/doc/combobox.html

But if i do my_combobox.methods.sort I get set_max_size and set_min_size in the list. But When I call it my_combobox.set_max_length(100) I only get
undefined method 'set_max_length' for #<Wx::ComboBox:0x4d4a914>

I've also tried to call it as a private method

  def my_combobox.max(i)
    set_max_length(i)
  end
  my_combobox.max(100)

But with the same result.

The issue I want to avoid is that if somebody pastes 6000+ characters in my Combobox the text becomes white.

© Stack Overflow or respective owner

Related posts about ruby

Related posts about wxruby