function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
kishorekumar Appikondakishorekumar Appikonda 

When Exporting/creating Document by using visualforce page, un checked checkbox values are getting with Cross symbol in document. I dont want to get any cross symbol with in document. could you please share your ideas on this.


<apex:page standardController="Account" extensions="TestController" showHeader="false" standardStylesheets="false" contentType="application/msWord#TestDocument.doc" cache="true" >
..............................
User-added image
Abhi_TripathiAbhi_Tripathi
Whereever you are using checkboxes, convert the values in string format

String.valueOf(YOUR_CHECKBOX_FIELD);

Hope this helps, let me know if you find any issue

Abhi
if this answer helped you then Mark this answer as right for the help of others