sort
This commit is contained in:
+101
-7
@@ -874,13 +874,107 @@
|
||||
title="Select / deselect all"
|
||||
/>
|
||||
</th>
|
||||
<th>Name</th>
|
||||
<th>Company</th>
|
||||
<th>Email</th>
|
||||
<th>Stage</th>
|
||||
<th>Strategy</th>
|
||||
<th>Category</th>
|
||||
<th>Date Next Contact</th>
|
||||
<th
|
||||
onclick="crmToggleSort('Name')"
|
||||
style="
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
"
|
||||
>
|
||||
Name
|
||||
<span
|
||||
class="sort-arrow"
|
||||
data-sort="Name"
|
||||
></span>
|
||||
</th>
|
||||
<th
|
||||
onclick="
|
||||
crmToggleSort('Company')
|
||||
"
|
||||
style="
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
"
|
||||
>
|
||||
Company
|
||||
<span
|
||||
class="sort-arrow"
|
||||
data-sort="Company"
|
||||
></span>
|
||||
</th>
|
||||
<th
|
||||
onclick="crmToggleSort('email')"
|
||||
style="
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
"
|
||||
>
|
||||
Email
|
||||
<span
|
||||
class="sort-arrow"
|
||||
data-sort="email"
|
||||
></span>
|
||||
</th>
|
||||
<th
|
||||
onclick="crmToggleSort('Stage')"
|
||||
style="
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
"
|
||||
>
|
||||
Stage
|
||||
<span
|
||||
class="sort-arrow"
|
||||
data-sort="Stage"
|
||||
></span>
|
||||
</th>
|
||||
<th
|
||||
onclick="
|
||||
crmToggleSort('strategy')
|
||||
"
|
||||
style="
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
"
|
||||
>
|
||||
Strategy
|
||||
<span
|
||||
class="sort-arrow"
|
||||
data-sort="strategy"
|
||||
></span>
|
||||
</th>
|
||||
<th
|
||||
onclick="
|
||||
crmToggleSort('category')
|
||||
"
|
||||
style="
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
"
|
||||
>
|
||||
Category
|
||||
<span
|
||||
class="sort-arrow"
|
||||
data-sort="category"
|
||||
></span>
|
||||
</th>
|
||||
<th
|
||||
onclick="
|
||||
crmToggleSort(
|
||||
'date_next_contact',
|
||||
)
|
||||
"
|
||||
style="
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
"
|
||||
>
|
||||
Date Next Contact
|
||||
<span
|
||||
class="sort-arrow"
|
||||
data-sort="date_next_contact"
|
||||
></span>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="crm-table-body">
|
||||
|
||||
Reference in New Issue
Block a user