gyorgy oyeniyi

Greenhorn
+ Follow
since Jan 13, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by gyorgy oyeniyi

hello
it is a good idea. but what is the JAVA sintactics to convert the september to 9 (numeral value)?
I will try to do it with every name of months (jan, feb, mar,apr...)
thanks again.
cheers
me again. dear Ares Dex

I tried to sort dates like 25/01/2009 with the function sortIt(y) but the numbers are not in order.
What do you suggest?
thanks a lot

geo
thank you so much, you are a genius!! you helped me a lot, it is working...

and why we need this funcion

ohh sorry .. the code is here
Hello ArAshDex,
I tried this code and try to change it with a lot of effort to me to understand but I somehow could find out the meaning of this structural programming.
I added another function which is supposed to sort by the ID in the first column.
BUT it does not want to do it!
please help me, what I did wrong?
thank you so much
Geo
Thanks Dex,
I try to do that but it takes days or weeks to me to build up a code for this task.
:roll:
Some part of this code is like chinese language to me.
but I try. I will come back.
An online-kiss
hello

thank you so much :lol:

it works if I click on the 'sort it' text. If I want to sort every column by its ID then I have to insert the <a onclick="sortIt()">sort it!</a> code? and the sort it text would change only?
thank you .. this last table-creating code is very usefull..
now I just would like to know how I could insert the table-sorting code to this last html code?

Where should the sorting code go here?
thank you .. this last table-creating code is very usefull..
now I just would like to know how I could insert the table-sorting code to this last html code?

Where should the sorting code go here?
<!--
ArAsh.D by NetBeans 6.5
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" >
function createMyTable(){
var root=document.createElement("table"); //create root tag
root.setAttribute("border", "1"); //set border to our table to see cells nice
for(var i=0;i<4;i++){ //for 4 row
var row=document.createElement("tr"); //create a row tag
for(var x=0;x<2;x++){ //for 2 column in each row
var col=document.createElement("td"); //create a column tag
col.innerHTML=("col No "+x+" in row no "+i); //write something in each cell
row.appendChild(col); //add this column to row
}
root.appendChild(row); //add this row to table
}
document.getElementById("X").appendChild(root);} //add our table to document
</script>
</head>
<body>
<div id="X"></div>
<input type="button" value="create my table" onclick="createMyTable()"/>
</body>
</html>
hello
thank you so much but it is more confusing than others what I red before.
I would like to get a total code (sample of course with a small sample table)that I only put in a blank html editor.
Thank you so much again.
Geo
Dear everyone,
I really do not know how to make it.. I feel terrible.
I would like someone who can tell me step by step how I can build up a html code with java script to see that it's working.
I was reading many pages about this topic and making it but I could not make a useful html table.
In descriptions I red that you have to add this here and after copy that there and put those there too.... but WHERE in the html code?
I would kindly ask someone to write down a useful html sample code here with 2 colums and 4 rows with sample names to see how I can make my own bigger table after understanding the structure. Please, also tell me if I have to change anything (even a dot) in or out the html code.
Thank you so much and I appriciate your help.
George