找回密码
 立即注册

QQ登录

只需一步,快速开始

iceman
社区贡献组   /  发表于:2011-11-7 14:21:00
11#
你好,因为版本不同的,所以提示“提示不支持的属性或方法”,给你带来不便,很抱歉。
下面是我使用 IE8 浏览器, Spread for ASP.NET 4.0,.NET Framework 3.5 制作并且测试成功的 Demo ,其中自定义了继承 TextCellType 的类,参考代码:
后台代码:
  1.    
  2. [Serializable]
  3.     class MyTextBox : FarPoint.Web.Spread.TextCellType
  4.     {
  5.         public override Control GetEditorControl(string id, TableCell parent, FarPoint.Web.Spread.Appearance style, FarPoint.Web.Spread.Inset margin, object value, bool upperLevel)
  6.         {
  7.             TextBox Tx = new TextBox();
  8.             Tx.Text = value.ToString();
  9.             Tx.Attributes.Add("onclick", "onFocus(this)");
  10.             return Tx;
  11.         }
  12.     }
复制代码
前台代码:
  1. <script language="javascript" type="text/javascript">

  2.     function onFocus(obj) {
  3.         alert("test");
  4.         obj.select();
  5.         }
  6. </script>
复制代码
Demo 下载:
test.zip (2.48 MB, 下载次数: 214)
回复 使用道具 举报
wp_pandy
高级会员   /  发表于:2011-11-16 22:49:00
12#
恩,我解决了,我是用jquery实现的,不过和你的做法一样,还是谢谢版主!
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2011-11-17 09:07:00
13#

回复 12# wp_pandy 的帖子

不客气~
回复 使用道具 举报
12
您需要登录后才可以回帖 登录 | 立即注册
返回顶部