Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Get A Cell in HTML Table With JAVA Code

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Get A Cell in HTML Table With JAVA Code
 Login/Join
 
Gold member
posted
In my Maintain program, when I want to get a cell in a Grid with Java code, I code
 s9b_Perpetual_Billing.Grid1.GetCell(2,row);
var CellValue2=s9b_Perpetual_Billing.Grid1.CellGetText();
 

What is the coding to get a cell in a HTML table?
Thanks, Kent

This message has been edited. Last edited by: <Kathryn Henning>,


Windows2003 Server, WebFOCUS 7.7.02 Developers Studio and MRE
 
Posts: 63 | Location: Ft. Wayne, IN | Registered: February 20, 2007Report This Post
Virtuoso
posted Hide Post
The simplest approach is to use a 'Body Only' link on one of the columns. Add an event handler for ClickLink and create something like:
function OnHTMLTable1_ClickLink ( )  {
var rowNum;
var cellValue;
rowNum = document.getElementById("HTMLTable1_ClickRow").value;
cellValue = document.getElementById("HTMLTable1_TblElem").rows[rowNum-1].cells[1].innerHTML;
alert(cellValue);
}


Alan.
WF 7.705/8.007
 
Posts: 1451 | Location: Portugal | Registered: February 07, 2007Report This Post
Master
posted Hide Post
My technique is just slightly different. What I like about this is that it works on all browsers.
Here my form name is startform. By subtracting values from CurCol you can get values from different cells on the selected line.

var TableDiv = document.getElementById("HTMLTable1");
var TableObj;
for(i=0; i if(TableDiv.children[i].tagName == "TABLE") {
TableObj = TableDiv.children[i];
break; } }

var CurCol = Startform.HTMLTable1_ClickColumn.value;
var CurRow = Startform.HTMLTable1_ClickRow.value;
var CurVal =Startform.HTMLTable1_Value.value;
var pcode = TableObj.rows[CurRow-1].cells[CurCol-0].innerHTML;

Mark
 
Posts: 663 | Location: New York | Registered: May 08, 2003Report This Post
Gold member
posted Hide Post
Thanks Alan B and Mark. {SOLVED}
Kent


Windows2003 Server, WebFOCUS 7.7.02 Developers Studio and MRE
 
Posts: 63 | Location: Ft. Wayne, IN | Registered: February 20, 2007Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Get A Cell in HTML Table With JAVA Code

Copyright © 1996-2020 Information Builders