ThemeForest

Dandelion Admin - Responsive Admin Template

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
qudoos Purchased

Hi

the left hand menu for example forms in the download. When I click on forms it collapses the menu items under it. is it possible to not have that behaviour and be able to have an actual link on the parent menu item like form?

nagaemas

Hi qudoos,

Yes this is the behavior because the form menu itself is a dropdown menu. This needs an update if you want to have a clickable link on it.

Open up the dandelion.core.js file,

find the following lines:

/* Dropdown Navigation */
$('div#da-content #da-main-nav > ul > li').on('click', ' > a, > span', function(e) {
    if( $(this).next('ul').length ) {
        $(this).next('ul').first().slideToggle('normal', function() {
            $(this).toggleClass('closed');
        });
        e.preventDefault();
    }
});

replace the on click selector to this:

 on('click', ' > a[href^=#], > span', ...... 

Then the dropdown will only work on links that contains a ’#’ and not actual links.

Thanks :)

Default-user
qudoos Purchased

thanks it works.

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years

Hi, we are really interested in purchasing this & font mind working with you on on this for long term. We need to know if you intend to get this theme compatible with bootstrap Version 2.3.0.

Thanks!

nagaemas

Hi sunnyzimm,

Thank you for your interest in my template. Yes, Bootstrap 2.3 will be implemented soon on all my templates. Update will come up soon in March.

About the job, you can mail me more about it :)

Thanks :)

Default-user

Actually we need to get started on a project ASAP with it and need it to be compatible with the latest version of twitter bootstrap :)

nagaemas

Actually upgrading later would be not too hard since not all bootstrap components were included on this template.

Unfortunately, updates will not be coming up until March, currently I’m busy making a new theme.

Thanks :)

Default-user

OK cool, any exact date in March ?

nagaemas

Hi,

I can’t promise dates yet, but surely it will be in March :)

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Found a bug between 1.2 and 2.0. Please advise:

Switching from 1.2 to 2.0 causes icons placed in the side menu section to mess up. See before/after images here:

http://imgur.com/a/JmaCx
nagaemas

Hi,

Thanks for notifying me, this is a bug and will be fixed on the next version :) Next version coming up soon. Meanwhile, you can fix this by adjusting the CSS and font size for the icons in the submenu:

add the following CSS


#da-main-nav > ul ul > li .da-nav-icon {
    padding-left: 0;
}

This should fix it, but let me know if it doesn’t work.

Thanks

Default-user

Worked pretty good. The icons didn’t line up quite perfectly but I ended up shrinking it to 16×16 in my html anyways and it looks fine now. Thanks!

nagaemas

Hi, yes resizing the icons to 16×16 is recommended from what I saw when doing the fix, they were too big. Great you solved it!

About the last update on the customization I sent you, was there anything you need help on?

Thanks

Default-user

Customization worked great. Had to make some small changes to the spacing a bit but that’s all personal taste items.

On a second note, tried using:

https://github.com/dangrossman/bootstrap-daterangepicker

with some limited success.

http://imgur.com/craPT68

Is this an issue with the theme (bootstrap 2.2.1) or the control? Please advise.

nagaemas

Hi james,

Sorry for the late reply, The issue with daterangepicker seems to be related to the Bootstrap components. This template doesn’t include all Bootstrap elements since only some of them were used so some styles that are probably used by the component are missing.

I recommend just using the jquery-ui datepicker for making the rangepicker. I’ll try integrating the component on the next version of this template.

Thanks :)

Default-user

I’ve used jQuery UI datepicker extensively with this skin already. It’s not very useful and useable in an analytics environment. Just an FYI :-)

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hi there,

Thanks for an amazing template!

Everything’s working just as it should apart from – when you visit on IE8, the login form fills the width of the page and the input boxes are squashed in the corner.

Do you have a fix for this? (The login page is completely untouched…).

nagaemas

Hi ampmdirect,

Thank you very much for purchase :) About your issue, I’ll try look into it, since this template was tested on IE8 before release and nothing was wrong with it. Maybe I did accidentally something that caused it on the latest update.

Thanks for notifying me. Best Regards

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hit,

it seems that there is an issue with elfinder launched from elrte: the text box for Margins section are too wide. Any workaround for this?

Thx

nagaemas

Hi mrugeles,

This will be fixed on the next update soon, maybe in about a month :) Meanwhile, you could alter the css for the text boxes inside elrte.css.

Thanks

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hi there,

Thanks for an amazing template. I have question.

Will you update this continous? ex) bug fix..

nagaemas

Hi ideamix,

Thank you :) Yes there will be bug fixes released overtime. But for now, I’m not planning to release any update for this template for a while :)

Thanks :)

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
morgs1x1 Purchased

I like this template but one major issue I’m facing to modify it to suit my ASP.NET MVC is the use of element id’s in the Javascript and CSS. Surely use of id’s is now old school? For instance, form validations won’t work if you don’t go and change the id’s referenced in the demo.validation.js! You would think the validation will simply target elements with matched attributes, but now each form need to have it’s own initialization in javascript for the validation, a blunt nightmare if your system has 100 different forms. Almost everything implemented in this template references element IDs and you’ve to change everything everywhere which is really a lot of work if one would think buying a template is supposed to make your job much easier but in this case I’m taking hours figuring out where what sits.

nagaemas

Hi morgs1×1,

Yes, I know that using ID’s is not recommended, but the elements in this template are purely just for examples of what you can do with each element.

You always need to change it to suit your needs, I recommend to just write your own functions and define your own HTML markup, with the examples as a starting point.

Thank you, Best Regards

Default-user
morgs1x1 Purchased

Thanks for your quick response. Just a suggestion, it’s a good idea to write code that can easily be changed such as using matched attributes and classes other than specific element ID’s, especially in your javascript. That way you only have one initialization/instance and it simply becomes even much easier to modify but in this case it’s like I’m re-implementing everything which defeats the purpose of buying a template. Hope you understand? Otherwise good work, it’s a great kick start!

nagaemas

Yes, I understand, recently I’ve also stumbled upon an article about the bad of using ID’s in websites.. so I’ve been avoiding ID’s too in my newest templates.

I’m sorry for making you have to re-implement each element. The template was created one year ago, when I was still new here :)

Thanks for the suggestion anyway, Best Regards.

Default-user
morgs1x1 Purchased

Sure thing! Would you kindly send me links to some of your new templates?

nagaemas

I haven’t made any new admin templates recently, but I’ll keep in mind about this… Thank you

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Very nice template, keep up the good work! cheers

nagaemas

Thanks for purchasing!

by
by
by
by
by