
I added the project task description next to the project task field in the classic version, but in the modern version, the project task description field is placed at the end, as shown in the image. How can I make the project task description next to the project task in the modern version?
This is the code I tried to write, but it's not working.
.ts
import {
PXFieldState
} from "client-controls";
import { AR301000,ARTran } from "src/screens/AR/AR301000/AR301000";
export interface AR301000_SKModernUICST extends AR301000 {}
export class AR301000_SKModernUICST {}
export interface ARTran_SKModernUICST extends ARTran {}
export class ARTran_SKModernUICST {
ARTran__TaskID_description: PXFieldState;
}
.html
<template>
<qp-grid id="gridDetails" view.bind="Transactions" wg-container="Transactions_grid">
<field name="TaskID"></field>
<field name="TaskID_description"></field>
</qp-grid>
</template>
