自动完成/提前输入示例?
我有一个使用 Ajaxcontroltoolkit 的自动完成功能的工作版本。但是,服务方法签名需要返回 String[] 以在标记中呈现自动完成建议。
我的服务实际上返回一个对象 Foo,它由字符串图像 URL 和字符串标题(JSON 或 XML 格式)组成。任何人都知道如何让自动完成接受对象而不是字符串,以便我可以显示建议列表中标题旁边的图片?
I've got a working version of Autocomplete using the Ajaxcontroltoolkit. However, the service method signature is required to return a String[] to render the autocomplete suggestions in markup.
My service actually returns an object Foo that is made up of a string Image URL and a string Title (in JSON or XML).. anyone know of a way to have an Autocomplete accept an object instead of a string so that I can display the Image next to the title in the suggestion list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用控件本身执行此操作。最接近的方法是获取 Foo 对象并将其序列化为
http://myserver.com/images/myImage.jpg|myTitle
之类的内容。然后在客户端,您可以利用OnClientPopulated
和OnClientItemSelected
属性来解析图像和标题并进行自定义显示。您那里有 jQuery 标签,那么您是否也在考虑使用 jQuery UI 的自动完成功能?它绝对能够完成您想做的事情。
You cannot do this natively with the control. The closest you could get is taking your Foo object and serializing that into something like
http://myserver.com/images/myImage.jpg|myTitle
. Then on the client side, you could utilize theOnClientPopulated
andOnClientItemSelected
properties to parse the image and title and do a custom display.You have the jQuery tag there, so are you also considering the use of jQuery UI's autocomplete? It is definitely capable of what you're wanting to do.