Could not change on label/off label column yes/no to VietNamese on display form

Hi Plumsail,
We used Plumsail form for SharePoint online with Vietnamese language config
On form New, Edit change text onlabel/offlabel run ok ,but on form display this not work
We attach screenshot for you.
Form New



Form Display


Please help me,

Thanks

Hi!

Please add this code to your Display Form JavaScript Editor:

fd.spRendered(function() {
	if (fd.field('Checkbox').value == 'Yes') {
		fd.field('Checkbox').$el.innerText = "NewText";
	}
});

Notice that you should replace “Checkbox” with an internal name of your field.

Yes, thank you so much.