脚本控制客户端对象失去范围
我有一个脚本控件,其中嵌入了一个控件,该控件为客户端单击事件公开服务器端属性。 例如,embeddedControl.OnClientAppointmentClick。 所以我的问题是如何将此事件连接到我的脚本控制客户端对象。 我尝试过类似embeddedControl.OnClientAppointmentClick =“$find('myScriptControlClientID').onappointmentclick;” 但在事件触发时,脚本控制对象的范围会丢失。 有想法该怎么解决这个吗? 这个问题已经困扰我很长时间了,任何帮助将不胜感激。 谢谢
I've got a script control that has a control embedded within it that exposes a server side property for a client side click event. For example, embeddedControl.OnClientAppointmentClick. So my question is how would I wire this event to my script control client object. I've tried something like embeddedControl.OnClientAppointmentClick = "$find('myScriptControlClientID').onappointmentclick;" but on event firing the scope of the script control object is lost. Any ideas on how to fix this? This problem has been bothering me for a long time and any help would be greatly appreciated. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过添加一些内联辅助方法解决了这个问题。
.OnClientAppointmentClick = "函数(sender, eventArgs){$find('myscriptobject').Event(sender,args)};
fixed this by adding a little helper method inline.
.OnClientAppointmentClick = "function(sender, eventArgs){$find('myscriptobject').Event(sender,args)};