示例#1
0
// add the jqx workflow list script which generates the jqxgrid
$scripts = "<script type=\"text/javascript\" src=\"Executive.js\" />";
// output the basic header HTML
include "../Includes/header.php";
// message for the user on post operations
if (isset($validationMessage) && !empty($validationMessage)) {
    echo '<div class="' . ($validated == true ? 'info' : 'err') . '">' . $validationMessage . '</div>';
}
// create a new form
echo '<form action="Executive.php" method="post">';
// create the section header
echo '<div class="row show-grid">';
// create grid column
echo '<div class="col-sm-6">';
// show the control
dumpBasicSubmitButton("Refresh", "Refresh", "Refresh page", true);
echo '</div>';
echo '</div>';
// add a div tag for the grid
echo '</br><div style="margin-left: 20px;" id="ExecutiveListDiv"></div></form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
authorship (the "Software") available through RENCI upon the terms set
forth in this Open Source Software License (this "License").  This License
applies to any Software that has placed the following notice immediately
示例#2
0
}
// output the basic header HTML
include "../Includes/header.php";
//QuickLinksBar
dumpQuickLinks(array(array("ID" => "CompanyDetails", "url" => '../Company/CompanyDetails.php?CompanyID=' . $CompanyID, "name" => "Back To Company Details")));
// message for the user on post operations
if (isset($validationMessage) && !empty($validationMessage)) {
    echo '<div class="' . ($validated == true ? 'info' : 'err') . '">' . $validationMessage . '</div>';
}
echo '</br>';
// create a new form
echo '<form action="CompanyEvent.php" method="post">';
echo '<div style="margin-left: 20px;">';
dumpBasicSubmitButton("Refresh", "Refresh", "Refresh page", true);
echo '&nbsp&nbsp&nbsp';
dumpBasicSubmitButton("AddEvent", "AddEvent", "Add", true);
echo '</div>';
// add a div tag for the grid
echo '</br><div style="margin-left: 5px;" id="EventListDiv"></div></br>';
// save the passed in company name for the return post
saveExtraParams(array("CompanyID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
authorship (the "Software") available through RENCI upon the terms set
示例#3
0
}
// output the basic header HTML
include "../Includes/header.php";
//QuickLinksBar
dumpQuickLinks(array(array("ID" => "CompanyDetails", "url" => '../Company/CompanyDetails.php?CompanyID=' . $CompanyID, "name" => "Back To Company Details")));
// message for the user on post operations
if (isset($validationMessage) && !empty($validationMessage)) {
    echo '<div class="' . ($validated == true ? 'info' : 'err') . '">' . $validationMessage . '</div>';
}
echo '</br>';
// create a new form
echo '<form action="CompanyFunding.php" method="post">';
echo '<div style="margin-left: 20px;">';
dumpBasicSubmitButton("Refresh", "Refresh", "Refresh page", true);
echo '&nbsp&nbsp&nbsp';
dumpBasicSubmitButton("AddFunding", "AddFunding", "Add", true);
echo '</div>';
// add a div tag for the grid
echo '</br><div style="margin-left: 5px;" id="FundingListDiv"></div></br>';
// save the passed in company name for the return post
saveExtraParams(array("CompanyID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
authorship (the "Software") available through RENCI upon the terms set
示例#4
0
文件: Founder.php 项目: zekuny/RTPUI
dumpBasicSubmitButton("AddFounder", "AddFounder", "Check/Add Founder", true);
echo '</div>';
echo '</div>';
echo '</div>';
echo '<div margin-top: 100px;>';
echo "<ul id='SearchFounderNameList'></ul>";
echo '</div>';
// add a div tag for the grid
echo '<div style="margin-left: 5px; margin-top: 15px;" id="FounderListDiv"></div></br>';
// were there duplicate founders detected
if (isset($duplicatedFounder) && !empty($duplicatedFounder)) {
    echo '<div class="info">The following duplicate founders were found.</div><br>';
    // load the returned list of duplicates to a list box
    displayDuplicateFounderPulldown("dupeSelect", "dupeSelect", $duplicatedFounder, 5);
    echo '<br><br>';
    dumpBasicSubmitButton("AddSelectedFounder", "AddSelectedFounder", "Add selected Founder", true);
    // display a button to jump to the details page
    directBlankButton("ViewSelectedFounder", "ViewSelectedFounder", "View selected Founder", "directBlankWindow()", true);
    echo '<br><div id = "directErrorMessage" class = "err"></div>';
}
// save the passed in company name for the return post
saveExtraParams(array("CompanyID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
示例#5
0
文件: Founders.php 项目: zekuny/RTPUI
echo 'Last Updated <input type="checkbox"  name="Checkboxes[]" id="LastUpdated" value="LastUpdated" ' . isCBChecked($inputCol, "LastUpdated") . '/>';
echo '</td>';
echo '</tr>';
echo '<tr>';
echo '<td>';
echo 'Select/DeSelect All <input type="checkbox"  id="selectall" onClick="selectAll(this)" />';
echo '</td>';
echo '</tr>';
//echo '<tr>';
//echo '<td>';
//dumpBasicSubmitButton("UpdateGrid", "UpdateGrid", "Update Grid", true);
//echo '</td>';
//echo '</tr>';
echo '<tr>';
echo '<td>';
dumpBasicSubmitButton("UpdateGrid", "UpdateGrid", "Update Grid", true);
echo '</td>';
echo '</tr>';
echo '</table>';
echo '</div>';
// save the passed in company name for the return post
saveExtraParams(array("CompanyID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
function generateCSVData($selectedCol)
{
    // include the data access class
    include_once "SQLUtils.php";
    $out = "";
    // init the return code
示例#6
0
// redirect to the Events page
// output the basic header HTML
include "../Includes/header.php";
// create a new form
echo '<form action="DashBoard.php" method="post">';
// add content here
echo '<div class="info">Please select a functional area to work on.</div>';
echo '<div style="margin-left: 40px;" class="row">';
echo '<div class="col-md-4"></br>';
dumpBasicSubmitButton("CompanyData", "CompanyData", "Company Information", true);
echo '</div>';
echo '<div class="col-md-4"></br>';
dumpBasicSubmitButton("FoundersData", "FoundersData", "Founders information", true);
echo '</div>';
echo '<div class="col-md-4"></br>';
dumpBasicSubmitButton("FundingData", "FundingData", "Funding Source and Type", true);
echo '</div>';
echo '</div>';
/*
echo '<div style="margin-left: 40px;" class="row">';
	echo '<div class="col-md-4"></br>';
		dumpBasicSubmitButton("NoteData", "NoteData", "Note Information", true);
	echo '</div>';

	echo '<div class="col-md-4"></br>';
		dumpBasicSubmitButton("ProductData", "ProductData", "Product information", true);
	echo '</div>';

	echo '<div class="col-md-4"></br>';
		dumpBasicSubmitButton("ExecutiveData", "ExecutiveData", "Executive information", true);
	echo '</div>';
示例#7
0
}
// output the basic header HTML
include "../Includes/header.php";
//QuickLinksBar
dumpQuickLinks(array(array("ID" => "CompanyDetails", "url" => '../Company/FundingDetails.php?FundingID=' . $FundingID . '&CompanyID=' . $CompanyID, "name" => "Back To Funding Details")));
// message for the user on post operations
if (isset($validationMessage) && !empty($validationMessage)) {
    echo '<div class="' . ($validated == true ? 'info' : 'err') . '">' . $validationMessage . '</div>';
}
echo '</br>';
// create a new form
echo '<form action="CompanyMerger.php" method="post">';
echo '<div style="margin-left: 20px;">';
dumpBasicSubmitButton("Refresh", "Refresh", "Refresh page", true);
echo '&nbsp&nbsp&nbsp';
dumpBasicSubmitButton("AddMerger", "AddMerger", "Add", true);
echo '</div>';
// add a div tag for the grid
echo '</br><div style="margin-left: 5px;" id="MergerListDiv"></div></br>';
// save the passed in company name for the return post
saveExtraParams(array("CompanyID", "FundingID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
authorship (the "Software") available through RENCI upon the terms set
示例#8
0
echo '<table>';
echo '<tr><td colspan="2"><div class="info">Create a new Dx list</div></td></tr>';
echo '<td style="width:100px; text-align: right">Name:</td>';
echo '<td>';
dumpBasicTextField("Name", "Name", 20);
echo '</td>';
echo '<tr><td style="width:100px; text-align: right">Description:</td>';
echo '<td>';
dumpBasicTextField("Description", "Description", 50);
echo '</td></tr>';
echo '<tr><td style="width:100px; text-align: right">Version:</td>';
echo '<td>';
dumpBasicTextField("Version", "Version", 5);
echo '</td></tr>';
echo '<tr><td>&nbsp;</td><td>';
dumpBasicSubmitButton("NewList", "NewList", "Add");
// finish up the form
echo '</td></tr></table></td></tr></table></div></form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
authorship (the "Software") available through RENCI upon the terms set
forth in this Open Source Software License (this "License").  This License
applies to any Software that has placed the following notice immediately
following the copyright notice for the Software:  Licensed under the RENCI
Open Source Software License v. 1.0.
示例#9
0
    echo '<div class="' . ($validated == true ? 'info' : 'err') . '">' . $validationMessage . '</div>';
}
// add in a refresh button for the page
dumpBasicSubmitButton("Refresh", "Refresh", "Refresh page", true);
echo '</br>';
// add a div tag for the grid
echo '</br><div style="margin-left: 20px;" id="PreviousOtherNamesDiv"></div>';
echo '</br>';
// save the passed in company name for the return post;
echo '<div style="margin-left: 20px;"';
echo '<div class="row show-grid">';
echo '<div class="col-md-5">';
dumpBootTextField("NewAliasName", "NewAliasName", 1000, 1000, '', "Add Alias");
echo '</div>';
echo '<div class="col-md-5">';
dumpBasicSubmitButton("AddAlias", "AddAlias", "Add Alias", true);
echo '</div>';
echo '</div>';
echo '</div>';
// save php variables to hidden fields on the form
saveExtraParams(array("CompanyID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
authorship (the "Software") available through RENCI upon the terms set
示例#10
0
echo '</table>';
echo '<br>';
/*State dropdown list*/
echo '<select name = "SubSector1ID" id="SubSector1ID">';
echo '<option value="-1">Select Subsector1ID</option>';
echo '</select>';
echo '<span id="SubSector1ID_loader"></span>';
echo '<select name = "SubSector2ID" id="SubSector2ID">';
echo '<option value="-1">Select Subsector2ID</option>';
echo '</select>';
echo '<span id="SubSector2ID_loader"></span>';
echo '<br><br>';
echo '<div style="margin-left: 20px;">';
dumpBasicSubmitButton("Refresh", "Refresh", "Refresh page", true);
echo '&nbsp&nbsp&nbsp';
dumpBasicSubmitButton("AddSectors", "AddSectors", "Add", true);
echo '</div>';
// save the passed in company name for the return post
saveExtraParams(array("CompanyID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
authorship (the "Software") available through RENCI upon the terms set
forth in this Open Source Software License (this "License").  This License
applies to any Software that has placed the following notice immediately
示例#11
0
echo '</tr>';
echo '<tr>';
echo '<td width="30%" style="padding-right: 5px">';
directBlankButton("Direct", "Direct", "Direct to page", "openBlankWindow()", true);
echo '</td>';
echo '</tr>';
echo '</table>';
echo '<div class="info" style="margin-left: 10px; margin-top: 15px;">Enter a Company Name: </div>';
echo '<div class="row" style="margin-left: 10px;">';
echo '<div class="col-md-3">';
//dumpBootTextField("SearchCompanyName", "SearchCompanyName", 35, 35, '', "Search Company Name");
dumpSearchBootTextField("SearchCompanyName", "SearchCompanyName", "autocomplet()", 35, 35, '', "Search Company Name");
echo "<ul id='SearchCompanyNameList'></ul>";
echo '</div>';
echo '<div class="col-md-2">';
dumpBasicSubmitButton("SearchCompany", "SearchCompany", "Search", true, true);
echo '</div>';
echo '</div>';
if (isset($CompanySearchResult) && !empty($CompanySearchResult)) {
    echo '<div class="info" style="margin-left: 10px; margin-top: 15px;">The following related companies were found.</div>';
    echo '<div class="info" style="margin-left: 15px; margin-top: 15px;">';
    // load the returned list of duplicates to a list box
    displayMatchCompanyPulldown("companySelect", "companySelect", $CompanySearchResult, 5, 300);
    echo '</div>';
    echo '<div class="info" style="margin-left: 15px; margin-top: 15px;">';
    // display a button to jump to the details page
    directBlankButton("ViewSelectedCompany", "ViewSelectedCompany", "View Event for selected Company", "directBlankWindow()", true);
    echo '</div>';
    echo '<div id="directErrorMessage" class="err"></div>';
}
echo '</form>';
示例#12
0
}
// output the basic header HTML
include "../Includes/header.php";
//QuickLinksBar
dumpQuickLinks(array(array("ID" => "CompanyDetails", "url" => '../Company/FundingDetails.php?FundingID=' . $FundingID . '&CompanyID=' . $CompanyID, "name" => "Back To Funding Details")));
// message for the user on post operations
if (isset($validationMessage) && !empty($validationMessage)) {
    echo '<div class="' . ($validated == true ? 'info' : 'err') . '">' . $validationMessage . '</div>';
}
echo '</br>';
// create a new form
echo '<form action="CompanyAcquisition.php" method="post">';
echo '<div style="margin-left: 20px;">';
dumpBasicSubmitButton("Refresh", "Refresh", "Refresh page", true);
echo '&nbsp&nbsp&nbsp';
dumpBasicSubmitButton("AddAcquisition", "AddAcquisition", "Add", true);
echo '</div>';
// add a div tag for the grid
echo '</br><div style="margin-left: 5px;" id="AcquisitionListDiv"></div></br>';
// save the passed in company name for the return post
saveExtraParams(array("CompanyID", "FundingID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
authorship (the "Software") available through RENCI upon the terms set
示例#13
0
echo '<div class="col-md-3">';
dumpSearchBootTextField("SearchCompanyName", "SearchCompanyName", "autocomplet()", 35, 35, '', "Search Company Name");
echo "<ul id='SearchCompanyNameList'></ul>";
echo '</div>';
echo '<div class="col-md-2">';
dumpBasicSubmitButton("SearchCompany", "SearchCompany", "Search", true, true);
echo '</div>';
echo '</div>';
if (isset($CompanySearchResult) && !empty($CompanySearchResult)) {
    echo '<div class="info" style="margin-left: 10px; margin-top: 15px;">The following similar companies were found.</div>';
    echo '<div class="info" style="margin-left: 15px; margin-top: 15px;">';
    // load the returned list of duplicates to a list box
    displayMatchCompanyPulldown("companySelect", "companySelect", $CompanySearchResult, 5, 300);
    echo '</div>';
    echo '<div class="info" style="margin-left: 15px; margin-top: 15px;">';
    dumpBasicSubmitButton("AddSelectedCompany", "AddSelectedCompany", "Add selected Company", true);
    // display a button to jump to the details page
    directBlankButton("ViewSelectedCompany", "ViewSelectedCompany", "View selected Company", "directBlankWindow()", true);
    echo '</div>';
    echo '<div id="directErrorMessage" class="err"></div>';
}
// save the passed in company name for the return post
saveExtraParams(array("FounderID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
示例#14
0
// add a div tag for the grid
echo '</br><div style="margin-left: 5px;" id="TechnologiesListDiv"></div></br>';
echo '<table>';
echo '<td>';
echo '&nbsp;&nbsp;Technology&nbsp;&nbsp;';
echo '</td>';
echo '<td>';
dumpBootTextField("Technology", "Technology", 20, 1000, '', "");
echo '</td>';
echo '</table>';
echo '<br>';
echo '<br><br>';
echo '<div style="margin-left: 20px;">';
dumpBasicSubmitButton("Refresh", "Refresh", "Refresh page", true);
echo '&nbsp&nbsp&nbsp';
dumpBasicSubmitButton("AddTechnologies", "AddTechnologies", "Add", true);
echo '</div>';
// save the passed in company name for the return post
saveExtraParams(array("CompanyID"));
echo '</form>';
// finish up the form
include "../Includes/Footer.php";
/****************************************************************************
RENCI Open Source Software License
The University of North Carolina at Chapel Hill

The University of North Carolina at Chapel Hill (the "Licensor") through
its Renaissance Computing Institute (RENCI) is making an original work of
authorship (the "Software") available through RENCI upon the terms set
forth in this Open Source Software License (this "License").  This License
applies to any Software that has placed the following notice immediately