Workshop Feedback Form

Capture comprehensive feedback after hands-on workshops and training sessions. This form evaluates the practical value of the workshop, facilitator effectiveness, pacing, materials quality, and skill development. Features slider-based difficulty assessment and matrix questions for efficient multi-dimensional feedback. Perfect for corporate training, professional development workshops, and educational institutions.

Education & Training

Try the Form

Your feedback helps us create better learning experiences.
Workshop Information
 
 
Overall Satisfaction
0/5
Content & Pacing
3
3
15
3
3
15
📊 Difficulty: Just Right | ⏱️ Pacing: Just Right
3
3
15
📚 Good Balance
Quality Assessment
Poor Fair Good Very Good Excellent
Content relevance to my work*
Workshop organization & structure
Quality of materials/handouts
Hands-on exercises & activities
Real-world examples used
Clear learning objectives
Facilitator Evaluation
0/5
0/5
0/5
0/5
Learning Outcomes
Not confident
Very confident
Not confident
Very confident
Recommendation
 
Additional Comments
Feedback Summary
📝 Workshop Feedback Summary ══════════════════════════════ ⭐ Overall Rating: 0/5 (Needs Improvement) 📊 Difficulty: Just Right ⏱️ Pacing: Just Right
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
export function workshopFeedbackSurvey(form: FormTs) {
// Workshop Feedback - Post-workshop evaluation form
// Demonstrates: StarRating, Slider, MatrixQuestion, RatingScale (Likert), RadioButton, conditional visibility
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Workshop Feedback',
computedValue: () => 'Your feedback helps us create better learning experiences.',
customStyles: {
backgroundColor: '#7c3aed',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Workshop Details
// ============================================
const detailsSection = form.addSubform('detailsSection', {
title: 'Workshop Information'
});
 
detailsSection.addRow(row => {
row.addTextbox('workshopName', {
label: 'Workshop name/title',
placeholder: 'e.g., Advanced JavaScript Workshop'
}, '1fr');
row.addDatepicker('workshopDate', {
label: 'Date attended',
maxDate: () => new Date().toISOString().split('T')[0]
}, '1fr');
});
 
detailsSection.addRow(row => {
row.addDropdown('experienceLevel', {
label: 'Your experience level before the workshop',
options: [
{ id: 'beginner', name: 'Beginner - New to this topic' },
{ id: 'intermediate', name: 'Intermediate - Some experience' },
{ id: 'advanced', name: 'Advanced - Experienced practitioner' },
{ id: 'expert', name: 'Expert - Deep expertise' }
]
});
});
 
// ============================================
// SECTION 2: Overall Satisfaction
// ============================================
const satisfactionSection = form.addSubform('satisfactionSection', {
title: 'Overall Satisfaction',
customStyles: () => {
const rating = satisfactionSection.starRating('overall')?.value();
if (rating === null || rating === undefined) return { padding: '16px' };
if (rating >= 4) return { backgroundColor: '#ede9fe', padding: '16px', borderRadius: '8px' };
if (rating >= 3) return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
}
});
 
satisfactionSection.addRow(row => {
row.addStarRating('overall', {
label: 'How would you rate this workshop overall?',
maxStars: 5,
size: 'xl',
alignment: 'center',
showCounter: true,
showConfettiOnMax: true
});
});
 
satisfactionSection.addRow(row => {
row.addEmojiRating('engagement', {
label: 'How engaged did you feel during the workshop?',
preset: 'satisfaction',
size: 'md',
showLabels: true,
alignment: 'center',
isVisible: () => satisfactionSection.starRating('overall')?.value() !== null
});
});
 
// ============================================
// SECTION 3: Content & Pacing
// ============================================
const contentSection = form.addSubform('contentSection', {
title: 'Content & Pacing',
isVisible: () => satisfactionSection.starRating('overall')?.value() !== null
});
 
contentSection.addRow(row => {
row.addSlider('difficulty', {
label: 'Difficulty level',
min: 1,
max: 5,
step: 1,
showValue: true,
unit: '',
defaultValue: 3
}, '1fr');
row.addSlider('pacing', {
label: 'Pacing of the workshop',
min: 1,
max: 5,
step: 1,
showValue: true,
unit: '',
defaultValue: 3
}, '1fr');
});
 
contentSection.addRow(row => {
row.addTextPanel('scaleLabels', {
computedValue: () => {
const difficulty = contentSection.slider('difficulty')?.value() || 3;
const pacing = contentSection.slider('pacing')?.value() || 3;
 
const diffLabels = ['Too Easy', 'Easy', 'Just Right', 'Challenging', 'Too Difficult'];
const paceLabels = ['Too Slow', 'Slow', 'Just Right', 'Fast', 'Too Fast'];
 
return `📊 Difficulty: ${diffLabels[difficulty - 1]} | ⏱️ Pacing: ${paceLabels[pacing - 1]}`;
},
customStyles: {
backgroundColor: '#f5f3ff',
padding: '12px',
borderRadius: '8px',
textAlign: 'center',
fontSize: '14px'
}
});
});
 
contentSection.addRow(row => {
row.addSlider('practicalBalance', {
label: 'Balance between theory and hands-on practice',
min: 1,
max: 5,
step: 1,
showValue: true,
defaultValue: 3
});
});
 
contentSection.addRow(row => {
row.addTextPanel('balanceLabel', {
computedValue: () => {
const balance = contentSection.slider('practicalBalance')?.value() || 3;
const labels = ['All Theory', 'Mostly Theory', 'Good Balance', 'Mostly Hands-on', 'All Hands-on'];
return `📚 ${labels[balance - 1]}`;
},
customStyles: {
backgroundColor: '#f5f3ff',
padding: '8px 12px',
borderRadius: '6px',
textAlign: 'center',
fontSize: '13px'
}
});
});
 
// ============================================
// SECTION 4: Workshop Quality Matrix
// ============================================
const qualitySection = form.addSubform('qualitySection', {
title: 'Quality Assessment',
isVisible: () => satisfactionSection.starRating('overall')?.value() !== null
});
 
qualitySection.addRow(row => {
row.addMatrixQuestion('qualityMatrix', {
label: 'Please rate the following aspects',
rows: [
{ id: 'relevance', label: 'Content relevance to my work', isRequired: true },
{ id: 'organization', label: 'Workshop organization & structure' },
{ id: 'materials', label: 'Quality of materials/handouts' },
{ id: 'exercises', label: 'Hands-on exercises & activities' },
{ id: 'examples', label: 'Real-world examples used' },
{ id: 'objectives', label: 'Clear learning objectives' }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 5: Facilitator Rating
// ============================================
const facilitatorSection = form.addSubform('facilitatorSection', {
title: 'Facilitator Evaluation',
isVisible: () => satisfactionSection.starRating('overall')?.value() !== null
});
 
facilitatorSection.addRow(row => {
row.addStarRating('facilitatorKnowledge', {
label: 'Subject matter expertise',
maxStars: 5,
size: 'md',
alignment: 'left'
}, '1fr');
row.addStarRating('facilitatorPresentation', {
label: 'Presentation skills',
maxStars: 5,
size: 'md',
alignment: 'left'
}, '1fr');
});
 
facilitatorSection.addRow(row => {
row.addStarRating('facilitatorEngagement', {
label: 'Ability to engage participants',
maxStars: 5,
size: 'md',
alignment: 'left'
}, '1fr');
row.addStarRating('facilitatorQuestions', {
label: 'Handling of questions',
maxStars: 5,
size: 'md',
alignment: 'left'
}, '1fr');
});
 
// ============================================
// SECTION 6: Learning Outcomes
// ============================================
const learningSection = form.addSubform('learningSection', {
title: 'Learning Outcomes',
isVisible: () => satisfactionSection.starRating('overall')?.value() !== null
});
 
learningSection.addRow(row => {
row.addRatingScale('confidenceBefore', {
label: 'Your confidence level BEFORE the workshop',
preset: 'likert-5',
lowLabel: 'Not confident',
highLabel: 'Very confident',
size: 'sm'
});
});
 
learningSection.addRow(row => {
row.addRatingScale('confidenceAfter', {
label: 'Your confidence level AFTER the workshop',
preset: 'likert-5',
lowLabel: 'Not confident',
highLabel: 'Very confident',
size: 'sm'
});
});
 
learningSection.addRow(row => {
row.addTextPanel('confidenceChange', {
computedValue: () => {
const before = learningSection.ratingScale('confidenceBefore')?.value();
const after = learningSection.ratingScale('confidenceAfter')?.value();
 
if (before === null || before === undefined || after === null || after === undefined) {
return '';
}
 
const change = after - before;
if (change > 0) return `📈 Confidence increased by ${change} level${change > 1 ? 's' : ''}!`;
if (change < 0) return `📉 Confidence decreased by ${Math.abs(change)} level${Math.abs(change) > 1 ? 's' : ''}`;
return '➡️ Confidence level unchanged';
},
customStyles: () => {
const before = learningSection.ratingScale('confidenceBefore')?.value();
const after = learningSection.ratingScale('confidenceAfter')?.value();
const change = (after || 0) - (before || 0);
 
const base = { padding: '10px', borderRadius: '6px', textAlign: 'center', fontSize: '14px' };
if (change > 0) return { ...base, backgroundColor: '#d1fae5', color: '#065f46' };
if (change < 0) return { ...base, backgroundColor: '#fee2e2', color: '#991b1b' };
return { ...base, backgroundColor: '#f3f4f6', color: '#374151' };
},
isVisible: () => {
const before = learningSection.ratingScale('confidenceBefore')?.value();
const after = learningSection.ratingScale('confidenceAfter')?.value();
return before !== null && before !== undefined && after !== null && after !== undefined;
}
});
});
 
learningSection.addRow(row => {
row.addThumbRating('wouldApply', {
label: 'Will you apply what you learned?',
size: 'lg',
showLabels: true,
upLabel: 'Yes, definitely!',
downLabel: 'Probably not',
alignment: 'center'
});
});
 
// ============================================
// SECTION 7: Recommendations
// ============================================
const recommendSection = form.addSubform('recommendSection', {
title: 'Recommendation',
isVisible: () => satisfactionSection.starRating('overall')?.value() !== null
});
 
recommendSection.addRow(row => {
row.addRadioButton('recommend', {
label: 'Would you recommend this workshop to colleagues?',
options: [
{ id: 'definitely', name: 'Definitely yes' },
{ id: 'probably', name: 'Probably yes' },
{ id: 'maybe', name: 'Maybe' },
{ id: 'probablyNot', name: 'Probably not' },
{ id: 'definitelyNot', name: 'Definitely not' }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 8: Open Feedback
// ============================================
const feedbackSection = form.addSubform('feedbackSection', {
title: 'Additional Comments',
isVisible: () => satisfactionSection.starRating('overall')?.value() !== null
});
 
feedbackSection.addRow(row => {
row.addTextarea('bestPart', {
label: 'What was the most valuable part of the workshop?',
placeholder: 'Share what resonated with you most...',
rows: 2,
autoExpand: true
});
});
 
feedbackSection.addSpacer();
 
feedbackSection.addRow(row => {
row.addTextarea('improvements', {
label: () => {
const rating = satisfactionSection.starRating('overall')?.value();
if (rating !== null && rating !== undefined && rating <= 3) {
return 'What should we improve for future workshops?';
}
return 'Any suggestions for improvement? (Optional)';
},
placeholder: 'Your ideas help us create better workshops...',
rows: 2,
autoExpand: true
});
});
 
// ============================================
// SECTION 9: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Feedback Summary',
isVisible: () => satisfactionSection.starRating('overall')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summary', {
computedValue: () => {
const overall = satisfactionSection.starRating('overall')?.value();
const difficulty = contentSection.slider('difficulty')?.value();
const pacing = contentSection.slider('pacing')?.value();
const before = learningSection.ratingScale('confidenceBefore')?.value();
const after = learningSection.ratingScale('confidenceAfter')?.value();
const recommend = recommendSection.radioButton('recommend')?.value();
const wouldApply = learningSection.thumbRating('wouldApply')?.value();
 
if (overall === null || overall === undefined) return '';
 
let emoji = overall >= 4 ? '🎓' : overall >= 3 ? '📚' : '📝';
let status = overall >= 4 ? 'Excellent' : overall >= 3 ? 'Good' : 'Needs Improvement';
 
let summary = `${emoji} Workshop Feedback Summary\n`;
summary += `${'═'.repeat(30)}\n\n`;
summary += `⭐ Overall Rating: ${overall}/5 (${status})\n`;
 
if (difficulty) {
const diffLabels = ['Too Easy', 'Easy', 'Just Right', 'Challenging', 'Too Difficult'];
summary += `📊 Difficulty: ${diffLabels[difficulty - 1]}\n`;
}
 
if (pacing) {
const paceLabels = ['Too Slow', 'Slow', 'Just Right', 'Fast', 'Too Fast'];
summary += `⏱️ Pacing: ${paceLabels[pacing - 1]}\n`;
}
 
if (before !== null && before !== undefined && after !== null && after !== undefined) {
const change = after - before;
const arrow = change > 0 ? '📈' : change < 0 ? '📉' : '➡️';
summary += `${arrow} Confidence: ${before} → ${after} (${change > 0 ? '+' : ''}${change})\n`;
}
 
if (wouldApply) {
summary += `🎯 Will apply: ${wouldApply === 'up' ? 'Yes' : 'No'}\n`;
}
 
if (recommend) {
const recLabels: Record<string, string> = {
'definitely': '👍👍 Definitely recommend',
'probably': '👍 Probably recommend',
'maybe': '🤔 Maybe',
'probablyNot': '👎 Probably not',
'definitelyNot': '👎👎 Would not recommend'
};
summary += `\n${recLabels[recommend] || recommend}`;
}
 
return summary;
},
customStyles: () => {
const rating = satisfactionSection.starRating('overall')?.value();
const base = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '13px'
};
 
if (rating !== null && rating !== undefined && rating >= 4) {
return { ...base, backgroundColor: '#ede9fe', borderLeft: '4px solid #7c3aed' };
} else if (rating !== null && rating !== undefined && rating <= 2) {
return { ...base, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return { ...base, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => satisfactionSection.starRating('overall')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank you for your feedback!',
message: 'Your insights will help us improve future workshops and create better learning experiences for everyone.'
});
}
 

Frequently Asked Questions

When should I send the workshop feedback form?

Send it immediately after the workshop ends, ideally within 24 hours. If possible, build 5-10 minutes at the end of the session for participants to complete it on-site. Response rates drop significantly after 48 hours.

How do I measure practical value vs theoretical learning?

The form includes specific questions about hands-on activities, real-world applicability, and skill confidence before/after. The slider for 'practical vs theoretical' balance gives you direct insight into participant perception.

Can I track skill development over time?

Yes, the form captures pre/post confidence levels. For long-term tracking, consider sending a follow-up survey 30-60 days later asking which skills participants have applied in their work.

How should I handle facilitator feedback?

The form separates content feedback from facilitator feedback. Share aggregate facilitator scores with your trainers for professional development, but be thoughtful about sharing individual negative comments.

What's a good workshop satisfaction score?

For professional training, aim for 4.2+/5 stars on content relevance and 4.5+/5 on facilitator effectiveness. Pacing should ideally be rated 'just right' by 70%+ of participants. Anything below 3.5 requires immediate attention.