Hey folks,

I'm still working on a app, which allows to disable files in the cloud on the 
webpage.
I made some good progress and everything works as a charm atm.
But now i have a difficult problem.

I made the function disable_control:

function disable_control(filename)
{
                $('#fileList tr td.filename a.name 
span.fileactions').each(function() {
                               var val = $(this);
                               var m = $('#fileList tr td.date a.action');

                                   
if(val.html().indexOf(lockedtext)!=-1||val.html().indexOf(lockstate)!=-1)
                                   {
                                                                              
//m.css('display','none');
                                                                              
val.find('a.action').filterAttr('data-action','Download').css('display','none');
                                                                              
val.find('a.action').filterAttr('data-action','Share').css('display','none');
                                    }
                });
}

The function gets the filename of a locked file. Now i want to remove any 
fileactions, but the file lock fileaction.
Download and Share are working, like they should.

lockedtext is the translated text. Like "Status: file is locked" and lockstate 
is "file is locked".

But i have a problem with the delete-icon. I don't know how i should get the 
delete-icon only for the file which is equal to filename parameter.
You see the comment line in the if condition, it disables every delete-icon.

Do you know a smooth solution to determinate the correct file?

Greets,

Patrick




Gesch?ftsf?hrer: Werner Magin, Winfried Schmuck | HRB 2704 Bad Kreuznach | 
Gesellschafter: Fritz Bittmann Holding GmbH | USt-ID: DE 811 202 181


BITO-Lagertechnik
Bittmann GmbH
Obertor 29
D-55590 Meisenheim      Telefon:
Telefax:
E-Mail:
Internet:       +49 (0) 6753 122 0
+49 (0) 6753 122 399
i...@bito.de
www.bito.de



Dieses E-Mail ist nur f?r den Empf?nger bestimmt, an den es gerichtet ist und 
kann vertrauliches bzw. unter das Berufsgeheimnis fallendes Material enthalten. 
Jegliche darin enthaltene Ansicht oder Meinungs?u?erung ist die des Autors und 
stellt nicht notwendigerweise die Ansicht oder Meinung von BITO-Lagertechnik 
Bittmann GmbH dar.
Sind Sie nicht der Empf?nger und haben diese E-Mail irrt?mlich erhalten, sind 
jegliche Verwendung, Ver?ffentlichung, Weiterleitung, Abschrift oder jeglicher 
Druck dieser E-Mail strengstens untersagt.
Jede ausgehende E-Mail wird von uns mit h?chster Sorgfalt auf Viren gepr?ft. 
Jedoch ?bernehmen weder BITO-Lagertechnik Bittmann GmbH noch der Absender 
(Patrick Hoffmann) die Haftung f?r Viren; es obliegt Ihrer Verantwortung, die 
E-Mail und deren Anh?nge auf Viren zu pr?fen.

This email is exclusively meant for the addressee and may contain confidential 
information or information which can be classified as professional secret. Any 
view or opinion stated in this email is that of the author and does not 
necessarily represent the view or the opinion of BITO-Lagertechnik Bittmann 
GmbH. If you are not the addressee and if this email has been transmitted to 
you by mistake, you may not make use of, publish, transmit, reproduce or print 
the information contained therein for whatever purpose. We take every 
reasonable care to check all out-bound emails for viruses. However, neither 
BITO-Lagertechnik Bittmann GmbH nor the sender (Patrick Hoffmann) can be held 
liable for the occurrence of viruses and any consequential damages. It is 
therefore the addressee's sole responsibility to check incoming emails and 
attachments for viruses.

Anh?nge - :
Versand am 03.03.2014 09:36 von Patrick Hoffmann



_______________________________________________
Devel mailing list
Devel@owncloud.org
http://mailman.owncloud.org/mailman/listinfo/devel

Reply via email to