1. Copy Pest this JavaScript Function to Page HTML Header.
<script>
function serial_num() {
var highest=0;
$(".serial").each(function(){
if (this.value != "") {
highest=Math.max(highest,parseFloat(this.value));
}
});
$(".serial").last().val(highest+1);
}
</script>
2. Tabular column -> Column Attributes-> Go to Serial Column Attributes -> Element CSS Class
-> serial
3. Add serial_num() JavaScript function to Button URL Target .
javascript:{apex.widget.tabular.addRow();serial_num();}
Muhammad Abdul Qaium is a Database Engineer/Oracle Apex Developer/BI Developer (in Connecticut, USA) who is an Oracle Certified Cloud Architect Professional, OCI Autonomous DB specialist as well as Oracle Business Intelligence Foundation Suite 11g Certified Implementation Specialist with extensive expertise in Database design , PL/SQL, Oracle Apex, Microsoft SSIS, ETL, Power BI, Qlik Sense, BI Publisher, Jasper Report, OBIEE. Contact: qaiuminfo@gmail.com
Search This Blog
Subscribe to:
Post Comments (Atom)
How to Implement Password Hide/Show in Login Page
Follow these steps to enable users to toggle between hiding and showing their password on the login page. Step 1: Add the Function and Glob...
No comments:
Post a Comment