自动完成/提前输入示例?

发布于 2024-09-28 18:50:45 字数 190 浏览 7 评论 0原文

我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时间你老了 2024-10-05 18:50:45

您无法使用控件本身执行此操作。最接近的方法是获取 Foo 对象并将其序列化为 http://myserver.com/images/myImage.jpg|myTitle 之类的内容。然后在客户端,您可以利用 OnClientPopulatedOnClientItemSelected 属性来解析图像和标题并进行自定义显示。

您那里有 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 the OnClientPopulated and OnClientItemSelected 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文