你好:
一.关于 commandbar 的控制通过三种方法实现,
注:下面示例都以 Uptate 按钮进行演示:
1. 隐藏 commandbar 中的特定按钮,以隐藏 Update 按钮为例 在Fpspread 的事件 CreateButton 代码如下:- protected void FpSpread1_CreateButton(object sender, FarPoint.Web.Spread.CreateButtonEventArgs e)
- {
- if (e.Command=="Update")
- {
- e.Visible = false;
- }
- }
复制代码 2. 在 Spread UpdateCommand 事件中设置动作,代码如下:- protected void FpSpread1_UpdateCommand(object sender, FarPoint.Web.Spread.SpreadCommandEventArgs e)
- {
- e.Handled = true;
- }
复制代码 3.隐藏整个 commandbar ,代码如下:- this.FpSpread1.CommandBar.Visible = false;
复制代码 二.关于图片上传问题,请参考:http://gcdn.grapecity.com/showtopic-385.html |