Can a Gantt chart display required information in another language?

As shown in the image below, other text in this new window has been changed to Chinese. I would like to ask how to change the required field message in this input box to Chinese or another language.

1718334981163.jpg


1 Reply 1 reply marked as answer

SJ Sridharan Jayabalan Syncfusion Team June 14, 2024 02:29 PM UTC

Lumax,

 

Greetings from Syncfusion.

 

For this query, we suggest you to use actionBegin event to achieve your requirement. Inside the event, we can able to manually write the error message. Refer code snippet for more information. 

 

Code-Snippet:   

actionBegin(args) {

    args.Dependency.columns[1].validationRules = {

      required: [true, '此字段是必需的'],

    };

  }

 

Sample - Ojwccs (forked) - StackBlitz

Documentation - Validation in EJ2 TypeScript Grid control | Syncfusion

 

 

 

 

Regards,

Sridharan


Marked as answer
Loader.
Up arrow icon