You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OboutSuite/Grid/aspnet_columns_applyformat....

16 lines
389 B

<%@ Page Language="C#" %>
<%@ Register TagPrefix="obout" Namespace="Obout.Grid" Assembly="obout_Grid_NET" %>
<script runat="server" Language="C#">
void Page_Load(object sender, EventArgs e)
{
for (int i = 0; i < grid1.Columns.Count; i++)
{
grid1.Columns[i].ApplyFormatInEditMode = chkSwitchFormatting.Checked;
}
}
</script>
<html>
<head>