T
Trapleuning
The html export function generates a pull-down menu that contains all pages.
This pull-down menu isn't sorted by name of the page. When you have a lot of
pages, it is a bit confusing.
one could add the following javascript to the generated htm page just below
the array definition of the pages:
--
function compareFileEntry(a,b)
{
return (a.PageName > b.PageName) ? 1 : -1;
}
g_FileList = g_FileList.sort(compareFileEntry);
This pull-down menu isn't sorted by name of the page. When you have a lot of
pages, it is a bit confusing.
one could add the following javascript to the generated htm page just below
the array definition of the pages:
--
function compareFileEntry(a,b)
{
return (a.PageName > b.PageName) ? 1 : -1;
}
g_FileList = g_FileList.sort(compareFileEntry);