Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Table of Contents |
---|
Thai |
---|
ลักษณะ |
Thai |
---|
ตัวอย่างโค้ด |
Code Block | ||
---|---|---|
| ||
import org.joget.apps.app.service.MobileUtil; if (MobileUtil.isMobileView()) { //return mobile html template } else { //return normal html template } |
Thai |
---|
ฟิลด์ |
public static final String MOBILE_VIEW = "_mobileView_";
A key used to set the HTTP request attribute when it is a mobile view.
Thai |
---|
คีย์ที่ใช้เพื่อตั้งค่าแอตทริบิวต์คำขอ HTTP เมื่อเป็นมุมมองอุปกรณ์พกพา |
Thai |
---|
กระบวนการ |
public static boolean isMobileDisabled()
Flag to indicate the mobile support is disabled by system
Thai |
---|
ตั้งค่าสถานะเพื่อระบุว่าการรองรับมือถือถูกปิดใช้งานโดยระบบ |
public static boolean isMobileUserAgent()
Checks whether the current thread is being called from a mobile browser
Thai |
---|
ตรวจสอบว่ามีการเรียกเธรดปัจจุบันจากเบราว์เซอร์มือถือหรือไม่ |
public static boolean isMobileUserAgent(javax.servlet.http.HttpServletRequest request)
Checks whether the current request is being called from a mobile browser
Thai |
---|
ตรวจสอบว่ามีการเรียกคำขอปัจจุบันจากเบราส์มือถือหรือไม่ |
public static boolean isMobileView()
Checks whether the current request is a mobile view
Thai |
---|
ตรวจสอบว่าคำขอปัจจุบันเป็นมุมมองมือถือหรือไม่ |
public void setDisableMobile(boolean disabled)
Sets to disable the mobile support
Thai |
---|
ตั้งค่าให้ปิดใช้งานการรองรับมือถือ |
public static void setMobileView(javax.servlet.http.HttpServletRequest request, java.lang.Boolean mobileView)
Sets a flag to indicate whether or not the current request is a mobile view.
...
Thai |
---|
ตั้งค่าสถานะเพื่อระบุว่าคำขอปัจจุบันเป็นมุมมองอุปกรณ์เคลื่อนที่หรือไม่ |