Posted on Tuesday, July 2, 2013 Highlight empty required items on APEX 4.2 Category APEX Tips and Tricks Here is how to highlight form text items, witch Value Required attribute is set to "Yes" and do not have any value. Create dynamic action to page zero Name: Highlight required Event: Change Selection Type: jQuery Selector jQuery Selector: input[type='text'][required] Condition: -No Condition- Action: Execute JavaScript code Fire On Page Load: True Code: if(!$v(this.triggeringElement)){ $(this.triggeringElement).css({"background":"#FFFF77"}); }else{ $(this.triggeringElement).css({"background":""}); } Selection Type: None Now run application and items having Value Required set to "Yes" background color is changed if item do not have any value. You can find Value Required setting from item attributes. If you do not like use this for all your application items, you can create dynamic action to specific page(s). Or if you do not use item Value Required setting, you can use e.g. Item as Selection Type for dynamic action and specify items you like highlight. See working example.