1. skagitmedia
  2. Bug Report
  3. Thursday, February 18 2021, 11:06 PM
I have an issue getting the radio buttons to display in a custom field. I have the format of the options as suggested in the Options List Tool tip but only the labels display not the radio butons for each option.

My format is: Value|Label

Thanks!
Rob
skagitmedia Accepted Answer
Pro
UPDATE: I was able to get the radio button to work However, There are a couple of Fields that are not displaying in the search ,and there is values in them, when I have enabled them to do so.. I found that there was one issue with a blank condition but I removed that condition on each of the fields that aren't displaying and still it is not displaying.
  1. more than a month ago
  2. Bug Report
  3. # 1
skagitmedia Accepted Answer
Pro
I also tried deleting the two fields in question, Emptied the trash then tried recreating them. They will stil not display in the search.
  1. more than a month ago
  2. Bug Report
  3. # 2
admin Accepted Answer
Admin
Hi,
can you please post me your site details to check your configuration? if yes then you can use the form below the reply in "Site Details" tab
  1. more than a month ago
  2. Bug Report
  3. # 3
skagitmedia Accepted Answer
Pro
Content Protected
  1. more than a month ago
  2. Bug Report
  3. # 4
skagitmedia Accepted Answer
Pro
ok I discovered why the field wasn't showing. I did not include it on the user list page I set up.
I have another question. Is there a way we can setup a sorting drop down where we can sort the list by Last Name, first Name, Call Sign, ETC

Thanks!
Rob
  1. more than a month ago
  2. Bug Report
  3. # 5
admin Accepted Answer
Admin
Hi,
sorry, we have lost this question :(

I have another question. Is there a way we can setup a sorting drop down where we can sort the list by Last Name, first Name, Call Sign, ETC
Unfortunately this is not possible natively, anyway there is a workaround:
- Create many Users List menu item, for each menu item set the different order
- Create a custom module, you can set a position before the content (normally all templates allow this) with following HTML code
<select id="orderlist">
<option value="replace_this_with_url_of_firstname_list">Order By Firstname</option>
<option value="replace_this_with_url_of_lastname_list">Order By Lastname</option>
<option value="replace_this_with_url_of_callsign_list">Order By Call Sign</option>
...
</select>

- Add in your following Javascript code (some template allow you to add JS code in style parameters or via some file like custom.js):
jQuery('#orderlist').change(function(){
window.location.href = jQuery(this).val();
});
  1. more than a month ago
  2. Bug Report
  3. # 6
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.