自定义 Flex 数据网格 headerText

发布于 2024-08-24 14:19:49 字数 153 浏览 5 评论 0原文

大师们, 我有一个带有数据网格的 Adob​​e 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 技术交流群。

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

发布评论

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

评论(1

捎一片雪花 2024-08-31 14:19:49

您可以按如下方式以编程方式设置标题文本(其中 dg 是您的数据网格 ID):

(dg.columns[0] as DataGridColumn).headerText = "Something"

从数据库读取和存储到数据库可以通过多种方式完成。
为了简单起见,只需在 Flex 中创建一个 httpservice,在服务器端调用 php(或任何您最喜欢的脚本语言)。

Adobe 食谱这里有一个简单的示例

You can set the header text programmatically as follows (where dg is your datagrid id):

(dg.columns[0] as DataGridColumn).headerText = "Something"

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

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