使用ComponentOne C1WebGrid控件「建议收藏」

使用ComponentOne C1WebGrid控件「建议收藏」作者:SinoryComponentOne.Studio.Enterprise.2006中的(C1StudioAspNET2_T106)是著名的C1开发的针对ASP.NET2.0的一套控件库.为ASP.NET开发人员提供了功能丰富的Web开发组件。包括个表格,报表,图表,数据,用户界面和电子商务组件等支持.C1WebGrid是其中最基本的控件之一.下面介绍它的具体应用方法:添加引用:<…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

作者:Sinory
ComponentOne.Studio.Enterprise.2006中的(C1StudioAspNET2_T106)是著名的C1开发的针对ASP.NET2.0的一套控件库.为ASP.NET开发人员提供了功能丰富的Web开发组件。包括个表格,报表,图表,数据,用户界面和电子商务组件等支持.C1WebGrid是其中最基本的控件之一.
下面介绍它的具体应用方法:
添加引用:

使用ComponentOne C1WebGrid控件「建议收藏」
使用ComponentOne C1WebGrid控件「建议收藏」
<%
使用ComponentOne C1WebGrid控件「建议收藏」
@ Register Assembly=C1.Web.C1WebGrid.2 Namespace=C1.Web.C1WebGrid TagPrefix=C1WebGrid 
%>

使用ComponentOne C1WebGrid控件「建议收藏」

在网页中添加定义

使用ComponentOne C1WebGrid控件「建议收藏」
             
<
c1webgrid:c1webgrid 
id
=”C1WGridResult”
 width
=”100%”
 runat
=”server”
 allowpaging
=”True”
 allowsorting
=”True”
 backcolor
=”White”
 bordercolor
=”#999999″
 borderstyle
=”Groove”
 borderwidth
=”1px”
 cellpadding
=”3″
 groupindent
=””
 pagesize
=”30″
 allowcolsizing
=”True”
 imagesortascending
=”~/images/up.gif”
 imagesortdescending
=”~/images/down.gif”
   onpageindexchanging
=”C1WGridResult_PageIndexChanged”
 onsortingcommand
=”C1WGridResult_SortingCommand”
 onitemdatabound
=”C1WGridResult_ItemDataBound”
 onitemcreated
=”C1WGridResult_ItemCreated”
>

使用ComponentOne C1WebGrid控件「建议收藏」                    

<
footerstyle 
backcolor
=”#CCCCCC”
 font-size
=”9pt”
 font-bold
=”False”
 font-italic
=”False”
 font-overline
=”False”

使用ComponentOne C1WebGrid控件「建议收藏」                        font-strikeout

=”False”
 font-underline
=”False”
 forecolor
=”Black”
  
/>

使用ComponentOne C1WebGrid控件「建议收藏」                    

<
selecteditemstyle 
backcolor
=”White”
 font-bold
=”False”
 font-italic
=”False”
 font-overline
=”False”

使用ComponentOne C1WebGrid控件「建议收藏」                        font-strikeout

=”False”
 font-underline
=”False”
 forecolor
=”White”
 
/>

使用ComponentOne C1WebGrid控件「建议收藏」                    

<
itemstyle 
backcolor
=”WhiteSmoke”
 font-size
=”9pt”
 font-bold
=”False”
 font-italic
=”False”
 font-overline
=”False”

使用ComponentOne C1WebGrid控件「建议收藏」                        font-strikeout

=”False”
 font-underline
=”False”
 forecolor
=”Black”
 horizontalalign
=”Left”
 bordercolor
=”#E0E0E0″
 borderstyle
=”Dashed”
 borderwidth
=”1px”
 wrap
=”False”
 
/>

使用ComponentOne C1WebGrid控件「建议收藏」                    

<
groupingstyle 
backcolor
=”White”
 bordercolor
=”Silver”
 borderwidth
=”1px”
 wrap
=”False”
></
groupingstyle
>

使用ComponentOne C1WebGrid控件「建议收藏」                    

<
pagerstyle 
backcolor
=”#DEDBDE”
 font-bold
=”False”
 font-italic
