You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to make the ressource-name clickable it would be helpful to add a data-field to the TD (around Line 4972: ...td data-id='" + id + "' class='fc-resourceName'...)
The text was updated successfully, but these errors were encountered:
I found it simpler to add the data value to the TR, rather than to every TD
line 5257 becomes html += "<tr class='fc-resourcerow-" + id + "' data-rowid='" + id + "'>" +
you can then use the jquery selector $(this).parent().closest('tr').data('rowid'); to retrieve the id for the resource
to make the ressource-name clickable it would be helpful to add a data-field to the TD (around Line 4972: ...td data-id='" + id + "' class='fc-resourceName'...)
The text was updated successfully, but these errors were encountered: