Trade Service Feedback Form

This comprehensive trade service feedback form helps homeowners and businesses provide detailed reviews of trade professionals. It covers all aspects of the service experience including punctuality, workmanship quality, professionalism, cleanliness, pricing transparency, and overall satisfaction. With conditional follow-up questions and recommendation tracking, the form generates actionable feedback that helps improve service quality and build contractor reputation.

Specialized

Try the Form

Help us improve by sharing your experience
Service Information
 
 
 
 
Punctuality & Communication
0/5
0/5
 
Workmanship & Quality
0/5
0/5
Excellent Good Fair Poor N/A
Accurate problem diagnosis
Effective solution provided
Work completed as promised
Quality of materials used
 
Professionalism & Conduct
0/5
0/5
Pricing & Value
0/5
0/5
 
Overall Experience
Not at all likely
Extremely likely
 
Areas for Improvement
 
 
Additional Comments
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
export function tradeServiceFeedback(form: FormTs) {
// Trade Service Feedback Form - Contractor/Tradesperson Review
// Demonstrates: StarRating, EmojiRating, SuggestionChips, RadioButton, conditional sections
 
// ============================================
// STATE
// ============================================
const overallSatisfied = form.state(true);
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Trade Service Feedback',
computedValue: () => 'Help us improve by sharing your experience',
customStyles: {
backgroundColor: '#ea580c',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Service Information
// ============================================
const serviceInfo = form.addSubform('serviceInfo', {
title: 'Service Information'
});
 
serviceInfo.addRow(row => {
row.addDropdown('tradeType', {
label: 'Type of Trade Service',
options: [
{ id: 'plumbing', name: 'Plumbing' },
{ id: 'electrical', name: 'Electrical' },
{ id: 'hvac', name: 'HVAC / Air Conditioning' },
{ id: 'carpentry', name: 'Carpentry' },
{ id: 'painting', name: 'Painting' },
{ id: 'roofing', name: 'Roofing' },
{ id: 'flooring', name: 'Flooring' },
{ id: 'landscaping', name: 'Landscaping' },
{ id: 'general', name: 'General Contractor' },
{ id: 'handyman', name: 'Handyman Services' },
{ id: 'appliance', name: 'Appliance Repair' },
{ id: 'other', name: 'Other' }
],
isRequired: true,
placeholder: 'Select the service type'
}, '1fr');
row.addTextbox('companyName', {
label: 'Company/Contractor Name',
placeholder: 'Enter company or contractor name'
}, '1fr');
});
 
serviceInfo.addRow(row => {
row.addTextbox('technicianName', {
label: 'Technician Name (if known)',
placeholder: 'Name of the person who performed the service'
}, '1fr');
row.addDatepicker('serviceDate', {
label: 'Date of Service',
isRequired: true,
defaultValue: new Date().toISOString().slice(0, 10)
}, '1fr');
});
 
serviceInfo.addRow(row => {
row.addTextarea('workDescription', {
label: 'Brief Description of Work Performed',
placeholder: 'Describe the service or repair work...',
rows: 2,
isRequired: true
});
});
 
// ============================================
// SECTION 2: Punctuality & Communication
// ============================================
const punctualitySection = form.addSubform('punctuality', {
title: 'Punctuality & Communication',
customStyles: { backgroundColor: '#fff7ed', padding: '16px', borderRadius: '8px' }
});
 
punctualitySection.addRow(row => {
row.addStarRating('arrivalPunctuality', {
label: 'Arrived on time / within scheduled window',
maxStars: 5,
size: 'lg',
showCounter: true
}, '1fr');
row.addStarRating('communication', {
label: 'Communication (scheduling, updates)',
maxStars: 5,
size: 'lg',
showCounter: true
}, '1fr');
});
 
punctualitySection.addRow(row => {
row.addRadioButton('appointmentKept', {
label: 'Was the appointment kept as scheduled?',
options: [
{ id: 'on-time', name: 'Yes, on time' },
{ id: 'late-15', name: 'Late by 15-30 minutes' },
{ id: 'late-30', name: 'Late by 30+ minutes' },
{ id: 'rescheduled', name: 'Had to reschedule' },
{ id: 'no-show', name: 'No show / missed appointment' }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 3: Workmanship & Quality
// ============================================
const qualitySection = form.addSubform('quality', {
title: 'Workmanship & Quality',
customStyles: { backgroundColor: '#f0fdf4', padding: '16px', borderRadius: '8px' }
});
 
qualitySection.addRow(row => {
row.addStarRating('workQuality', {
label: 'Quality of Work',
maxStars: 5,
size: 'lg',
showCounter: true,
showConfettiOnMax: true
}, '1fr');
row.addStarRating('technicalSkill', {
label: 'Technical Skill & Expertise',
maxStars: 5,
size: 'lg',
showCounter: true
}, '1fr');
});
 
qualitySection.addRow(row => {
row.addMatrixQuestion('qualityDetails', {
label: 'Evaluate specific aspects of the work:',
rows: [
{ id: 'diagnosis', label: 'Accurate problem diagnosis' },
{ id: 'solution', label: 'Effective solution provided' },
{ id: 'completion', label: 'Work completed as promised' },
{ id: 'materials', label: 'Quality of materials used' }
],
columns: [
{ id: 'excellent', label: 'Excellent' },
{ id: 'good', label: 'Good' },
{ id: 'fair', label: 'Fair' },
{ id: 'poor', label: 'Poor' },
{ id: 'na', label: 'N/A' }
],
fullWidth: true
});
});
 
qualitySection.addRow(row => {
row.addRadioButton('issueResolved', {
label: 'Was your issue fully resolved?',
options: [
{ id: 'yes', name: 'Yes, completely resolved' },
{ id: 'mostly', name: 'Mostly resolved, minor issues remain' },
{ id: 'partial', name: 'Partially resolved' },
{ id: 'no', name: 'No, issue not resolved' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 4: Professionalism
// ============================================
const professionalismSection = form.addSubform('professionalism', {
title: 'Professionalism & Conduct',
customStyles: { backgroundColor: '#eff6ff', padding: '16px', borderRadius: '8px' }
});
 
professionalismSection.addRow(row => {
row.addStarRating('professionalBehavior', {
label: 'Professional Behavior',
maxStars: 5,
size: 'lg',
showCounter: true
}, '1fr');
row.addStarRating('cleanliness', {
label: 'Cleanliness (left area clean)',
maxStars: 5,
size: 'lg',
showCounter: true
}, '1fr');
});
 
professionalismSection.addRow(row => {
row.addSuggestionChips('positiveTraits', {
label: 'What did the technician do well? (select all that apply)',
suggestions: [
{ id: 'courteous', name: 'Courteous & respectful' },
{ id: 'knowledgeable', name: 'Knowledgeable' },
{ id: 'explained', name: 'Explained the work' },
{ id: 'efficient', name: 'Worked efficiently' },
{ id: 'clean', name: 'Cleaned up after' },
{ id: 'protective', name: 'Protected property' },
{ id: 'uniform', name: 'Professional appearance' },
{ id: 'patient', name: 'Patient with questions' }
],
alignment: 'left'
});
});
 
// ============================================
// SECTION 5: Pricing & Value
// ============================================
const pricingSection = form.addSubform('pricing', {
title: 'Pricing & Value'
});
 
pricingSection.addRow(row => {
row.addStarRating('priceTransparency', {
label: 'Pricing Transparency',
maxStars: 5,
size: 'lg',
showCounter: true
}, '1fr');
row.addStarRating('valueForMoney', {
label: 'Value for Money',
maxStars: 5,
size: 'lg',
showCounter: true
}, '1fr');
});
 
pricingSection.addRow(row => {
row.addRadioButton('pricingAccuracy', {
label: 'Was the final price as quoted/estimated?',
options: [
{ id: 'exact', name: 'Exact as quoted' },
{ id: 'close', name: 'Within 10% of estimate' },
{ id: 'higher', name: 'Higher than estimated' },
{ id: 'lower', name: 'Lower than estimated' },
{ id: 'no-quote', name: 'No quote provided upfront' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 6: Overall Experience
// ============================================
const overallSection = form.addSubform('overall', {
title: 'Overall Experience'
});
 
overallSection.addRow(row => {
row.addEmojiRating('overallSatisfaction', {
label: 'Overall, how satisfied are you with this service?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center',
onValueChange: (value) => {
const satisfied = value === 'good' || value === 'excellent';
overallSatisfied.set(satisfied);
}
});
});
 
overallSection.addRow(row => {
row.addRatingScale('recommendScore', {
label: 'How likely are you to recommend this service to others?',
preset: 'nps',
showCategoryLabel: true,
showSegmentColors: true,
alignment: 'center'
});
});
 
overallSection.addRow(row => {
row.addRadioButton('wouldUseAgain', {
label: 'Would you use this service again?',
options: [
{ id: 'definitely', name: 'Definitely yes' },
{ id: 'probably', name: 'Probably yes' },
{ id: 'maybe', name: 'Maybe' },
{ id: 'probably-not', name: 'Probably not' },
{ id: 'definitely-not', name: 'Definitely not' }
],
orientation: 'horizontal'
});
});
 
// ============================================
// SECTION 7: Positive Feedback (for satisfied customers)
// ============================================
const positiveSection = form.addSubform('positive', {
title: 'What Went Well',
isVisible: () => overallSatisfied(),
customStyles: { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' }
});
 
positiveSection.addRow(row => {
row.addTextarea('whatWentWell', {
label: 'What did you like most about the service?',
placeholder: 'Tell us what impressed you...',
rows: 3
});
});
 
// ============================================
// SECTION 8: Improvement Feedback (for less satisfied customers)
// ============================================
const improvementSection = form.addSubform('improvement', {
title: 'Areas for Improvement',
isVisible: () => !overallSatisfied(),
customStyles: { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' }
});
 
improvementSection.addRow(row => {
row.addCheckboxList('issueAreas', {
label: 'What areas need improvement? (select all that apply)',
options: [
{ id: 'punctuality', name: 'Punctuality / Scheduling' },
{ id: 'communication', name: 'Communication' },
{ id: 'workmanship', name: 'Quality of work' },
{ id: 'professionalism', name: 'Professionalism' },
{ id: 'cleanliness', name: 'Cleanliness' },
{ id: 'pricing', name: 'Pricing / Transparency' },
{ id: 'other', name: 'Other issues' }
],
orientation: 'vertical'
});
});
 
improvementSection.addSpacer();
 
improvementSection.addRow(row => {
row.addTextarea('whatToImprove', {
label: 'Please describe what could be improved:',
placeholder: 'Share specific details about your concerns...',
rows: 4,
isRequired: () => !overallSatisfied()
});
});
 
// ============================================
// SECTION 9: Additional Comments
// ============================================
const commentsSection = form.addSubform('comments', {
title: 'Additional Comments'
});
 
commentsSection.addRow(row => {
row.addTextarea('additionalComments', {
label: 'Any other comments or feedback?',
placeholder: 'Share any additional thoughts...',
rows: 3
});
});
 
commentsSection.addRow(row => {
row.addCheckbox('canContact', {
label: 'You may contact me about my feedback'
});
});
 
commentsSection.addRow(row => {
row.addEmail('contactEmail', {
label: 'Email address',
placeholder: 'your@email.com',
isVisible: () => commentsSection.checkbox('canContact')?.value() === true
}, '1fr');
row.addTextbox('contactPhone', {
label: 'Phone number (optional)',
placeholder: 'Your phone number',
isVisible: () => commentsSection.checkbox('canContact')?.value() === true
}, '1fr');
});
 
// ============================================
// SECTION 10: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Feedback Summary',
isVisible: () => {
const satisfaction = overallSection.emojiRating('overallSatisfaction')?.value();
return !!satisfaction;
}
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const tradeType = serviceInfo.dropdown('tradeType')?.value();
const company = serviceInfo.textbox('companyName')?.value();
const satisfaction = overallSection.emojiRating('overallSatisfaction')?.value();
const nps = overallSection.ratingScale('recommendScore')?.value();
const useAgain = overallSection.radioButton('wouldUseAgain')?.value();
 
const tradeNames: Record<string, string> = {
'plumbing': 'Plumbing', 'electrical': 'Electrical',
'hvac': 'HVAC', 'carpentry': 'Carpentry',
'painting': 'Painting', 'roofing': 'Roofing',
'general': 'General Contractor', 'handyman': 'Handyman'
};
 
const satisfactionLabels: Record<string, string> = {
'very-bad': 'Very Dissatisfied',
'bad': 'Dissatisfied',
'neutral': 'Neutral',
'good': 'Satisfied',
'excellent': 'Very Satisfied'
};
 
let emoji = '';
if (satisfaction === 'excellent') emoji = '';
else if (satisfaction === 'good') emoji = '';
else if (satisfaction === 'neutral') emoji = '';
else emoji = '';
 
let summary = `${emoji} FEEDBACK SUMMARY\n`;
summary += ''.repeat(30) + '\n\n';
summary += `Service Type: ${tradeNames[tradeType || ''] || tradeType || 'Not specified'}\n`;
if (company) summary += `Company: ${company}\n`;
summary += `\nOverall Satisfaction: ${satisfactionLabels[satisfaction || ''] || 'Not rated'}\n`;
if (nps !== null && nps !== undefined) summary += `Recommendation Score: ${nps}/10\n`;
if (useAgain) {
const useAgainLabels: Record<string, string> = {
'definitely': 'Definitely Yes',
'probably': 'Probably Yes',
'maybe': 'Maybe',
'probably-not': 'Probably Not',
'definitely-not': 'Definitely Not'
};
summary += `Would Use Again: ${useAgainLabels[useAgain] || useAgain}\n`;
}
 
return summary;
},
customStyles: () => {
const satisfaction = overallSection.emojiRating('overallSatisfaction')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (satisfaction === 'excellent' || satisfaction === 'good') {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #059669' };
} else if (satisfaction === 'neutral') {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #d97706' };
}
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #dc2626' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback'
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your feedback helps tradespeople improve their services and helps other customers make informed decisions. We appreciate you taking the time to share your experience.'
});
}
 

Frequently Asked Questions

Why is trade service feedback important?

Feedback helps tradespeople improve their services and helps other customers make informed decisions. Detailed reviews contribute to a culture of quality and accountability in the trades industry.

What trades can I review with this form?

This form works for any trade service including plumbers, electricians, HVAC technicians, carpenters, painters, roofers, landscapers, general contractors, and other home service professionals.

Is my feedback anonymous?

Contact information is optional. You can provide anonymous feedback, though including contact details allows the service provider to follow up on any issues or concerns you raise.

How detailed should my feedback be?

The more specific your feedback, the more useful it is. Include details about what the technician did well, any issues encountered, and whether the work met your expectations. Specific examples are most helpful.

What if I had a negative experience?

Honest feedback about negative experiences is valuable. The form includes sections for improvement suggestions. If you had significant issues, consider contacting the company directly as well to seek resolution.