How to format the Value column of the WebGrid? Example of 3000,000 for 3,000.00 ?
@grid.GetHtml(
tableStyle: "webgrid",
headerStyle: "header",
alternatingRowStyle: "alt",
selectedRowStyle: "select",
footerStyle: "footer",
columns: grid.Columns(
grid.Column("", format: @<text><div style="float:left; width:100%"><div style="float:left; width:75%"><strong>Fornecedor:</strong> @item.NomeFantasia</div><div style="float:left; width:25%"> <strong>Data Venc.:</strong> @item.DtVencimento.ToString("dd/MM/yyyy") </div></div><br /><div style="float:left; width:75%"> <strong>Valor Doc.:</strong> @item.ValorDocumento</div><div style="float:left; width:25%"> <strong>Situação:</strong> @item.NmTipoSituacao</div><br /><div style="float:left; width:100%"> <strong>Descrição:</strong> @item.DsMovimento</div></text>)
)
)