function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Mahesh MMahesh M 

can any one help on fallowing scenario?

HI,
User-added image
If i click on custom calendar any date the value should be save on custom object date field.(using java script or jquery)


Thank, 
VineetKumarVineetKumar
Something like this ?
<script type="text/javascript">
    function updateDate(component, dateValue){
        document.getElementById(component).value = var d = Date.parse(dateValue); // mm/dd/yyyy format
    }
</script>

onclick = "updateDate(this, value);"