Skip to main content

Show Posts

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

Messages - ccortes

4
General Discussion / Re: move the record point
I have a recordset based on a query. I need to know if this recordset has records and move across the records making some operations with the data of each record,  until the end of file
5
General Discussion / move the record point
I am writing extra code and need to know how can I move the record pointer to the next record . And how retrieves the value of the specified field from the current connection's recordset.
7
General Discussion / Re: javascript object refresh
tree.js build the tree; tree_items.js has the data to build the tree (the nodes). When the data changes in tree_items.js, the tree view is not refreshed. It is necesary to clear files and images stored in the browser's cache in order to refresh the tree view . This is the code:


<script language="JavaScript" src="http://localhost/test-tree/assets/js/tree.js"></script>
<script language="JavaScript" src="http://localhost/test-tree/assets/js/tree_items.js"></script>
<script language="JavaScript" src="http://localhost/test-tree/assets/js/tree_tpl.js"></script>

<table cellpadding="5" cellspacing="0" cellpadding="10" border="0" width="100%">
<tr>
   <td>
   <script language="JavaScript">
   <!--//
      new tree (TREE_ITEMS, TREE_TPL);
   //-->
   </script>
   </td>
   
</tr>
8
General Discussion / javascript object refresh
I have a hierarchical tree generated with javascrip. It takes data from a .js file. When the data is changed in that file, the tree view is not refreshed in the page.
Executing the html demo file out of the phprad project, the refresh is immediately. Is there a setting in phprad?