On CloseField and textStyle/textColor changes?

2011-11-02 Thread JOHN PATTEN
Hi All… I have a field that updates a record in a SQLite database via a on closeField handler when the quantity of the text changes. I would like the record to be updated if the user just changes the color of the text or the style of the text too. Currently if a user only changes the color of

Re: On CloseField and textStyle/textColor changes?

2011-11-02 Thread Bob Sneidar
Store the value and color of the field in an openField handler, then trap for exitField which will trigger whether or not changes are made. In the exitField handler, check for parity with your stored values and proceed accordingly. Remember to update your changed values to the stored values.

Re: On CloseField and textStyle/textColor changes?

2011-11-02 Thread Pete
Hi John, After adding the space by script, just send a closeField message to the control. Pete Molly's Revenge http://www.mollysrevenge.com On Wed, Nov 2, 2011 at 10:40 AM, JOHN PATTEN johnpat...@me.com wrote: Hi All… I have a field that updates a record in a SQLite database via a on