❇️ OrclQA.Com is a question and answer forum for programmers.
❇️ Here anyone can ask questions and anyone can answer to help others.
❇️ It hardly takes a minute to sign up and it is 100% FREE.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
How to add one column data to another column in same row in Interactive Grid on oracle apex when select [email protected]?
goto150
I have a feeling that you disliked my idea of using Action button:) Maybe this piece of code is going to serve your need. Revert changes for deselected row: var view = apex.region("SID_COLLECTION_LIST").widget().interactiveGrid("getViews","grid"); var model = view.model; var selectedRecords = view.gRead more
I have a feeling that you disliked my idea of using Action button:)
Maybe this piece of code is going to serve your need.
Revert changes for deselected row:
See lessOracle Apex 20.1 populate item in every new row in Interactive Grid
goto150
Assuming you have PROJECT_NAME column, this will give you cell value of the previous record: var model = this.data.model, rec = this.data.record, meta = model.getRecordMetadata(this.data.recordId); if ( meta.inserted ) { model.setValue(rec,"PROJECT_NAME", model.getValue( model.recordAt(mRead more
Assuming you have PROJECT_NAME column, this will give you cell value of the previous record:
You fire this on Row Initialization event.
You may use model.getTotalRecords() to get the total number of records and look for the Project_Name value of last record.
See lessHow to add one column data to another column in same row in Interactive Grid on oracle apex?
goto150
You're right. My bad, firstly this NVL2(:P5_BILL_...) column is virtual and secondly it does not leave cells in edit mode. I'd say lose-lose instead of win-win:) Lets try JavaScript. For the demo I am going to create a button to fire DA. Set Static ID for the region holding your interactive grid RegRead more
You're right. My bad, firstly this NVL2(:P5_BILL_...) column is virtual and secondly it does not leave cells in edit mode. I'd say lose-lose instead of win-win:)
Lets try JavaScript. For the demo I am going to create a button to fire DA.
I hope this would help you, and the reason I did not add this to Change event of the LOV is that I would not know how to easily chain Refresh() --> DA (Fill collection amount). If you put both: Refresh and DA under :P6_BILL_MONTH Change() event, both will fire synchronously and you won't get your collection column refreshed.
See lessHow to insert item data with default IG in IG table?
goto150
Let say you have a page, page item P_ITEM and Interactive Grid having column DEPENDANT. Depending on what you want to achieve you may either set a default source(1) for this column or default value in case of new row(2). Expand columns of your interactive grid end click on the column name you whishRead more
Let say you have a page, page item P_ITEM and Interactive Grid having column DEPENDANT.
Depending on what you want to achieve you may either set a default source(1) for this column or default value in case of new row(2).
Expand columns of your interactive grid end click on the column name you whish to modify, follow either option 1 or 2.