Value Change listener not working in primefaces calendar

前端 未结 6 2223
执笔经年
执笔经年 2021-01-03 22:30

I am using primefaces 3.2 and JSF 2.0

My scenario is I have file date, last date and next date in my form. When user enters file date I need to update file date valu

6条回答
  •  心在旅途
    2021-01-03 23:04

    You can use onstart and oncomplete (does not appear in primefaces doc).

    I solved with that:

    
          
    
    

    Javascript:

    function openModal(){
        $('#mdlLoading').modal('open');
    }
    function closeModal(){
        $('#mdlLoading').modal('close');
    }
    

    Hope this help someone!

提交回复
热议问题