Temple University IS&T Capstone JavaScript Library
Contact the Author @ [email protected]
Check the issues tab to make sure its not already being looked into
OVERVIEW: This Library is a compilation of functions and features that are helpful with Temple IS&T Capstone Client side features. You are free to use it and modify it as needed.
SOME FEATURES USE JQUERY version 2.2.0 (the latest version at the time of build) which is included in the zip file or downloaded [HERE] (http://jquery.com/)
To use this Library:
-
Download the zip file, extract it, and place the TU.js folder inside the JavaScript folder of your application (where your main pages are stored). Make sure that both JQuery.js and TU.js are inside the folder.
-
place the following code on any page that you want to use the Library. NOTE that you may need to rename the following based on if you put the library inside another directory:
<script src="js/TU.js"></script>
- To call any of the following funcitons from the library you to call the Library itself followed by the functions with any parameters that it may take. For example, the following code will display the version function in the console when the button is clicked:
<button onclick="TU.ver()">Click for Version</button>
Calculations
Table Editor
Get Size of Page
Create Clock
Date Difference
Contains
Edit ID
Is Blank
Close
Session Timeout
Add Event
Remove Event
This function takes in 3 OR 4 arguments. 4 arguments:( First Textbox ID, Second Textbox ID, Operator as string, ID of Output Element). Based on the Operator that you input (ie: '+'), the function will get the integer value of the two textbox inputs and perform the calculation returning the caclulated value. 3 arguments:( First Textbox ID, Second Textbox ID, Operator as string). Does the same calculation as with 4 arguements, but the function is now assignable. ie:
var ans = TU.Calc('txtbx1', 'txtbx2', '*');
4 Arguments (String, String, String, String) OR 3 Arguments (String, String, String)
can be returned as an float to perform more calculations or returns nothing and can be used to assign the value of the 4th element passed in
The table editor is a useful set of functions that help manipulate any tables or gridviews on client side. Because of the amount of things you can do with this function it is now a dedicated function "class". to use any of the functions, you must first call the library (TU) followed by the instantiation of the table class (tableController()) then call the method.
- ColumnToArray(string TableName, int columnNumber);
var x = TU.tableController().ColumnToArray('tableName', columnNumber);
- RowToArray(string TableName, string element/literal, int column Number);
var x = TU.tableController().RowToArray('tableName','info', columnNumber);
- SelectAllCheckBoxes(Checkbox, string Table);
This function selects/deselects all checkboxes based on the header checkbox value. The following is how your Gridview should be created allowing your head Checkbox to call the function on click
<asp:TemplateField>
<HeaderTemplate>
<asp:CheckBox ID="chkboxSelectAll" onclick="TU.tableController().SelectAllCheckBoxes(this, 'gridViewOrTableID');"/>
</HeaderTemplate>
<ItemTemplate>
<asp:CheckBox ID="chkbx" runat="server"></asp:CheckBox>
</ItemTemplate>
</asp:TemplateField>
- SearchGridview(input Textbox, Table Name, Column of where you are searching);
var x = TU.tableController().SearchGridview(this (input object), table name, columnNumber);
-
Array containing strings of the contents in that column
-
Array containing strings of the contents in the row. the second input can either be a string of an element(ie Textbox), or it can be a literal string for text you are searching for (ie "John")
-
NOTE** this function manipulates the table itself and filters itself on client side. There is no postback.
function to give you a 2 element array containing the height and width of the page
TU.getWindowSize();
nothing
two element array with the number of the height and width in pixels
This is just a simple function that will turn an elements inner HTML into a working clock.
TU.createClock(element);
just the element you are converting into a clock
nothing. the element you call turns into a working clock
This function takes in 2 or 3 arguments and calculates the difference in days between the two objects
TU.DateDifference = function(date1, date2, outputElement);
3 inputs. date1, date2, 'optionally: element you want to display'
if you pass in 3 arguments it returns nothing and assigns the return to the third element. if you pass in 2 arguments it returns the value of the calculation
######Notes: this simple function takes in two arguments and returns if the element is inside the object you pass
TU.Contains(container, elementYoureLookingFor);
2 arguments. the first is the id of the object or object itself of the container. the second is what you are looking for
boolean
This function rewrites all IDs with a given class name by appending the id+1. very useful with dynamically created content
TU.AddNumbers(classID);
class id
nothing. the IDs will be changed client side
this function will return a boolean value if the element is empty or not including blank space
TU.isBlank(elem);
element
boolean
Calling this function will close the current browser
TU.CloseWindow();
none
current window will close
this function takes in a time and a url and if it reaches idol time. it will redirect to the given page
TU.SessionTimeOut(wait, redirect);
time, and a URL
none
this function adds an event to the given object
TU.addEvent(obj, type, func);
takes in three parameters. the first is the object that the event is to be added to. The second is the type of event, and the third is the function that you want called when the event triggers.
none, the event is added to the object passed in
this function removes an event to the given object
TU.removeEvent(obj, type, func);
takes in three parameters. the first is the object that the event is to be removed from. The second is the type of event, and the third is the function that was to be called when the event triggers.
none, the event is removed from the object passed in