Versions Compared

Key

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

Table of Contents

Image Modified

Date Picker With 3 Months View and Saturday and Sunday Disabled

...

Thai

เปลี่ยนสีขึ้นอยู่กับมูลค่าจำนวนเต็ม

English
When integer value less than 60, set background color to green, otherwise, red.
Thai

เมื่อค่าจำนวนเต็มน้อยกว่า 60 ให้ตั้งค่าสีพื้นหลังเป็นสีเขียวมิฉะนั้นจะเป็นสีแดง

...

Code Block
languagejs
{{type:'date',dateFormat:'MM/DD/YYYY',correctFormat:true,defaultDate:'01/01/1900',datePickerConfig:{firstDay:0,showWeekNumber:true,numberOfMonths:3,disableDayFn:function(date){return date.getDay()===0 || date.getDay()===6;}},renderer:function(instance, td, row, col, prop, value, cellProperties){Handsontable.renderers.TextRenderer.apply(this, arguments);td.style.backgroundColor = 'green';}}}

Date Picker with

...

Custom Renderer to Cater to Different Display Format and Data Format

Thai

ตัวใช้เลือกวันที่พร้อมตัวแสดงผลลูกค้าเพื่อจัดรูปแบบการแสดงผลที่แตกต่างกันและรูปแบบข้อมูล

...