Cuando tengan este error al ejecutar ng serve, deben de ejecutar previamente el siguiente scripts.
Set-ExecutionPolicy Unrestricted
posteriormente ejecutar ng serve
Cuando tengan este error al ejecutar ng serve, deben de ejecutar previamente el siguiente scripts.
Set-ExecutionPolicy Unrestricted
posteriormente ejecutar ng serve
Estimados , de hecho si llegaste aqui, es porque no has encontrado este codigo facilmente por internet, pues aqui te lo paso.
int columnIndex = 0;
foreach (GridViewRow row in oGridView.Rows)
{
foreach (DataControlFieldCell cell in row.Cells)
{
if (cell.ContainingField is BoundField)
if (((BoundField)cell.ContainingField).DataField.Equals("Cantidad"))
{
}
else
{
//cell.CssClass = "text";
cell.Attributes.Add("style", "mso-number-format:\\@");
}
columnIndex++; // keep adding 1 while we don't have the correct name
}
}