429 comments found.
After follow the steps of documentation crud-app is organized in left side and after login all with big size , where I can change it ?
Can you post me screenshots to email pls?
Hallo,
When i using WYSIWYG editor from http://www.tattek.sk/minovate-noAngular/form-common.html, i click to “link icon” or “image icon”, a modal popup, but i can’t input anything to form 
Hey, please try to follow this thread https://github.com/summernote/summernote/issues/978
hiii,,how to run minoovate on xampp server??
Hi, you can run just builded version of app via xampp
Demo online of CRUD don’t work…I put login and password but don’t load!
Hello, thanks for reporting….it should be fixed now.
Thanks a lot! Now I will buy! Congratulations!
Do you have intention to instead of using GRUNT use GULP ? How would you do that for ? Or have you thought about doing this ?
Hey, I haven’t think about using GULP instead of GRUNT
Hello , after config my config.js I got a blank screen could you help me to solve it ?
thanks
Hey, all right this one is should answer all your previous question:
it’s really straightforward to use your own firebase database so the main steps are:
1. Create your own database at firebase 2. Enable Email & Password Authentication under “Login & Auth” section 3. Replace database url in FBURL constant at “config.js” file 4. Run the app 5. Register an new account 6. Login with new account 7. Use the app
hello Tattek , as I told you , I did this process and CRUP-APP do not work , in CRUD app there’s two folders.
APP DIST
I can make it working using files from DIST , but if I use the files from APP I saw a blank screen and stop with this.
I saw many peoples asking about this , and all with the same problem ,
could you please check what’s happening with this ?
thanks
I can share with you print in email … .can I ?
DIST folder is a builded app where you shouldn’t change anything as all files are compiled etc., if you want change the settings or anything you have do that in APP folder (you can run app with “grunt serve”) and after that you can build your app by running “grunt build”
Hello , could you please give me more instrutions to configure CRUD app
I created app in firebase and already change the file js . so I’m not able to create and delete information.
thanks
Hi;
We just bought your them. I was wondering to use the CRUD application.
I couldn’t make it work with my own Firebase account. After changing the url on the scripts/config.js file; i could’t build a structure and a first user to pass the login.
It’s possible if you share documentation or an example of the firebase structure on your: .constant(‘FBURL’, ‘https://resplendent-heat-5958.firebaseio.com/)
Not only the users, add also how you manage a CRUD module resources (Categories, Products, Orders, etc).
By the way, how can i use the yeoman generator to buil a new CRUD module (like “Deliveries”), and that i get all the html, js and css automatically.
Thanks!
Hello , could you please give me more instrutions to configure CRUD app
I created app in firebase and already change the file js . so I’m not able to create and delete information.
thanks
I purchased your theme and wanted to use the angular seed project but when I executed the grunt serve task, it failed because there’s no karma task defined in the grunt file. All I get when the app runs is this message: http://localhost:3001/ { tinylr: “Welcome”, version: “0.0.5” }
Hey, so this error is throwing some king of angular seed project? Have you tried to follow the documentation and run grunt serve in minovate app folder?
Hello Tattek, first of all thank you very much for your extraordinary work! Just marvelous! I’ve got a small question, I use the template in plain old html. Is there any sample to lock the screen with a spinner in a modal, until some background process completes? Keep up the good work! Kind regards
Hey, thank you very much, so are you using non angular version of template?
Yes, i’m using the non angular version of the template.
Hey, take a look on that plugin http://malsup.com/jquery/block/
perfect! thank you very much!
Have you a steps to config CRUD ?
Hey, what exactly do you mean by config CRUD?
config to use as the information in the app description.
I uploaded the files from CRUD-APP to my server , create a database in firebase and change de js file , but is not working yet.
Hi there, I just finished an application using the angular version of your template, now I need to build this template to make a version with the minifyed scripts and other stuff, how can I do that ?
You should just run “grunt build”
Hi..I got the files downloaded, ran grunt serve and everything is working fine with angular. When i tried to split app.js file, by creating a new (routes.js) file, the routes.js file is not auto built and i get a gray screen. How can i overcome this?Is it not possible i can have my own controller and view.
Did you add that file into index.html?
Hello How can i submit the Form Wizard? There are multiple <form> Elements and only one button outside the forms. How can i add the submit Url?
Thank you
Hey, you have two options:
1. you can wrap whole tabset in one form element
2. you can attach ng-click action to submit button and handle form submit via controller
Can you post a Code Snippet please?
like this:
<form>
<uib-tabset active="activePill" vertical="true" type="pills">
<uib-tab index="0" heading="Vertical 1">...</uib-tab>
<uib-tab index="1" heading="Vertical 2">...</uib-tab>
</uib-tabset>
</form>
Hey, sorry for the late reply. But i mean the HTML, not the Angular Version. So actual it looks like this:
<div class="tab-content">
<div class="tab-pane" id="tab1">
<form name="step1" role="form" action="#" method="POST">
Form Elements....
</form>
</div>
<div class="tab-pane" id="tab2">
<form name="step2" role="form" action="#" method="POST">
Form Elements....
</form>
</div>
<div class="tab-pane" id="tab3">
<form name="step3" role="form" action="#" method="POST">
Form Elements....
</form>
</div>
<ul class="pager wizard">
SUBMIT BUTTON
</ul>
</div>
The problem is, that the submit button is outside the <form> elements and that there are 3 different form elements. If I press the submit button, nothing happens (Same in your demo)
How can i solve this in the html version?
Thank you
Hey, hmm that seems like I made a mistake
, you can try to follow this demo to change the code.
Overall you have to wrap whole form wizard to one form and instead of multiple forms, also you have to change validation in “onNext” and “onTabClick” functions. It should look like that:
<form>
<div class="tab-content">
<div class="tab-pane" id="tab1">
Form Elements....
</div>
<div class="tab-pane" id="tab2">
Form Elements....
</div>
<div class="tab-pane" id="tab3">
Form Elements....
</div>
<ul class="pager wizard">
SUBMIT BUTTON
</ul>
</div>
</form>
and the jquery functions:
onNext: function(tab, navigation, index) {
var tab= $('div[id="tab'+ index +'"]');
tab.parsley().validate();
if (!tab.parsley().isValid()) {
return false;
}
},
onTabClick: function(tab, navigation, index) {
var tab= $('div[id="tab'+ (index+1) +'"]');
tab.parsley().validate();
if (!tab.parsley().isValid()) {
return false;
}
}
then you can just easily handle form submit as normal. Hope it helps.
Hey Tattek. Yes I tried this before. But he won’t validate the form and I get a JS-Error: TypeError: tab.parsley().validate is not a function. (In ‘tab.parsley().validate()’, ‘tab.parsley().validate’ is undefined)
When I click the “Next Button”, the page reloads completly and Iam still on the first tab.
<form>
<div class="tab-content">
<div class="tab-pane" id="tab1">
Form Elements....
</div>
<div class="tab-pane" id="tab2">
Form Elements....
</div>
<div class="tab-pane" id="tab3">
Form Elements....
</div>
<ul class="pager wizard">
<li class="previous"><button class="btn btn-default">Zurück</button></li>
<li class="next"><button class="btn btn-default">Weiter</button></li>
<li class="next finish" style="display:none;"><button type="submit" class="btn btn-success">Speichern</button></li>
</ul>
</div>
</form>
JS like you said:
onNext: function(tab, navigation, index) {
var tab= $('div[id="tab'+ index +'"]');
tab.parsley().validate();
if (!tab.parsley().isValid()) {
return false;
}
},
onTabClick: function(tab, navigation, index) {
var tab= $('div[id="tab'+ (index+1) +'"]');
tab.parsley().validate();
if (!tab.parsley().isValid()) {
return false;
}
}
If I put the <form> Elements in, with the old JS (Original Code) the “onNext” and “onTbClick” functions works perfect.
Hey guy. Great theme!
What is the cleanest way to add additional right sidebars w/ toggles? I’d like a sidebar for notifications and a sidebar for general help.
Looking at your main.js it doesn’t appear that I can just add an extra sidebar and get away with it because you are adding the show/hide classes on the body and there is just a single set.
I was thinking of maybe extending your rightbar-hidden/rightbar-show classes via SASS with a rightbar-2-hidden/rightbar-2-show but again, looking at your main.js I would have to add that in multiple places e.g., the variable declaration, the on click event, and the default visibility section (layout function).
This is all doable (I think) but it feels dirty and the reason I purchased this awesome theme was to avoid that stuff. hehe
Love to hear your thoughts on this.
Hey, from your question I suppose you are talking about non-angular version, right?
Yep, I’m referring to the non-angular version.
Hmm….maybe you can add some specific class to the rightbar based on which toggle you clicked and then you can just show/hide specific content with css based on that class.
OK, that is easy to implement.
I noticed you included Jquery UI in the js vendors folder. Do you remember what exactly you are using Jquery UI for in the non-angular version?
I am going to be including it for drag and drop and autocomplete functionality but that’s it so I’d like to be able to use a leaner custom build. I just want to make sure you aren’t using it elsewhere, requiring the full build.
Thanks.
Hello, I suppose you can safely use custom build of jquery-ui if you’ll include drag and drop functionality as only this one is used for portlets from whole jquery-ui library.
There is a bug in the crud version, occurs at launch, then prog works OK despite the error.
Error: [$rootScope:infdig] 10 $digest() iterations reached. Aborting! Watchers fired in the last 5 iterations: []
This bug did not exists in previous version of angular, it seems that nobody on internet knows why…
https://docs.angularjs.org/error/$rootScope/infdig?p0=10&p1=%5B%5D says: This error occurs when the application’s model becomes unstable and each $digest cycle triggers a state change and subsequent $digest cycle. Angular detects this situation and prevents an infinite loop from causing the browser to become unresponsive. For example, the situation can occur by setting up a watch on a path and subsequently updating the same path when the value changes.Could you please tell me how to correct. Best Regards Louis
Oh I’m sorry, I’ve forgot the “latest” versions in bower.json file, I have to fix that in new version, for now just use angular of version “1.4.7”, thanks
Hello,
I’ve not been working for about a month on my project with your theme. I executed the command “grunt server” on the terminal and the browser is giving me the following error: [$injector:unpr] Unknown provider: $mdUtilProvider
Do you have any idea of which it may be the cause?
Thanks in advance for any reply.
Hey, have you tried to re-run “bower install” command? Thanks
Can I customize what users see based on their profile? Example: user A can see these widgets, user B can see those widgets plus these other widgets, premium user C can see a whole suite of widgets ?
Hey, yes you can but you have to prepare your backend first, then you can just use something like that for every element:
<div class="widget" ng-if="userA">...</div>
hi Tattek,
Issue about “chosen select”.
When user click on select box then type in the search box and type a word Like “Interior”. then it will find related text but if user will give space between two words LIKE “Interior desi” then it will show No Result found.
<option>Interior Designers</option> <option>Interior Decorators</option> <option>House Keeping</option>
Please help sir.
Hello Tattek,
Hope your are fine.
I want to hide menu bar in small screen and when user will click on menu icon then desktop menu bar will open