![]() |
|
Can Plugin Edit Image Meta Fields? - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: Plugins (https://forum.zenphoto.org/forum-6.html) +--- Thread: Can Plugin Edit Image Meta Fields? (/thread-11488.html) Pages:
1
2
|
Can Plugin Edit Image Meta Fields? - the_voder - 2013-11-29 Hi acrylian, do you mean? Unfortunately, that returns all the elements containing 'Custom data', including the parent elements of the tds I want to get. a|x Can Plugin Edit Image Meta Fields? - acrylian - 2013-11-29 I haven't tried but wouldn't this help?: Can Plugin Edit Image Meta Fields? - the_voder - 2013-12-10 Hi acrylian, the problem is the tables containing the items I want to select are also not uniquely identified, so if I use nth:child I may end up selecting items in other backend tabs or panels. a|x Can Plugin Edit Image Meta Fields? - the_voder - 2013-12-10 This seems to work: $("table[id|='image'] tbody tr:nth-child(n)").hide(); where n is the row number. It's complicated by the fact that some of the rows of the containing table for the data for each image contain further tables, but the method above does appear to work. a|x Can Plugin Edit Image Meta Fields? - acrylian - 2013-12-10 Good that you figured something out. |