You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Problem statement: On clicking on "Open Form" in the Userview above, we would like to open up the Form in a Popup Dialog, and upon saving of the form, we wish to return to the same listing, with the page refreshed.

คำแถลงปัญหา: เมื่อคลิกที่ "เปิดแบบฟอร์ม" ใน Userview ด้านบนเราต้องการเปิดแบบฟอร์มในกล่องโต้ตอบแบบผุดขึ้นและเมื่อบันทึกแบบฟอร์มเราต้องการที่จะกลับไปยังรายชื่อเดียวกันโดยที่หน้าจะรีเฟรช


There are 2 items in the Userview category. One is a List and another is a Form.

มี 2 ​​รายการในหมวดหมู่ Userview หนึ่งคือลิสต์และอีกอันคือฟอร์ม

Steps:

ขั้นตอน:

  1. In Datalist, create a new link that points to a Userview Form menu (e.g. named as "form"). Set the parameter "embed=true" as well as remember checking "Hyperlink Target" to "Popup Dialog".

    ใน Datalist ให้สร้างลิงก์ใหม่ที่ชี้ไปยังเมนูแบบฟอร์ม Userview (เช่นชื่อเป็น "แบบฟอร์ม") ตั้งค่าพารามิเตอร์ "embed = true" และอย่าลืมตรวจสอบ "Hyperlink Target" เป็น "Dialup Dialog"




  2. In the correspondent Userview Form, configure its properties. Check "Show in popup dialog?" and go to the second tab.

    ในแบบฟอร์ม Userview ที่เกี่ยวข้องให้กำหนดค่าคุณสมบัติ ทำเครื่องหมายที่ "แสดงในกล่องโต้ตอบป๊อปอัป?" และไปที่แท็บที่สอง




  3. On the second tab, configure "URL Redirect After Form Submission" to point to a Userview List.

    บนแท็บที่สองกำหนดค่า "การเปลี่ยนเส้นทาง URL หลังจากส่งแบบฟอร์ม" เพื่อชี้ไปยังรายการ Userview




Doing the same to Inbox assignment

If you are pointing to a Userview Inbox instead of Userview Form in Popup Dialog, you can put the following code to "List View Custom Header" in Inbox > UI properties.

หากคุณกำลังชี้ไปที่กล่องจดหมายของ Userview แทนที่จะเป็นแบบฟอร์ม Userview ในกล่องโต้ตอบป็อปอัพคุณสามารถใส่รหัสต่อไปนี้ลงใน "List View Custom Header" ในInbox > UI Properties

<p>
<script type="text/javascript">// <![CDATA[
$(function(){
         if(window.top!==window.self)
              parent.window.location.replace(parent.window.location.href);
         })
// ]]></script>
</p>

Related Elements

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




  • No labels