シンプルなリフト Web アプリを 1 つ作成しようとしています。その中で、ajax呼び出しを使用して同じページのボタンをクリックしながら、2つのdivを表示および非表示にしたい. これまでに次のコードを試しました。
私からしてみれば
<div id="PGMainDiv" data-lift="ShowBookedTicket" style="width=400px;height=600px;border:2px solid #FF0000;border-radius:5px">
<div id="sampleDiv" style="font-size:15px;color:#19552D;padding:10px 5px 10px 10px">
This is a sample div which show and hide while ajax calling
</div>
<div style="padding-left:267px">
<button id="PGOK" value="OK" style="width:70px">OK</button>
</div>
</div>
<div id="ticketDiv" style="display:none;border:2px solid #FF00FF">
<p>This is a another sample div which show and hide while ajax calling</p>
</div>
そして私のShowBookedTicketスニペットで
class ShowBookedTicket {
def testFunction(s: String): JsCmd = {
JsCmds.Run("jQuery('#ticketDiv').show()")
JsCmds.Run("jquery('#sampleDiv').hide()")
//JsCmds.Function("testJsFunction",List("param"),SHtml.ajaxCall( () => JsRaw("""$('#ticketDiv').show()""")).cmd)._2
}
def render = "*" #> {
"#PGOK [onClick]" #> SHtml.onEvent(testFunction)
}
}
ここで、最初の div 表示コード ( JsCmds.Run("jQuery('#ticketDiv').show()")
) のみを指定すると、正常に動作しています。しかし、2行目を指定すると、そこでは何も起こりません。コメント行でも試してみましたが、いくつかのエラーが表示されています( overloaded method value ajaxCall with alternatives: (jsCalcValue: net.liftweb.http.js.JsExp,jsContext: net.liftweb.http.JsContext,func: String => net.liftweb.http.js.JsCmd)net.liftweb.http.GUIDJsExp <and> (jsCalcValue:
net.liftweb.http.js.JsExp,func: String => net.liftweb.http.js.JsCmd)net.liftweb.http.GUIDJsExp cannot be applied to (() => net.liftweb.http.js.JE.JsRaw)
Eclipseで)。誰か答えてくれませんか..
ありがとうございます