| 123456789101112131415161718192021222324252627282930313233 |
- /**
- * Set duplicate field.
- *
- * @param string $resolution
- * @param int $feedbackID
- * @access public
- * @return void
- */
- function setDuplicate(resolution, feedbackID)
- {
- if(resolution == 'repeat')
- {
- $('#duplicateFeedbackBox' + feedbackID).show();
- }
- else
- {
- $('#duplicateFeedbackBox' + feedbackID).hide();
- }
- }
- $(function()
- {
- $('select[id^="repeatFeedbackIDList"]').picker(
- {
- disableEmptySearch : true,
- dropWidth : 'auto',
- onReady: function(event)
- {
- $(event.picker.$container).addClass('required');
- }
- });
- });
|