有没有办法在 Flex 4 中使用自定义加载栏而不是繁忙的光标?

发布于 2024-10-20 06:40:32 字数 286 浏览 0 评论 0原文

我有一个自定义进度条,我想显示加载数据而不是 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 技术交流群。

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

发布评论

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

评论(1

贩梦商人 2024-10-27 06:40:32

请将 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.

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