如何将扩展器绑定到客户端的控件
我有一些动态创建的输入,它们不是服务器端控件。 我想将它们与客户端的一些 CalendarExtender 和 MaskedEditExtender 相关联。 有没有办法做到这一点?
I have some dynamically created inputs which are not server-side controls. I want to relate them to some CalendarExtender and MaskedEditExtender on the clientside. Is there a way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,我认为可能是这样的:
在服务器端将 Ajax 控件的
BehaviourID
属性设置为已知值:这允许您在 javascript 中获取底层 CalendarBehaviour 对象使用
$find
函数:您现在可以调用各种对象函数,例如 hide() 和 show():
您可以按如下方式获取 CalendarExtender 的基础 TextBox 输入字段:
我已经没有尝试过,但如果您想要这样做,或者只是以其他方式操作扩展器,您可能可以将原始文本框替换为您自己的客户端输入控件。
Yes I think it may be possible here is how:
On the server side set the
BehaviourID
attribute of the Ajax control to a known value:This allows you then in your javascript to get hold of the underlying CalendarBehaviour object with the
$find
function :You can now call the various object functions such as hide() and show() :
You can get hold of the underlying TextBox input field for the CalendarExtender as follows :
I've not tried it but you may thus be able to swap out the original text box for your own client side input control if that's what you want to do or simply manipulate the extender in other ways.