Flex LiveCycle DataServices 与 Flexicious 数据网格相关的问题
我正在使用灵活的数据网格来使用 Flex 生命周期数据服务显示实时数据。 Flexious 网格能够显示最初从服务器提取的数据,但当服务器将更新推送回客户端时,网格不会显示新记录。
当我用普通数据网格或高级数据网格替换灵活网格时,相同的数据会实时显示。
有人可以帮我解决这个问题吗?
预先感
谢拉吉夫
I am using flexicious datagrid to display realtime data using Flex livecycle dataservices.
The Flexious grid is able to show the data that is pulled from the server initially but when the server is pushing updates back to the client, the grid is not showing the new records.
The same data shows up realtime when i replace the flexicious grid with a normal datagrid or advanced datagrid.
Can someone help me with this issue ?
Thanks in advance
Rajeev
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己能够解决这个问题。
ExtendedGrid
上有一个属性,即filterPageSortMode
,它默认指向值客户端。为了使上述情况有效,我将其更改为服务器并且它有效。但这又带来了另一个问题。现在我无法对网格中的数据进行排序,因为使用
filterPageSortMode="server"
网格假定排序逻辑来自服务器,而不是使用网格内置的排序功能。如果我们知道如何通过保留
filterPageSortMode="server"
来继续使用网格的排序功能,那就太好了。谢谢,
拉吉夫
I was able to figure out this issue myself.
There is a property on the
ExtendedGrid
i.e.filterPageSortMode
which default points to value client. To make the above case working I change it to server and it worked.But this came up with another issue. Now I am no more able to do sort on the data in the grid because with
filterPageSortMode="server"
the grid assumes that the sorting logic is coming from server instead of using grid inbuilt sorting capabilities.It would be great to know how we can keep using the grid's sort functionality by keeping
filterPageSortMode="server"
.Thanks,
Rajeev