Hi,
i would need to store in a javascript variable the following table:
Nodeid parentid theme Document
4787814 4787484 Theme1 Document 1
4787824 4787484 Theme2 NULL
4787834 4787824 Theme2.1 Document 1 of theme 2.1
4787834 4787824 Theme2.1 Document 2 of theme 2.1
4787834 4787824 Theme2.1 Document 3 of theme 2.1
4787844 4787824 Theme2.2 Document 1 of theme 2.2
4787854 4787824 Theme2.2 Document 2 of theme 2.2
Is there any jquery or javascript code that could help me storing this table in a similar structure. By the moment i have the following javascript code.
var ThemesCollection=
{
Themes: {},
Initialize: function()
{
ThemesCollection.Themes=new Object();
}
}
Thanks a lot in advance.
Best Regards.
Jose