mantiskanban icon indicating copy to clipboard operation
mantiskanban copied to clipboard

See All Proiect

Open dinamoq opened this issue 8 years ago • 8 comments

Hi. I want to see all proiect .what i have to modify? Thanks.

dinamoq avatar Mar 02 '16 05:03 dinamoq

Would like to see if this is possible as well. Thanks!

morrison23 avatar Dec 03 '16 22:12 morrison23

At the moment there is no such possibility.

He tried to e-doceo resolve its distribution. But it does not work. Maybe one day I'll do it, but now I do not have the time and motivation.

alorenc avatar Dec 04 '16 18:12 alorenc

Is this issue referring to projects being inaccessible from the "Select Project" drop down list when the user has access to so many projects that the drop down list extends past the fold of the browser? Or is it something completely different?

bullarni avatar Mar 24 '17 07:03 bullarni

Hi, I have the same question. I can't see all projects because there isn't any scrollbar.

Olibad avatar Mar 27 '17 13:03 Olibad

I added style="height: 800px; overflow: auto" inside ul div, in file index.html, line 71 : <ul id="projectlist" class="dropdown-menu" style="height: 800px; overflow: auto"> <!-- dropdown menu links --> </ul> Now, I have the scrollbar in my project list.

Olibad avatar Mar 27 '17 16:03 Olibad

If you submit a merge request, I'll pull it in after review.

Thanks

Corey Gaspard MyGait LLC http://www.mygait.com Cell: 281.794.2576

On Mon, Mar 27, 2017 at 11:30 AM, Olibad [email protected] wrote:

I added style="height: 800px; overflow: auto" inside ul div, in file index.html, line 71 :

Now, I have the scrollbar in my project list.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/cgaspard/mantiskanban/issues/50#issuecomment-289508068, or mute the thread https://github.com/notifications/unsubscribe-auth/AAuU-nEmdSFQ4u2bU9OScFr5DxPoOOWKks5rp-QdgaJpZM4HnIkc .

cgaspard avatar Mar 27 '17 16:03 cgaspard

We did something similar. I recommend changing the height to max-height so that users with only a few projects don't see an unnecessarily long drop down with just a few entries in it.

That will create an accessible menu for most devices. To improve this to work better across different screen sizes you can add the following (untested) JavaScript:

$(function(){    
    function setProjListHeight(){
        $("#projectlist").css({'max-height' : $("#contentarea").height() + 'px'});
    }
    
    $(window).on('resize', function () {
        setProjListHeight();
    });
    setProjListHeight();
});

That script will allow you to make the most of the available height in your browser for the project list and will continue to work if you happen to resize your browser to less than 800px high.

Not sure where the best place to add this script would be.

bullarni avatar Mar 28 '17 00:03 bullarni

I had your proposition in a merge request.

Cordialement,

Olivier Badet

De : bullarni [mailto:[email protected]] Envoyé : mardi 28 mars 2017 02:46 À : cgaspard/mantiskanban Cc : BADET, Olivier; Comment Objet : Re: [cgaspard/mantiskanban] See All Proiect (#50)

We did something similar. I recommend changing the height to max-height so that users with only a few projects don't see an unnecessarily long drop down with just a few entries in it.

That will create an accessible menu for most devices. To improve this to work better across different screen sizes you can add the following (untested) JavaScript:

$(function(){

function setProjListHeight(){

    $("#projectlist").css({'max-height' : $("#contentarea").height() + 'px'});

}



$(window).on('resize', function () {

    setProjListHeight();

});

setProjListHeight();

});

That script will allow you to make the most of the available height in your browser for the project list and will continue to work if you happen to resize your browser to less than 800px high.

Not sure where the best place to add this script would be.

— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/cgaspard/mantiskanban/issues/50#issuecomment-289628545, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AZemb-sqrB1y8soRfvTDLzP-w0fGRz4Eks5rqFgrgaJpZM4HnIkc.

Olibad avatar Mar 28 '17 07:03 Olibad