=”False”
 font-overline
=”False”

使用ComponentOne C1WebGrid控件「建议收藏」                        font-strikeout

=”False”
 font-underline
=”False”
 forecolor
=”Black”
 horizontalalign
=”Left”
 mode
=”NumericPages”
 borderstyle
=”Groove”
 borderwidth
=”1px”
 
/>

使用ComponentOne C1WebGrid控件「建议收藏」                    

<
headerstyle 
backcolor
=”#999999″
 font-size
=”9pt”
 height
=”25px”
 font-bold
=”True”
 font-italic
=”False”
 font-overline
=”False”
 
使用ComponentOne C1WebGrid控件「建议收藏」                        font-strikeout

=”False”
 font-underline
=”False”
 forecolor
=”Black”
 cssclass
=”C1WGridCss”
 wrap
=”False”
 
/>

使用ComponentOne C1WebGrid控件「建议收藏」                    

<
alternatingitemstyle 
backcolor
=”LightGray”
 font-bold
=”False”
 font-italic
=”False”
 font-overline
=”False”

使用ComponentOne C1WebGrid控件「建议收藏」                        font-strikeout

=”False”
 font-underline
=”False”
 bordercolor
=”#404040″
 borderstyle
=”Dotted”
 borderwidth
=”1px”
 
/>

使用ComponentOne C1WebGrid控件「建议收藏」                
使用ComponentOne C1WebGrid控件「建议收藏」            

</
c1webgrid:c1webgrid
>
 

下面介绍几个基本的属性:

allowpaging=”True” ——是否允许分页

allowsorting=”True”——是否允许排序

pagesize=”30″ ——页面包含的记录的条数

allowcolsizing=”True”——是否允许通过拖动改变列宽

imagesortascending=”~/images/arrow_up.gif”,imagesortdescending=”~/images/arrow_down.gif”   ——指定排序时在列首显示的图片   

onpageindexchanging=”C1WGridResult_PageIndexChanged” ——关联到分页处理函数onsortingcommand=”C1WGridResult_SortingCommand” ——关联到排序函数

onitemdatabound=”C1WGridResult_ItemDataBound” ——关联到数据绑定处理函数

onitemcreated=”C1WGridResult_ItemCreated”——在每个Item创建后触发

 onsortingcommand——处理排序示例

   //注意在设置WebGrid列时要指定每个列自己的SortExpression值,这个函数才能生效,该值一般为该列绑定到的列的列名。


使用ComponentOne C1WebGrid控件「建议收藏」
protected
 
void
 C1WGridResult_SortingCommand(
object
 sender, C1.Web.C1WebGrid.C1SortingCommandEventArgs e)
使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」    

