78 comments found.
Hi,
I want install in cpanel hosting (LAMP). Can you give me information about it? I would like install angular interface
hi i cant export customized template.
{message: “Requires authentication”,…} documentation_url: “https://developer.github.com/v3/gists/#create-a-gist” message: “Requires authentication”
Sir , can buy this template to use my application which i gonna develop ERP application and upload codecanyon to use as instance based, please give me a genuine answer .
Me again Do you know how to write a text on the middle of the nav bar ? vertically and horizontaly center.
Not sure i under the question
You can do this with some custom css. Have a look at .preloader-container selectors for a sample. Thanks
Hi
How do you add a finish button on twitter wizard ? I don’t see a button at the end of your form to send data and button with class “finish” doesn’t work.
have you tried the example from the docs http://vinceg.github.io/twitter-bootstrap-wizard/examples/basic-finishbutton.html
I found a way, thanks
Hello, is possible to use “datatables.net responsive” with “reactor-angular”? for example, like this https://datatables.net/extensions/responsive/examples/column-control/auto.html?
Hi, In the angular version theres s a configuration menu that you can open from a button sticking to the right side of the screen on every page. It looks like this menu isn’t available in the static version ? I would like to use this kind of menu. How can I use this menu in the static version ?
Is it possible to show left menu icon on mobile ? For example, on mobile I wish to access to user menu.
Hi, Are you referring to the quick launch menu?
It’s the menu under Sean Carpenter on your example
Some of the elements in header are hidden with hidden-xs which you can remove
Hi
Is it possible to use static upload with input ? For example someone write things into an input, add file and everything is send ?
Is it possible to know if files has been successfully upload ? and is it possible to reload page or start a script when the upload is finish?
Thank
Hi,
You can use the upload plugin with other inputs. Take a look at the callback options for the plugin https://github.com/blueimp/jQuery-File-Upload/wiki/Options#callback-options , it comes with various event callbacks that meet some of your criteria. Thanks
Any plans on a VueJS version?
No plans fora VueJS version. Thanks
Is Reactor template compatible with Angular 1 or Angular 2?
Hi, I have customized the theme with the configurator. After that, the system gave me a zipped file with a config.json and a reactor.variables.less. How can I load these customizations into my project?
Thanks
Hi,
There should also be a CSS file. You can replace the one in your styles folder with the one from the customizer. If you use LESS then you can use the variable file you got from the generator to replace app.variable.less in your less folder.
Thanks
Do this template support Angular2
Hi,
This template currently only supports angular 1
Thanks
Hi iamnyasha, I am marcsole. I have support and I have written a comment to solve an issue. You told me to send an email to you, but I don’t have it.
Let’s see if you can give your email and I can send with attachments.
Hi
Check the documentation, email address should be there. You can send a message from profile page as well https://themeforest.net/user/iamnyasha#contact
Thanks
Can the pre-loader icon overlay be easily disabled in the static version? The one that covers the page before all the elements have loaded. I just want the page to appear right away.
Hi,
Preloader can be removed easily. It’s simply a matter of removing some html.
Thanks
Unknown provider: $modalInstanceProvider <- $modalInstance <- ModalInstanceCtrl <- ModalInstanceCtrl <- ModalInstanceCtrl <- ModalInstanceCtrl <- ModalInstanceCtrl <- ModalInstanceCtrl <- ModalInstanceCtrl <- ModalInstanceCtrl
thanks
Hi,
Thank you for buying and thanks for reporting this issue. Will look into it and have it fixed soon.
Thanks
Hello, First, contratulations for such a great angular template.
We need to load the side navigation menu items dynamically from server instead of static html. Do you know if the directive side-navigation is ready for that?
In order to make it work, do you recommended to get the JSON array from server in app.main.js? Or do you suggest another place?
Thanks and regards,
Marc
Hi,
Thank you for buying. side-navigation directive navigation should work fine, i’ve had a dynamically generated menu variation for a custom use and it didn’t give any issues. app.main.js should be the best place to load the array.
Thanks
Hello,
I tried this simple code in sidebar-panel.html, but the folder menus remain closed and could not open the children menu options.
If it can help the circle on the right that appears in each menu folder is not showing in my generated code. However, the html generated has the same structure as default static code.
sidebar-panel.html
- {{s.name}}
Hi,
Can you share your code. As is i can’t offer much help. You can send samples via email.
Thanks
Hi, Ok, I will write to you to ask for your email. Thanks,
Hello, I did not receive news, how can I send the two files that I have modified?
Thanks,
Ok great.
Hello i have a laravel project is it possible to merge all the required js into a single file using elixer?
Hi,
Thank you for buying. You should be able to combine your assets with elixir. The requred CSS files are between this block
<!- build:css({.tmp,app}) styles/app.min.css -><!- endbuild ->
and the javascript between
<!- build:js({.tmp,app}) scripts/app.min.js -><!- endbuild ->
Thanks
I tried using Ajax to update charts.js
$.ajax({ type: ‘GET’, dataType: “jsonp”, url: “http://www.apiurl.com/apifunction”, success: function (responseData, textStatus, jqXHR) { console.log(“in”); var data = JSON.parse(responseData); console.log(data); }, error: function (responseData, textStatus, errorThrown) { alert(‘Request Failed.’); } });
Everytime I load the page I get the error Request Failed.
Thanks for buying. There is probably an issue with your request. alert(errorThrown); will likely give you a clue on what the specific error is.
Thanks
I am attempting to use the daterangepicker with ui-jq and have added the ng-model directive to the input field. When I do this, the model is assigned the string value (e.g. “2016-04-01 – 2016-04-30”) as opposed to an actual json object (e.g. {startDate: “2016-04-01”, endDate: “2016-04-30” }. Do you have any suggestions on how to bind a data object with the startDate and endDate fields to the daterangepicker input?