Convert a simple view to a Kanban.
- Entities
- Views
- Sub Grids
The component needs that the attribute statuscode is present on the view.
The [managed]TBD solution is ideal for non developers. Import and use.
The PCF call a Action (process) to obtain informations about the statuscode of entity, import the [unmanaged]TBD solution with the action 'vnb_RetrieveOptionSetMetadata' to tests.
- All options are based on statusocde.
- Drag and drop the cards between the status.
- Colors respect the option set definitions.
- Attributes will be displayed based on the associated view and if they has value.
- With a double click, access the form record.
- Specials status change: WonOpportunity, IncidentResolution, CloseQuoteRequest, etc..
- Views without the attribute statuscode.
Change the attribute body from 'string' to 'ReadableStream':
interface ExecuteResponse {
/**
* (Optional). Object.Response body.
*/
body: ReadableStream;
/** * Interface for the WebAPI Execute request response / interface ExecuteResponse { /* * (Optional). Object.Response body. / body: ReadableStream; /* * Response headers. / headers: any; /* * Indicates whether the request was successful. / ok: boolean; /* * Numeric value in the response status code. * @example 200 / status: number; /* * Description of the response status code. * @example "OK" / statusText: string; /* * Response type.Values are: the empty string (default), "arraybuffer", "blob", "document", "json", and "text". / type: string; /* * Request URL of the action, function, or CRUD request that was sent to the Web API endpoint. */ url: string; }