最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plsql - Oracle APEX Interactive Grid with ordered rows - Stack Overflow

programmeradmin0浏览0评论

In Oracle APEX, I have a table that describes a one-to-many relation which is ordered with a column. So something like this:

create table T_MASTER (
  MASTER_GUID         RAW(16) DEFAULT ON NULL sys_guid(),
  MASTER_NAME         VARCHAR2(50) NOT NULL,
  MASTER_DESC         VARCHAR2(200) NOT NULL,

  constraint T_MASTER_PK primary key (MASTER_GUID)
);

create table T_DETAIL (
  DETAIL_GUID         RAW(16) DEFAULT ON NULL sys_guid(),
  MASTER_GUID         RAW(16) NOT NULL,
  DETAIL_NAME         VARCHAR2(50) NOT NULL,
  DETAIL_DESC         VARCHAR2(200) NOT NULL,
  DETAIL_ORDER        NUMBER NOT NULL,

  constraint T_DETAIL_PK primary key (DETAIL_GUID),
  
  constraint T_DETAIL_FK_MASTER_GUID foreign key (MASTER_GUID) references T_MASTER (MASTER_GUID)
);

DETAIL_ORDER defines the order of the detail to appear. When displaying the detail in an editable interactive grid I can sort the initial values by DETAIL_ORDER. But after that the user can modify the displayed order in any way they want. I want to use the ordered functionality of the IG to automatically assign the DETAIL_ORDER column. I am aware of the method of assigning the order values like so (if you switch a row to be between two rows its new order is the midpoint of the two rows), but again I have no idea how to incoorporate this into Oracle APEX's Interactive Grid.

In Oracle APEX, I have a table that describes a one-to-many relation which is ordered with a column. So something like this:

create table T_MASTER (
  MASTER_GUID         RAW(16) DEFAULT ON NULL sys_guid(),
  MASTER_NAME         VARCHAR2(50) NOT NULL,
  MASTER_DESC         VARCHAR2(200) NOT NULL,

  constraint T_MASTER_PK primary key (MASTER_GUID)
);

create table T_DETAIL (
  DETAIL_GUID         RAW(16) DEFAULT ON NULL sys_guid(),
  MASTER_GUID         RAW(16) NOT NULL,
  DETAIL_NAME         VARCHAR2(50) NOT NULL,
  DETAIL_DESC         VARCHAR2(200) NOT NULL,
  DETAIL_ORDER        NUMBER NOT NULL,

  constraint T_DETAIL_PK primary key (DETAIL_GUID),
  
  constraint T_DETAIL_FK_MASTER_GUID foreign key (MASTER_GUID) references T_MASTER (MASTER_GUID)
);

DETAIL_ORDER defines the order of the detail to appear. When displaying the detail in an editable interactive grid I can sort the initial values by DETAIL_ORDER. But after that the user can modify the displayed order in any way they want. I want to use the ordered functionality of the IG to automatically assign the DETAIL_ORDER column. I am aware of the method of assigning the order values like so (if you switch a row to be between two rows its new order is the midpoint of the two rows), but again I have no idea how to incoorporate this into Oracle APEX's Interactive Grid.

Share Improve this question edited yesterday user30044589 asked yesterday user30044589user30044589 52 bronze badges New contributor user30044589 is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct.
Add a comment  | 

1 Answer 1

Reset to default 0

There is an example of this in the IG Cookbook (version 6) that can be downloaded here. Have a look at page 11 (Tasks (reorder, checkbox)). I know posting links is not encouraged on this forum but that is a lot of code to copy and paste :).

发布评论

评论列表(0)

  1. 暂无评论