2015-04-22 90 views
0

如果條件存在,我必須打開一個名爲「thanksContactModal」的模板中的模態窗口,並且ID爲「thank-contact-us」。Grails-如何在gsp中打開模式

我嘗試使用下面的代碼:

<g:if test="${messageSent}"><div><g:render template="thanksContactModal"> </g:render></div></g:if> 

不工作。

回答

0

應該由JavaScript打開它,如果你使用的引導模式,所以你應該impliment下面的代碼:

<g:if test="${messageSent}"> 
    $('#thank-contact-us').modal('show') 
</g:if> 

如果謝接觸,我們是你的模態窗口的ID。祝你好運

+0

@ Koloritnij-你不能寫內部的JavaScript腳本代碼

+0

當然可以嗎? ('#thank-contact-us')。modal('show') 試試這個。當然它與和<資源:腳本> – Koloritnij

+0

一起工作你不能在gsp文件中執行 –