glowDateTimeSelector is not working on 12

Hi All,

below code is not working on telligent 12

jQuery("#eventStartTime").glowDateTimeSelector({ 'showPopup': false, 'allowBlankvalue': true, 'pattern':': <am,pm>', 'hourIndex': 0, 'minuteIndex:' : 1, 'amPmIndex': 2 });

Calander is not coimn in 12 but works fine in telligent version  10.

please let me know what else I need to do.

  • Can you share more code? Any errors in the console? Which browser?

    I've tried using your same code in the following sample widget in 12 and it seems to be working.

    <scriptedContentFragments>
    	<scriptedContentFragment name="Test Widget" version="11.0.0.0" description="" instanceIdentifier="c3b02ad806a943ba99de0acb037d3efd" theme="" isCacheable="false" varyCacheByUser="false" showHeaderByDefault="true" cssClass="" lastModified="2021-06-16 16:04:26Z">
    		<contentScript language="Velocity"><![CDATA[<input id="eventStartTime" aria-label="event start time"  name="eventStartTime" placeholder="hh:mm a" value="" class='meta-large'>
    
    <script>
    jQuery(function(j){
        jQuery("#eventStartTime").glowDateTimeSelector({
            'allowBlankvalue': true,
            'pattern':'<1-12>:<00-59> <am,pm>',
            'hourIndex': 0,
            'minuteIndex:' : 1,
            'amPmIndex': 2
        });
    });
    </script>]]></contentScript>
    		<headerScript language="Velocity" />
    		<additionalCssScript language="Velocity" />
    	</scriptedContentFragment>
    </scriptedContentFragments>