Try setting the DefaultValue member of the underlying DataTable.Columns element for the column. So, if you you an column whose mappingname is "textBody", then
sqlDataAdapter1.Fill(this.dataSet11, "FAQEntries");
this.dataGrid1.DataSource = this.dataSet11.Tables["FAQEntries"];
DataTable dt = this.dataSet11.Tables["FAQEntries"];
dt.Columns["textBody"].DefaultValue = "";