Telerik rabcombobox - 如何设置用于加载组合框的图像
我想在前面添加一个小的旋转 .gif “正在加载...”文本来指示活动。这可能吗?
您可以查看示例源代码的“LoadCountries()”javascript 函数,了解“正在加载”文本的设置位置。
Given the following example: http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/multiplecomboboxes/defaultcs.aspx
I would like to add a small spinning .gif in front of the "loading..." text to indicate activity. Is this possible?
You can look in the "LoadCountries()" javascript function of the example source code to see where the "loading" text gets set.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显示的文本实际上是一个文本框,尽管您看不出来。因此,您无法注入图像。你可以做的是给它一个背景图像:
创建一个加载类可能会更好,这样你可以进一步定义样式:
然后像这样应用它:
同样,一旦加载就删除该类:
The text that is displayed is actually a textbox, though you wouldn't know it by looking at it. So, you can't inject an image. What you can do is give it a background-image:
It may be better to create a loading class, so you can further define the styles:
Then apply it like so:
Similarly remove the class once loaded: