toolset-dave
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Collapse button for Repeatable Field Group
Gestartet von: toolset-dave
in: Toolset Professional Support
Problem: I would like to use jQuery Collapse for showing and hiding repeatable field groups (RFG) in a View, but the code isn't working when I have more than one RFG. Solution: Use CSS classes instead of IDs as your jQuery targets. <div> <fieldset class="majorpoints" > <legend class="majorpointslegend">Expand</legend> <div class="mylist" style="display:none" > <ul> <li>2</li> <li>3</li> </ul> </div> </fieldset> </div> <div> <fieldset class="majorpoints" > <legend class="majorpointslegend">Expand</legend> <div class="mylist" style="display:none" > <ul> <li>2</li> <li>3</li> </ul> </div> </fieldset> </div> <div> <fieldset class="majorpoints" > <legend class="majorpointslegend">Expand</legend> <div class="mylist" style="display:none" > <ul> <li>2</li> <li>3</li> </ul> </div> </fieldset> </div> jQuery(document).ready(function($){ $('.majorpointslegend').click(function(){ if($(this).text()=='Expand'){ $(this).next('.mylist').show(); $(this).text('Collapse'); }else{ $(this).next('.mylist').hide(); $(this).text('Expand'); } }); }); Relevant Documentation: |
2 | 3 | vor 6 Jahren, 1 Monat | ||
Collapsible treeview for multiple checkboxes
Gestartet von: toolset-dave in: Toolset Professional Support |
2 | 6 | vor 6 Jahren, 1 Monat | ||
Ordering of Repeatable field groups
Gestartet von: toolset-dave in: Toolset Professional Support |
3 | 8 | vor 6 Jahren, 4 Monaten | ||
Restricted access to CPT based on User roles
Gestartet von: toolset-dave
in: Toolset Professional Support
Problem: Solution: Relevant Ticket & Solution: |
2 | 5 | vor 6 Jahren, 4 Monaten | ||
How to hide other plugins for specific roles using Toolset Access?
Gestartet von: toolset-dave in: Toolset Professional Support |
2 | 2 | vor 6 Jahren, 4 Monaten | ||
Move data from rows to columns
Gestartet von: toolset-dave in: Toolset Professional Support |
2 | 10 | vor 6 Jahren, 6 Monaten | ||
How to change value of the Submit button in Relationship Forms
Gestartet von: toolset-dave
in: Toolset Professional Support
Problem: Solution: For example: [cred-form-submit label="your custom label"] You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 7 | vor 6 Jahren, 7 Monaten |