Code Search for Developers
 
 
  

listOfUsers.html from SME Web Application Framework at Krugle


Show listOfUsers.html syntax highlighted

<WebBox ID="listOfUsers">
      <!--# the header of the list #-->
      <table width="100%" border="0" cellspacing="0" cellpadding="2">
        <tr bgcolor="#c2c2c2">
	  <td align="center">List of Selected Users</td>
	</tr>
      </table>

      <!--# separate the header and the list with an empty space #-->
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
	<tr><td>
	  <img src="{{GRAPHICS}}pixel.gif" width="1" height="1">
	</td></tr>
      </table>

      <!--# the list #-->
      <Repeat rs="{{selectedUsers}}">
        <IfEmpty>
	  No user in selection.<br>
	</IfEmpty>
        <Header>
	  <table width="100%" border="0" cellspacing="0" cellpadding="0">
	</Header>
        <RepeatBody>
	  <Var name="BG_COLOR">({{CurrentRowNr}}%2 ? "#f2f2f2" : "#fafafa")</Var>
	  <Var name="IMG">('{{user_id}}'=='{{currentUser}}' ? "blue_tri.gif" : "pixel.gif")</Var>
	  <tr>
	    <td width="10" bgcolor="{{BG_COLOR}}">
	      <img src="{{GRAPHICS}}{{IMG}}">
	    </td>
	    <td bgcolor="{{BG_COLOR}}">
	      <a href="javascript: listOfUsers_select({{user_id}})">
		{{username}}
	      </a>
	    </td>
	    <td width="1"  bgcolor="white">
	    </td>
	    <td bgcolor="{{BG_COLOR}}">
	      &nbsp;&nbsp;{{firstname}} {{lastname}}
	    </td>
	  </tr>
	</RepeatBody>
	<Footer>
          </table>
	  <Include SRC="{{./}}list_navigation_bar.html" />
	</Footer>
      </Repeat>
      <br>
      [<a href="javascript: listOfUsers_addNewUser()">Add New User</a>]
</WebBox>




See more files for this project here

SME Web Application Framework

smewebapp intends to simplify the construction of web applications for informatization of the work of SME-s (small and medium enterprises), institutions, organizations etc.

Project homepage: http://sourceforge.net/projects/smewebapp
Programming language(s): JavaScript,PHP,Shell Script,XML
License: other

  listOfUsers.db
  listOfUsers.html
  listOfUsers.js
  listOfUsers.php
  list_navigation_bar.html