RapidClipse X 中的主细节
Master Detail in RapidClipse X
我看到了Master Detail Feature in the documentation of RapidClipse 4, but in the newest version X it seems that feature is missing. Same for the standard buttons in the Form Wizard。我在 RapidClipse X 中找不到它。这两个功能实际上只存在于 RapidClipse 4 而不是在 X 中吗?如果是这样,是否有关于如何在 RapidClipse X 中手动实现主细节和表单按钮的教程?
对于这种情况,我使用简单的两个网格。
例如,一个网格由客户填写,第二个网格连接到订单。
您可以对第一个网格使用 selectionChangeEvent。
如果您 select 是客户,则可以在事件中获取 selectedCustomer 并更新第二个网格。为此,你应该在 orderDAO 中实现类似
的东西
select * from orders where customer := selectedCustomer
我还建议在 YouTube 中搜索 RapidClipseX 视频。
这样的事情在里面的生活例子中已经很好地解释了。
你问题的第二部分不清楚。所有标准 ui 对象也可在 RapidClipse X 中使用。
我看到了Master Detail Feature in the documentation of RapidClipse 4, but in the newest version X it seems that feature is missing. Same for the standard buttons in the Form Wizard。我在 RapidClipse X 中找不到它。这两个功能实际上只存在于 RapidClipse 4 而不是在 X 中吗?如果是这样,是否有关于如何在 RapidClipse X 中手动实现主细节和表单按钮的教程?
对于这种情况,我使用简单的两个网格。 例如,一个网格由客户填写,第二个网格连接到订单。 您可以对第一个网格使用 selectionChangeEvent。 如果您 select 是客户,则可以在事件中获取 selectedCustomer 并更新第二个网格。为此,你应该在 orderDAO 中实现类似
的东西select * from orders where customer := selectedCustomer
我还建议在 YouTube 中搜索 RapidClipseX 视频。 这样的事情在里面的生活例子中已经很好地解释了。
你问题的第二部分不清楚。所有标准 ui 对象也可在 RapidClipse X 中使用。