使用从 sharepoint assetimagepicker 返回的数据
我正在使用 Sharepoint 2007。我使用内置的 AssetImagePicker.aspx,我需要从该页面检索图像 url 并在我的自定义 Web 部件中使用它。 我想在单击 AssetImagePicker.aspx 的“确定”按钮时运行我的 javascript 代码,但我找不到执行此操作的方法。 有谁知道该怎么做? 谢谢
I'm working with Sharepoint 2007. I use the built in AssetImagePicker.aspx and I need to retrieve the image url from that page and use it in my custom webpart.
I want to run my javascript code to run when clicking the OK button of the AssetImagePicker.aspx but I can't find a way to do that.
Does anyone know how to do this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定我是否正确理解了这个问题,而且我对 Sharepoint (和 AssetImagePicker.aspx)一无所知,但听起来您想向“确定”按钮添加一个事件处理程序:在按钮的单击事件时运行一个函数被解雇了。
您可以自己编写事件处理代码(请参阅 W3Schools 或 Quirksmode 作为示例)或(可能更好)使用像 jQuery。
Not sure if I'm understanding the question properly, and I know nothing about Sharepoint (and AssetImagePicker.aspx) but it sounds like you want to add an event handler to the OK button: to run a function when the click event of the button is fired.
You can either code event handling yourself (see W3Schools or Quirksmode for examples of this) or (probably better) use a library like jQuery.