自定义 Flex 数据网格 headerText
大师们, 我有一个带有数据网格的 Adobe AIR 应用程序。我的要求是允许用户自定义该网格的列标题和列数。 1. 如何从数据库获取列 headerText 值? 2. 如果用户可以输入列名,则必须将其保存到数据库然后加载。
请建议。
问候 〜贾德
Gurus,
I have a Adobe AIR application which has a datagrid. My requirement is to allow the user to make the column headers and the number of columns of that grid, customizable.
1. How can I get the column headerText values from DB?
2. If the user can enter the column names, it has to be saved to the DB and then loaded.
Pl suggest.
Regards
~Jad
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按如下方式以编程方式设置标题文本(其中 dg 是您的数据网格 ID):
从数据库读取和存储到数据库可以通过多种方式完成。
为了简单起见,只需在 Flex 中创建一个 httpservice,在服务器端调用 php(或任何您最喜欢的脚本语言)。
Adobe 食谱这里有一个简单的示例
You can set the header text programmatically as follows (where dg is your datagrid id):
Reading from and storing to the database can be done many ways.
To keep it simple, just create an httpservice in flex that invokes a php(or whatever your favorite scripting language) on the server side.
There is a simple example here on Adobe cookbooks