fixed: Thingy fields list on view screen tab
This commit is contained in:
parent
40ed2b52b8
commit
a266358d2e
2 changed files with 7 additions and 6 deletions
|
|
@ -24,6 +24,7 @@
|
|||
- fixed: Form/Date and Form/DateTime to properly return MySQL formatted and epoch formatted times
|
||||
- fixed: Invitation EMails Escape Characters
|
||||
- fixed: EMS Formatting (Badge Page)
|
||||
- fixed: Thingy fields list on view screen tab
|
||||
|
||||
7.5.18
|
||||
- fixed: Collateral Image Manager broken in Firefox 3
|
||||
|
|
|
|||
|
|
@ -221,19 +221,19 @@ function initAddFieldDialog() {
|
|||
search_tr.appendChild(label_td);
|
||||
|
||||
var displayInSearch_td = document.createElement('td');
|
||||
displayInSearch_td.id = "search_label_"+listItemId;
|
||||
displayInSearch_td.id = "search_displayInSearch_"+listItemId;
|
||||
displayInSearch_td.className = 'tableData';
|
||||
displayInSearch_td.innerHTML = "<input type='checkbox' name='displayInSearch_"+listItemId+"' value='1' checked='checked' />";
|
||||
search_tr.appendChild(displayInSearch_td);
|
||||
|
||||
var searchIn_td = document.createElement('td');
|
||||
searchIn_td.id = "search_label_"+listItemId;
|
||||
searchIn_td.id = "search_searchIn_"+listItemId;
|
||||
searchIn_td.className = 'tableData';
|
||||
searchIn_td.innerHTML = "<input type='checkbox' name='searchIn_"+listItemId+"' value='1' />";
|
||||
search_tr.appendChild(searchIn_td);
|
||||
|
||||
var sortBy_td = document.createElement('td');
|
||||
sortBy_td.id = "search_label_"+listItemId;
|
||||
sortBy_td.id = "search_sortBy_"+listItemId;
|
||||
sortBy_td.className = 'tableData';
|
||||
sortBy_td.innerHTML = "<input type='radio' name='sortBy' value='"+listItemId+"' />";
|
||||
search_tr.appendChild(sortBy_td);
|
||||
|
|
@ -252,13 +252,13 @@ function initAddFieldDialog() {
|
|||
view_tr.appendChild(view_label_td);
|
||||
|
||||
var display_td = document.createElement('td');
|
||||
display_td.id = "search_label_"+listItemId;
|
||||
display_td.id = "view_display_"+listItemId;
|
||||
display_td.className = 'tableData';
|
||||
display_td.innerHTML = "<input type='checkbox' name='display_"+listItemId+"' value='1' checked='checked' />";
|
||||
view_tr.appendChild(display_td);
|
||||
|
||||
var viewScreenTitle_td = document.createElement('td');
|
||||
viewScreenTitle_td.id = "search_label_"+listItemId;
|
||||
viewScreenTitle_td.id = "view_viewScreenTitle_"+listItemId;
|
||||
viewScreenTitle_td.className = 'tableData';
|
||||
|
||||
// only the first field should be checked by default
|
||||
|
|
@ -531,4 +531,4 @@ YAHOO.extend(YAHOO.draglist.DDList, YAHOO.util.DDProxy, {
|
|||
|
||||
Event.onDOMReady(YAHOO.draglist.DDApp.init, YAHOO.draglist.DDApp, true);
|
||||
|
||||
})();
|
||||
})();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue