当数据库没有返回数据时
我在 init 方法中启动一个加载面板并将其隐藏在 ReturnDataPayload 事件中。当数据表中有一些值时,这是完美的工作。但是当没有从数据库返回数据时,控件不会返回 DataPayLoad 事件。请帮助我找到一个即使响应没有任何数据也会触发的事件,或者告诉我一种隐藏加载面板的方法。
I am intiating a loading panel in init method and hiding it in ReturnDataPayload event.This is working perfectly when data Table has got some values in it.But when there is no data returned from database , the control is not going to returnDataPayLoad event.Please help me in finding an event which will be fired even when the response doesn't have any data or tell me a way to hide the loading panel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要自定义行为,请使用 dataTable 的 dataSource 的 DataSource 的 sendRequest 方法
记住无论您的数据来自哪个来源:XML、JSON、JavaScript 对象、TEXT,您始终都会获得数据以统一的方式通过DataSource的sendRequest方法。因此,当您想要检索数据并同时添加自定义行为时,请使用它
响应的属性是
打开YUI dataTable 页面,查找在运行时加载数据即可查看YUI dataTable 提供的一些内置函数
我希望它能有用,如果您想了解有关 YUI 的任何其他信息,请随时寻求帮助。查看演示页面,了解 YUI dataTable 的优秀功能
If you want a custom behavior, use DataSource's sendRequest method of the dataTable's dataSource
keep in mind No matter which source is your data: XML, JSON, JavaScript object, TEXT, you always will get your data in a unified way through DataSource's sendRequest method. So when you want to retrieve your data and, at the same time, add custom behavior, use it
The properties of the response are
On the YUI dataTable page, look for Loading data at runtime to see some built-in functions provided by YUI dataTable
I hope it can be useful and feel free to ask for help for anything else you want about YUI. See a demo page of nice features of YUI dataTable