Hello guys!
I'm using the UpdateList method to hide some lists libraries, while they don't need to be used.
When I try to unhide then, it isn't working ;p
I'm using the following code to hide then:
$().SPServices({ operation: "UpdateList", listName: "LibraryName", listProperties:"<List Hidden='true' />", completefunc: function (xData, Status){ console.log($(this)) } });
And the following code to try to unhide:
$().SPServices({ operation: "UpdateList", listName: "LibraryName", listProperties:"<List Hidden='false' />", completefunc: function (xData, Status){ console.log($(this)) } });
Any suggestion?
Thanks!