Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Configure your Inbox or Datalist Inbox and add in the following scripts accordingly.

Thai

สามารถวางสลิปที่ folllowing ใน Inbox หรือ Datalist Inbox เพื่อให้หลังจากการมอบหมายเสร็จสิ้นเมื่อกลับไปที่รายชื่อของการมอบหมายการมอบหมายแรกในรายการจะถูกเปิดโดยอัตโนมัติ

กำหนดค่ากล่องขาเข้าของคุณหรือกล่องขาเข้าดาต้าลิสต์และเพิ่มในสคริปต์ต่อไปนี้ตามลำดับ

Code Block
titleList View Custom Header
<script type="text/javascript">
$( function(){
if( $.cookie('showNextInList') == 'yes'){
document.location = $("table").find("a").attr("href");
$.cookie('showNextInList', null, {path: '/'});
}
});
</script>
Code Block
titleAssignment View Custom Header
<script type="text/javascript">
$( function(){
$("input#assignmentComplete").click( function(){
    $.cookie('showNextInList', 'yes', {path: '/'});
});
});
</script>

Related Elements

Thai

องค์ประกอบที่เกี่ยวข้อง

 

 

...