Click here to Skip to main content
15,860,861 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to create table of data in JavaScript equivalent to this code in c#:

C#
// Create DataTable to store the mobiles in it
        DataTable dTable = new DataTable("mobiles");
        DataTable dTable_Int = new DataTable("mobilesInt");
        DataTable dTable_STC = new DataTable("mobilesSTC");
        DataTable dTable_MobilyZain = new DataTable("mobilesMobilyZain");
        DataColumn fMobileColumn = new DataColumn();
        DataColumn fMobileColumnSTC = new DataColumn();
        DataColumn fMobileColumnMobilyZain = new DataColumn();
        DataColumn fMobileColumnInt = new DataColumn();


other meaning what is the code equivalent to it in JavaScript??
Posted
Updated 17-Nov-12 21:42pm
v2

1 solution

This DataTable (JavaScript) might help you .
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900