Displaying 3 results from an estimated 3 matches for "edit_control".
Did you mean:
audit_control
2006 Aug 04
0
TE_RICH2 RichEdit control
...to go away. In other words, under Windows, one
can manipulate a string representation of the edit buffer without the
index positions being off because of a carriage return/line feed in one
case and only a line feed in another. This allows, for example, a
substring to be found by using
position = edit_control.get_value.index(substring)
edit_control.set_insertion_point(position)
Jamal
2010 Aug 03
1
Making a Text Control selected once user hits a button
I want it so that when a user hits a button, that a text control is
selected and they can just start typing away and update the text
control. Is there anyway to do this?
--
Posted via http://www.ruby-forum.com/.
2006 Jul 24
8
Views in one controller reaching out to other controllers (best practices)
Hello all. For the purpose of my question, let''s imagine we''re building some
search functionality.
You''re a sales person (you poor sap). And you''re hanging out in the
SalesCenterController. You need to do a search for available productions;
you''ve decided to be cool and use Ajax. Do you...
a) Make a remote call to an action in your current controller