I have the following class in Pharo
WARestfulHandler subclass: #PgUserAddHandler
instanceVariableNames: ' employeeId'
classVariableNames: ''
poolDictionaries: ''
category: 'abc-Model'
I want to implement a function which renders a page of a WAComponent class, something like shown below from within the above class.
searchFor: aString
<get>
<path: '/userAdd?add={aString}'>
self render: (PgEmployeeRegisterComponent new) employeeId:aString.
Please help !!
Thanks in advance !!