有没有办法在 Flex 4 中使用自定义加载栏而不是繁忙的光标?
我有一个自定义进度条,我想显示加载数据而不是 Flex 4 中的 showBusyCursor。是否可以使用自定义进度条而不是繁忙光标?
这是当前使用 showBusyCursor 的代码片段
<npcsservice:NpcsService id="npcsService" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
I have a custom progress bar I want to show loading the data instead of the showBusyCursor in Flex 4. Is it possible to use the custom progress bar instead of the busy cursor?
Here is the piece of code that currently uses the showBusyCursor
<npcsservice:NpcsService id="npcsService" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请将 showBusyCursor 设置为 false。显示进度条,直到服务返回。将其隐藏在结果处理程序和错误处理程序中。
这取决于您使用该服务执行的操作以正确更新自定义进度栏。
如果您要将文件上传到服务器,您可以使用此示例并更新进度条根据上传文件的大小准确显示。您可以查看该示例的源码并根据您的需要进行更改。
Please set showBusyCursor to false. Display your progress bar until the service is returned. Hide it in result handler and fault handler.
It depends on what you are doing with the service to update the custom progress bar correctly.
If you are uploading a file to the server, you can use this example and update the progress bar accurately based on the size of the file uploaded. You can view the source of this example and change it according to your needs.