To erase value when cursor leaves the field [message #655695] |
Thu, 08 September 2016 08:08  |
 |
kumarravik
Messages: 32 Registered: January 2016 Location: delhi
|
Member |
|
|
Hi,
I have display item which shows messages as per the entry in different text fields of the form. i have when_validate_item trigger on every text fields for this.
as if text_field1
then display_item := finance;
if text_field2
then display_item :=Marketing ;
The problem is, until i enter any data in another text_item, the display item keeps showing the message of previous text_item.
I want that when user moves out from the text_item1, the display_item should be cleared, and become blank.
I tried to write "when_new_Item_instance trigger", but in this case the message doesn't even appear in first place (overrides the trigger when_validate_item );
Any suggestion if you guys can provide..
let me know if you have any query regarding the requirement.
|
|
|
|
|
|
Re: To erase value when cursor leaves the field [message #655705 is a reply to message #655703] |
Fri, 09 September 2016 03:13   |
cookiemonster
Messages: 13966 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
1) Please read and follow How to use [code] tags and make your code easier to read?
2) If you want us to spot mistakes in your code then you need to actually post the real code not pseudo code.
3) I have no idea why you're using WVI here. It fires when the user navigates out of field if they've changed it (plus there are settings that can make it fire on save instead). It is useless for what you want. If you want this for one field only then pre-text-item or when-new-item-instance is the combination you need. If you want it for multiple items then a block or form level when-new-item-instance is probably simplest.
|
|
|
|
Re: To erase value when cursor leaves the field [message #655709 is a reply to message #655705] |
Fri, 09 September 2016 08:37  |
cookiemonster
Messages: 13966 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
cookiemonster wrote on Fri, 09 September 2016 09:131) Please read and follow How to use [code] tags and make your code easier to read?
It contains instructions, please follow them.
My point about WVI stands - it sets the value too late to be any use - you need to use pre-text-item or when-new-item-instance.
The code you've posted isn't the actual code - you've got mismatched quotes if nothing else.
Never use like without a wild card. Use = if you don't want them.
I'd check what :System.Cursor_item returns - it's probably not in the case you think it is.
|
|
|