tapestry javascript deferredzoneupdate方法的ZoneManager回调函数



我在挂毯5.4网页中制作一个完整的callendar。

当我进行新事件或单击现有事件时,FullCalendar的方法称为(selecteventClick)。在这些方法中,挂毯JS方法被称为(zoneManager.deferredZoneUpdate("formZone", listenerURIWithValue);),因为我想刷新我的jQuery对话框div( #formZone)什么是挂毯区域。它在功能上运行良好,数据出现。

但是,我总是看到令人耳目一新的"过程",因为在更新的部分之后,打开了jQuery对话框,但是刷新没有结束(我知道,因为Ajax调用是异步的),并且会导致"丑陋的"刷新。打开jQuery对话框后。

我的目标是为deferredZoneUpdate定义回调函数或制作此代码序列:

...
zoneManager.deferredZoneUpdate("formZone", listenerURIWithValue);
$('#wsDialog').dialog('open');
...

感谢提前的答案!

更新:

calendar-init.js:

    define(["jquery" , "t5/core/zone"], function($, zoneManager) {
        return function(modifyEventLink, newEventLink, pageTurnLink, allDayText) {
            $(document).ready(function() {
                var calendarDiv = $('#calendar');
                calendarDiv.fullCalendar({
                 //....init
                eventClick: function(calEvent, jsEvent, view) {

                // create modifyeventlink with id param
                var listenerURIWithValue = appendQueryStringParameter(modifyEventLink, 'eventID', calEvent.id);
                // ajax zone update
                zoneManager.deferredZoneUpdate("formZone", listenerURIWithValue);
                // open the worksheet dialog
                $('#wsDialog').dialog('option', 'title', calEvent.title);
            },
            //...init
   });});}}) // the code syntacs is good dont bother these :D

后端:

void onModifyEventLink() {
    if(request.isXHR()) {
        logger.debug("ModifyEventLink on.");
        String eventID = (String) request.getParameter("eventID");
        if(eventID == null) {
            logger.error("wsDialog was not able to load because eventID is NULL!");
        } else {                
            try{
                wSheet = sheetService.find(Integer.valueOf(eventID));
                if(wSheet != null) {    
                    ajaxResponseRenderer
                        .addCallback(new JavaScriptCallback() {
                            @Override
                            public void run(JavaScriptSupport javascriptSupport) {
                            javascriptSupport.require("wsdialogs");
                            }};)
                        .addRender(formZone);
                } else {
                    logger.warn("Worksheet with " + eventID + " not found.");                   
                }
            } catch (NumberFormatException e) {
                logger.error("wsDialog was not able to load beacause eventID was not a number.");
                logger.error("Exception: ", e.getLocalizedMessage());
            }
        }
    } else {
        logger.debug("ModifyEventLink on, request is not XHR (ajax)");
    }
}

(模块)wsdialogs.js:

define(["jquery" , "t5/core/zone"], function($, zoneManager) {
        console.log("wsdialog-js run"); 
        $("#wsDialog").dialog('open');
});

tml:

<t:container
   xmlns:t="http://tapestry.apache.org/schema/tapestry_5_4.xsd"
   xmlns:p="tapestry:parameter">
   <t:jquery.dialog t:clientId="wsDialog" t:id="wsDialog" title="${message:wsheet-new}" style="display: none;">
      <t:zone t:id="formZone" id="formZone">
        <t:form t:id="worksheetForm" t:type="form" t:zone="^">
            ....
        </t:form>   
       </t:zone> 
    </t:jquery.dialog>
</t:container>
public class ComponentWithZone {
    @Inject
    private AjaxResponseRenderer ajaxResponseRenderer;        
    ...
    public void onSomeEventFromClient() {
        ajaxResponseRenderer.addRender("zone-id-to-update", zone.getBody()).addCallback(new JavaScriptCallback() {
            @Override
            public void run(JavaScriptSupport javascriptSupport) {
                javascriptSupport.require("modal").invoke("showModal").with("#dialog-id");
            }
        });
    }
}

此示例与Bootstrap模式一起包含为挂毯模块。

当带有内容的挂毯刷新区域div时,它将触发showmodal函数。

upd:忘了提及此示例假设您具有模态模块。这是我的示例:

(function(){
    define(["jquery", "bootstrap/modal"], function($, modal) {
        return {
            showModal: function(id) {
                $('#'+id).modal('show');
            },
            hideModal: function(id) {
                $('#'+id).modal('hide');
            }
        };
    });
}).call(this);

而不是 bootstrap/modal 您可以使用任何模块,但不要忘记将其包括在元I-Inf/模块中。

相关内容

  • 没有找到相关文章

最新更新