rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - tdv

Pages: 1
1
Programmers corner / loading file list
« on: November 24, 2013, 09:38:51 AM »
I was so hoping that this method will work to get the files list, but alas.  :(

Template code:
Code: [Select]
[]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html>
<head>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js"></script>
</head>
<body>
 <div id="FilesContainer"></div>

<script type="text/javascript">
jQuery(document).ready(function()
 {
  $("#FilesContainer").load("%folder%?mode=section&id=FileList.html");
 });
</script>

</body>
</html>

[file=folder=link|private]
<br>%item-url%

[FileList.html]
%list%

May be worth processing a list of files in such (%folder%?mode=section&id=FileList.html) requests?

Pages: 1