Apex validation | Item validation using ajax in oracle apex

Опубликовано: 03 Октябрь 2024
на канале: Md. Mostafa Kamal
1,680
14

Item validation in oracle Apex | Apex Validation
   • Item validation in oracle Apex | Apex...  

How to use key focus in oracle apex | Apex tab key go to next item
   • How to use key focus in oracle apex |...  

page auto refresh in oracle apex | auto refresh interactive report in oracle apex
   • page auto refresh in oracle apex | au...  

oracle bi publisher report tutorial in oracle apex
   • oracle bi publisher report tutorial i...  

region selector in oracle apex (region display selector in oracle apex)
   • region selector in oracle apex (regio...  

How to delete oracle apex collection member
   • How to delete oracle apex collection ...  

How to use select2 plugin in oracle apex 19 2 (how to use plugins in oracle apex)
   • How to use select2 plugin in oracle a...  

=====================Ajax Callback Process===========
Begin
If :P27_ID not in (1,2,3) Then
htp.prn('ID NOT FOUND!!!');
Else
htp.prn('SUCCESS');
End If;
End;
===========Dynamic Action with focus lose under item=====
apex.server.process('New',
{
pageItems : '#P27_ID'
}
,
{
dataType : 'text', success : function(data)
{
if(data != 'SUCCESS') apex.message.alert(data);
}
}
)