...
label
: is the employee side labeltexts
: is used for citizen side step formcomponent
: the component that is to be rendered here. Any component can be created to show here, examples can be seen at pageComponents, These components are passed following paramst
: translate function to be used to convert a key to localized text. e.g.,t("CS_CREATECOMPLAINT_MOHALLA")
config
: current step config as shown aboveonSelect
: on clicking of next or input, this handled to be called to save the data in the form stateuserType
:employee
orcitizen
formData
: the current form state.
Customizing views
Use the followings to customizations are available:
...
Code Block |
---|
getApplicationDetailsTableRows: ({ id, service, role, t }) => { if (role === "CITIZEN") { return { CS_FSM_APPLICATION_APPLICATION_NO: service.applicationNo, CS_FSM_APPLICATION_DETAIL_STATUS: t("CS_COMMON_" + service.applicationStatus), ... }; } return {}; } |
FAQ
In addition to any FAQs of the main implementation document.
...