Searchbox controls replaced by JQuery autocomplete.
This commit is contained in:
parent
5f31a9f180
commit
837e1fec61
43 changed files with 1545 additions and 425 deletions
|
@ -138,6 +138,27 @@ namespace WebsitePanel.EnterpriseServer
|
|||
new SqlParameter("@recursive", recursive));
|
||||
}
|
||||
|
||||
//TODO START
|
||||
public static DataSet GetSearchObject(int actorId, int userId, string filterColumn, string filterValue,
|
||||
int statusId, int roleId, string sortColumn, int startRow, int maximumRows, string colType, bool recursive)
|
||||
{
|
||||
return SqlHelper.ExecuteDataset(ConnectionString, CommandType.StoredProcedure,
|
||||
ObjectQualifier + "GetSearchObject",
|
||||
new SqlParameter("@actorId", actorId),
|
||||
new SqlParameter("@UserID", userId),
|
||||
new SqlParameter("@FilterColumn", VerifyColumnName(filterColumn)),
|
||||
new SqlParameter("@FilterValue", VerifyColumnValue(filterValue)),
|
||||
new SqlParameter("@statusId", statusId),
|
||||
new SqlParameter("@roleId", roleId),
|
||||
new SqlParameter("@SortColumn", VerifyColumnName(sortColumn)),
|
||||
new SqlParameter("@startRow", startRow),
|
||||
new SqlParameter("@maximumRows", maximumRows),
|
||||
new SqlParameter("@recursive", recursive),
|
||||
new SqlParameter("@ColType", colType));
|
||||
}
|
||||
|
||||
//TODO END
|
||||
|
||||
public static DataSet GetUsersSummary(int actorId, int userId)
|
||||
{
|
||||
return SqlHelper.ExecuteDataset(ConnectionString, CommandType.StoredProcedure,
|
||||
|
|
|
@ -317,6 +317,15 @@ namespace WebsitePanel.EnterpriseServer
|
|||
sortColumn, startRow, maximumRows);
|
||||
}
|
||||
|
||||
//TODO START
|
||||
public static DataSet GetSearchObject(int userId, string filterColumn, string filterValue,
|
||||
int statusId, int roleId, string sortColumn, int startRow, int maximumRows, string colType)
|
||||
{
|
||||
return DataProvider.GetSearchObject(SecurityContext.User.UserId, userId,
|
||||
filterColumn, filterValue, statusId, roleId, sortColumn, startRow, maximumRows, colType, false);
|
||||
}
|
||||
//TODO END
|
||||
|
||||
public static DataSet GetPackageQuotas(int packageId)
|
||||
{
|
||||
return DataProvider.GetPackageQuotas(SecurityContext.User.UserId, packageId);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue