Discussion on Altair - Admin Material Design UIkit Template

Discussion on Altair - Admin Material Design UIkit Template

By
Cart 3,301 sales
Well Documented

tzd supports this item

Supported

This author's response time can be up to 2 business days.

670 comments found.

hi… echart english version? download refresh button etc..

tnx… i need quiz module in altair…. please next release?

Hi, ok, I’ll add quiz component to my todo list. I think I’ll go with https://github.com/jewlofthelotus/SlickQuiz

What do you mean by ”...with test size, test search angularjs?” Do you have any examples?

How to use autocomplete textbox with dynamic data content using jquery in altair ?

Hi, for automplete dynamic data please check http://codepen.io/anon/pen/JEQeGz

Do you provide access to a git repository for this template? I would find it easier upgrading across versions with this capability. Thanks!

Hi, I’m sorry but there is no public available git repository for Altair template. At the moment I’m quite busy but I’ll think about creating git repository for Altair.

Any chance you will be updating this theme to work with uikit v3? If not now, when do you think?

Hi, probably yes but I need to think about it.
At the moment there is a lot of components missing in v3 (Slideshow, Slider, Slideset, Parallax, Nestable, Lightbox, Dynamic Grid, HTML editor, Date- and Timepicker). Also there was a lot of changes between v2 and v3 regarding html and css.
Altair template package size is already very large (>250MB) and If add UIKit v3 the size will be doubled and it would be very hard to update and provide support for both this versions.

Hi – similar to the dashboard top four small cards (visitor last 7d, etc), how do I add animation (transition) effect for other cards – e.g., Chart, User Messages, Statistics, etc. Please let me know. Thanks.

Hi, to add this transition you only need to add ‘hierarchical_show’ class to parent container, eg:
<div class="uk-grid uk-grid-width-large-1-4 uk-grid-width-medium-1-2 uk-grid-medium hierarchical_show" data-uk-grid-margin="">
        <div>
            <div class="md-card">
                <div class="md-card-content">
                    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias aliquam autem, cupiditate doloremque eos et eveniet fuga harum in ipsa iusto magnam magni minus natus optio quam quos saepe similique?
                </div>
            </div>
        </div>
</div>

Has the theme got inline editable plugin.

Hi, at the moment there is no inline editable plugin, in next update I’ll add this feature.

Hi my friend is any way to add easily the back to top fab button?

Hi, add this code after #page_content
<div id="page_content">...</div>
<div class="md-fab-wrapper">
    <a class="md-fab md-fab-danger md-fab-wave" href="#page_content" data-uk-smooth-scroll="{offset: 48,duration: 600}"><i class="material-icons"></i></a>
</div>

Hi tzd, I’m interested in purchasing your template and I’m wondering if you’re planning to do the following things:

1- any release for vue.js?

2- a more complete mailbox page just like other templates do (Make)

3- improve the pricing table with a better design?

4- a timeline page

5- possibility to drag and drop in Tree View

6- a better left side menu design

7- what version of jquery are you using?

8- what is the UIKit for? is it a replacement of jqueryUI?

The following are a little bugs that i’ve noticed:

9- in validation demo, the checkbox don’t validate

10- in wizard page: when I’m in “Vihcle Information” (step 2), i can not go back to step 1 by clicking on “Previous” button until I completely fill the form

Looking forward to hearing back from you very soon

Cheers

Hi, on the demo page it shows only one notification at the time but you can have as many as you want, you just need to modify js code a bit:
// assets/js/pages/components_notifications.js
// replace button 'click' event function with this
$body.on("click", "[data-message]", function(){
    var $this = $(this);
    showNotify($this)
});

OK thanks, I’ll try it out and will let you know if I run into any issues.

P.S. thanks for your support and celerity, I highly recommend people to go with your template ;)

Thank you :)

Not sure if this is possible for the next update, but something that’s always bugged me about the template is I often have to click twice on a link for it to take effect. For example, toggle the left-hand menu, dropdown the alerts popup, especially on mobile devices, etc. Can you look into this at all?

Hi, I did not experienced that issue, I also didn’t have any reports regarding this issue. Could you tell me more about this. I suppose that it has something to do with fastclick plugin, please add ‘needsclick’ class ( https://github.com/ftlabs/fastclick#advanced ) to this links and let me know if it works for you.

thanks for last update. 1-i have a problem when opening modal while the card on full screen. when md card on full screen active, i have a button to open a modal from within this card. once the modal loaded the card will suddenly disappear. can you check this?!

2-another problem with data-uk-tooltip, this is not working when you mouse hover on one element while the card on fullscreen active.

Hi, I’ll fix this issues in next update.

I like the EnjoyHint Tour but the text overlaps and gets pushed off-screen on a small screen device (for example, portrait iPhone). Is there any way to resolve this?

Hi, sorry for the delay. Unfortunately I don’t have a solution for that issue. I’ll add it to my todo list and I’ll try to fix this asap.

A bug report for the next update; the chatboxes page wraps the settings and close icons in the popup box when displayed and they’re transparent when clicked.

Hi, I can’t reproduce this issue. Could you send me more info? what os/browser are you using? Could you send me a screenshot with this issue?

Hi, you are right, thank you for the info. It will be fixed in next release.

Hi, I have a problem with the data-section-clone inside a wizard form, outside the wizard it clones the div but inside it doesn’t work. Also it doesn’t work in a modal.

Any suggestions ?

Thanks in advance Antonios

Next update will be released today.

Thanks for the update but the problem are not fixed.

Hi, you are right about the wizard, it seems that dynamic forms are not working inside wizard. It’s strange, I had this on my todo list and somehow I missed that, sorry about that. I’ll fix that asap. Send me a message next week, I’ll have updated function for dynamic forms that will work in wizard.
For modals please try:
<button class="md-btn uk-margin-bottom" data-uk-modal="{target:'#modal_default'}">Dynamic Form in Modal</button>
<div class="uk-modal" id="modal_default">
    <div class="uk-modal-dialog">
        <button type="button" class="uk-modal-close uk-close"></button>
        <div data-dynamic-fields="field_template_modal" />
        <script id="field_template_modal" type="text/x-handlebars-template">
            <div class="uk-grid form_section">
                <div class="uk-width-1-1">
                    <div class="uk-input-group">
                        <label for="d_form_address{{counter}}">Address</label>
                        <input type="text" class="md-input" name="d_form_address{{counter}}" id="d_form_address{{counter}}">
                        <span class="uk-input-group-addon">
                            <a href="#" class="btnSectionClone"><i class="material-icons md-24"></i></a>
                        </span>
                    </div>
                </div>
            </div>
        </script>
    </div>
</div>
hi I Have problem when I use Firefox Browser because of Undefinding event variable in event.target.localName when I use ng-table in app.directive.js with run this function scope.event = function (data, e) { let value = "", row = {}; if (event.target.localName == 'button') { value = $(event.target).closest("tr").attr('data-value'); row = $(event.target).closest("tr").attr('data-row'); } else { value = $(event.target).closest('ul').attr('data-value'); row = $(event.target).closest('ul').attr('data-row'); } row = JSON.parse(row) scope.$parent[data](value, row); } plz guide me .

Hi, do you have maybe a url that you can share with me? I’ll check what’s wrong. In the meantime please check http://stackoverflow.com/questions/30777870/angularjs-error-event-is-undefined-firefox-only

thanks for answer, I have read thread, This method will change all pages I’m looking for a section of code that automatically add $event to all functions

plz guide me.

I think it’s not possible to get $event object without passing it in directives, please check https://docs.angularjs.org/guide/expression#-event-
In your case maybe you can use custom directive or ‘override’ ngClick directive http://stackoverflow.com/a/18425418

how do I check/uncheck the data-switchery component Using Jquery/Javascript ? I want to show different data on check/uncheck.

Hey.. I want to check & uncheck check boxes dynamically.. Like if I click on one link check box has to check dynamically with jquery function..

Hi, please check methods on http://icheck.fronteed.com/
// sample code
$('link_class_or_id').on('click', function(e) {
  e.preventDefault();
  // check 
  $('input_class_or_id').iCheck('check');
  // uncheck
  $('input_class_or_id').iCheck('uncheck');
  // toggle
  $('input_class_or_id').iCheck('toggle');
})

Can you please consider adding support for E-Charts? (https://ecomfe.github.io/echarts/index-en.html) This charting library looks fantastic compared to others.

Hi, this charts looks very nice, I’ll add them to my todo list and I’ll try to add them to Altair asap.

HNYear… new update?

96+

please don’t do that, I know that I said that it will be ready in less than 72 hours but I was not ready (I don’t want to release update with bugs). I’ll upload this new release today.

ok thanks

How to find checkbox id and see weather checkbox in checked/unchecked “data-md-icheck” in jquery

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey