jQuery events are not invoking in WebSpeed(HTML Mapping)

Abhishek Sahu

New Member
Hi,

I want to use jQuery in existing webspeed application, that was developed in HTML mapping, currently this application is using HTML, CSS, JavaScript and Progress. But now i want to use jQuery in this but jQuery events are not invoking. Could you please help me on this.

Thanks & Regards,
Abhishek Sahu
 

Cecil

19+ years progress programming and still learning.
Can you give some examples of the JQuery code you are using and URL that you have tried? Are you trying to do a POST or GET?
 

Abhishek Sahu

New Member
Thank you for your response :) Application using POST method and i want to use timepicker method of jQuery. Actually i want to design a recurrence screen like outlook appointment/meeting recurrence screen, where i need to display start time, end time with duration and duration drop-down box etc.
Frame URL: http://172.16.8.77/cgi-bin/mstore/frames.w?IdtSession=418&mod=1
Page URL where i want to use jQuery: http://172.16.8.77/cgi-bin/mstore/dsalresrec.w?idtsession=418
<p id="datepairExample">
<input type="text" class="time start" />
<input type="text" class="time end" />
</p>

<script type="text/javascript" src="datepair.js"></script>
<script type="text/javascript" src="jquery.datepair.js"></script>
<script>
// initialize input widgets first
$('#datepairExample .time').timepicker({
'showDuration': true,
'timeFormat': 'g:ia'
});
// initialize datepair
$('#datepairExample').datepair();
</script>

Thank You,
Abhishek
 

Abhishek Sahu

New Member
I have have again tried, this time start and end time datalist are displaying but when i select start/end time then Change event is not firing.
 
Top