BUG 8863 Migrate the User Profile interface from master branch version SOLVED.

- Migrate the User Profile interface from master branch version
- User Profile ExtJS migrated from the master branch.
This commit is contained in:
Hector Cortez
2012-04-02 19:17:57 -04:00
parent 0eb523326c
commit ffc2a27135
10 changed files with 1731 additions and 162 deletions

View File

@@ -0,0 +1,20 @@
<html>
<style>
</style>
<body onresize="autoResizeScreen()" onload="autoResizeScreen()">
<iframe name="frameMain" id="frameMain" src ="../users/usersInit" width="100%" height="200" frameborder="0" style >
<p>Your browser does not support iframes.</p>
</iframe>
</body>
<script>
function autoResizeScreen() {
oCasesFrame = document.getElementById('frameMain');
oClientWinSize = getClientWindowSize();
height = oClientWinSize.height-5;
oCasesFrame.style.height = height;
}
</script>
</html>