使用ComponentOne C1WebGrid控件「建议收藏」
{

使用ComponentOne C1WebGrid控件「建议收藏」       
//用来记录排序方式
使用ComponentOne C1WebGrid控件「建议收藏」
        String SortDirection = ASC;
使用ComponentOne C1WebGrid控件「建议收藏」        
//用来记录排序表达式
使用ComponentOne C1WebGrid控件「建议收藏」
        String SortExpression = e.SortExpression.ToString();//得到当前选择排序的列的排序表达式
使用ComponentOne C1WebGrid控件「建议收藏」         
//如果为空则直接返回
使用ComponentOne C1WebGrid控件「建议收藏」
        if (SortExpression == “”return;
使用ComponentOne C1WebGrid控件「建议收藏」        
try
使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」        
使用ComponentOne C1WebGrid控件「建议收藏」{

使用ComponentOne C1WebGrid控件「建议收藏」            
//如果不为null
使用ComponentOne C1WebGrid控件「建议收藏」
            if (C1WGridResult.Attributes[SortExpression!= null)
使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」            
使用ComponentOne C1WebGrid控件「建议收藏」{

使用ComponentOne C1WebGrid控件「建议收藏」                
if (SortExpression == C1WGridResult.Attributes[SortExpression].ToString())
使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」                
使用ComponentOne C1WebGrid控件「建议收藏」{

使用ComponentOne C1WebGrid控件「建议收藏」                    SortDirection 
= (C1WGridResult.Attributes[SortDirection].ToString() == SortDirection ? DESC : ASC);//选择相反的排序方式
使用ComponentOne C1WebGrid控件「建议收藏」
                }

使用ComponentOne C1WebGrid控件「建议收藏」            }

使用ComponentOne C1WebGrid控件「建议收藏」            
else
使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」            
使用ComponentOne C1WebGrid控件「建议收藏」{

使用ComponentOne C1WebGrid控件「建议收藏」                SortDirection 
= DESC;//
使用ComponentOne C1WebGrid控件「建议收藏」
            }

使用ComponentOne C1WebGrid控件「建议收藏」    
//将上面得到的值附给WebGrid,然后重新绑定数据
使用ComponentOne C1WebGrid控件「建议收藏」
            C1WGridResult.Attributes[SortExpression= SortExpression;
使用ComponentOne C1WebGrid控件「建议收藏」            C1WGridResult.Attributes[
SortDirection= SortDirection;
使用ComponentOne C1WebGrid控件「建议收藏」            BindC1WGridResult();
使用ComponentOne C1WebGrid控件「建议收藏」        }

使用ComponentOne C1WebGrid控件「建议收藏」        
catch (Exception ex)
使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」        
使用ComponentOne C1WebGrid控件「建议收藏」{        
使用ComponentOne C1WebGrid控件「建议收藏」        }

使用ComponentOne C1WebGrid控件「建议收藏」    }


使用ComponentOne C1WebGrid控件「建议收藏」

 

使用ComponentOne C1WebGrid控件「建议收藏」
//
这里代码的目的是为了使不能排序的列,如模板列,的列
使用ComponentOne C1WebGrid控件「建议收藏」

//
头显示为文字形式而不是连接形式,因为在这个控件中,
使用ComponentOne C1WebGrid控件「建议收藏」

//
即使把列的SortExpression设置为空也还是会在列头处
使用ComponentOne C1WebGrid控件「建议收藏」

//
显示为一个linkbutton(和GridView不同)

使用ComponentOne C1WebGrid控件「建议收藏」

protected
 
void
 C1WGridResult_ItemCreated(
object
 sender, C1.Web.C1WebGrid.C1ItemEventArgs e)
使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」    

使用ComponentOne C1WebGrid控件「建议收藏」
{

使用ComponentOne C1WebGrid控件「建议收藏」        
try
使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」        
使用ComponentOne C1WebGrid控件「建议收藏」{

使用ComponentOne C1WebGrid控件「建议收藏」            
if (e.Item.ItemType == C1.Web.C1WebGrid.C1ListItemType.Header)
使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」            
使用ComponentOne C1WebGrid控件「建议收藏」{

使用ComponentOne C1WebGrid控件「建议收藏」                TableCellCollection tcc 
= e.Item.Cells;
使用ComponentOne C1WebGrid控件「建议收藏」               
//这里假设第一列为模板列
使用ComponentOne C1WebGrid控件「建议收藏」
                tcc.RemoveAt(0);
使用ComponentOne C1WebGrid控件「建议收藏」                tcc.Add(
new TableHeaderCell());
使用ComponentOne C1WebGrid控件「建议收藏」                tcc[
0].Text = 选择;//设置列头文字
使用ComponentOne C1WebGrid控件「建议收藏」
            }

使用ComponentOne C1WebGrid控件「建议收藏」        }

使用ComponentOne C1WebGrid控件「建议收藏」使用ComponentOne C1WebGrid控件「建议收藏」        
catch 使用ComponentOne C1WebGrid控件「建议收藏」{ }
使用ComponentOne C1WebGrid控件「建议收藏」    }


使用ComponentOne C1WebGrid控件「建议收藏」

另外还可以通如下设置使相同内容的两个Cell合并
C1WGridResult.Columns[2].RowMerge = C1.Web.C1WebGrid.RowMergeEnum.Free;//合并相同

 

转载于:https://www.cnblogs.com/hjzhang/archive/2006/09/09/2043597.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/185448.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号