Discussions
Categories
- 385.5K All Categories
- 5.1K Data
- 2.5K Big Data Appliance
- 2.5K Data Science
- 453.4K Databases
- 223.2K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 47 Multilingual Engine
- 606 MySQL Community Space
- 486 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.2K ORDS, SODA & JSON in the Database
- 585 SQLcl
- 4K SQL Developer Data Modeler
- 188K SQL & PL/SQL
- 21.5K SQL Developer
- 46 Data Integration
- 46 GoldenGate
- 298.4K Development
- 4 Application Development
- 20 Developer Projects
- 166 Programming Languages
- 295K Development Tools
- 150 DevOps
- 3.1K QA/Testing
- 646.7K Java
- 37 Java Learning Subscription
- 37.1K Database Connectivity
- 201 Java Community Process
- 108 Java 25
- 22.2K Java APIs
- 138.3K Java Development Tools
- 165.4K Java EE (Java Enterprise Edition)
- 22 Java Essentials
- 176 Java 8 Questions
- 86K Java Programming
- 82 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 208 Java User Groups
- 25 JavaScript - Nashorn
- Programs
- 667 LiveLabs
- 41 Workshops
- 10.3K Software
- 6.7K Berkeley DB Family
- 3.6K JHeadstart
- 6K Other Languages
- 2.3K Chinese
- 207 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 474 Portuguese
IG LINK COLUMN NOT WORKING AFTER 42 ROWS

Hi,
I have create one IG which is populating data from a database table.
I have create a link on 1 column, which is working fine till 42 Records, but after 42 records when grids refresh further records, Link does not work.
How can i fix this issue?
Regards,
Waqas
Comments
-
42
do you see anything in the browser dev tools console when you click a link that doesn't work?
do you see anything in the debug window when you click a link that doesn't work?
if you order the rows differently is it still row 43 that fails?
-
When i click on the link nothing generates in the log, dev tools console and the debug window.
the link is working only on 1st 42 rows, in all the ways.
Regards,
-
can you tell us more about the link?
what type of link is it? Target = "page in this application", "page in another application" or "URL"?
do you set any item values as part of the link definition
can you reproduce the problem with an application on apex.oracle.com and share the url and credentials with us?
-
UR base:
Behavior:
Click on the Cell, Cell is selected, and do some calculation in javascript Dynamic Action which is being active using jQuery Selector.
Regards
-
the javascript code could be doing things that might cause your issue or the jQuery selector may be wrong but we have no way of knowing without seeing it, if you can reproduce the problem on an apex.oracle.com application and share it with us it would help a lot
-
Hi,
Please check my example, simple link and open and dialog window.
user name: demo
password: testmycase123
-
can you change the Event Scope on the Dynamic Action to "Dynamic" and try it again please?
-
Now this issue has fixed. thanks alot,
but another issue raised,
When user clicks on a cell, then we colored that cell using javascript function with toggling.
color a cell on click, and if again click and cell is colored then de-color the cell
this was running fine , but after setting the dynamic option this is not working any more. Please guide.
below functions have been created under Page level Function and Global Variable Declaration:
function highlight_ig_cells() {
$(".my-report td.my-column1").on( "click", function(){
$(this).addClass('color-cell-block color-background u-warning-bg');
$(this).css({"text-decoration":"none"});
});
$(".my-report td.my-column2").on( "click", function(){
$(this).addClass('color-cell-block color-background u-warning-bg');
$(this).css({"text-decoration":"none"});
});
$(".my-report td.my-column3").on( "click", function(){
$(this).addClass('color-cell-block color-background u-warning-bg');
$(this).css({"text-decoration":"none"});
});
};
function de_highlight_ig_cells() {
$(".my-report td.my-column1").on( "click", function(){
$(this).removeClass('color-cell-block color-background u-warning-bg');
$(this).css({"text-decoration":"line-through"});
});
$(".my-report td.my-column2").on( "click", function(){
$(this).removeClass('color-cell-block color-background u-warning-bg');
$(this).css({"text-decoration":"line-through"});
});
$(".my-report td.my-column3").on( "click", function(){
$(this).removeClass('color-cell-block color-background u-warning-bg');
$(this).css({"text-decoration":"line-through"});
});
};
-
I have created this example on the same link
user name: demo
password: testmycase123
-
i'd start a new thread if i were you mate, there are some very good CSS people on here (i'm not one of them) who may be able to help quicker than i can
put CSS in the thread title and they'll be more likely to have a look
explain the business rules for what should happen when the user clicks, popup, strikethru etc... in the body of the thread and include your example app