1192 comments found.
Hi !
First of all I really like your work but I have an important problem using one feature of datatables on iOS devices : The button to display more info per row in datatables doesn’t work on iOS. The button is correctly created in javascript but on click nothing happens the additional row doesn’t appear..
And another detail : the icon (plus) doesn’t change to minus on any devices.
Thanks in advance !
Hi there
First are you using the file assets/js/datatables.js ?
Maybe its because of the click area is not big enough.
If you have used assets/js/datatables.js demo JS script you will find the code
$('#example2 tbody td i').live('click', function ()
Change it to
$('#example2 tbody td.expand').live('click', function ()
and add the class “expand” to the TD with the icon “fa fa-plus-circle”

Thanks for your answer, I did what you suggested but unfortunatly the problem is still here … : The “details” row does open on normal device but it doesn’t on iOS device …
And I tried with your live preview there is the same problem..
Other suggestion ?
Thanks in advance !
Hi there
Really sorry about the late reply.
You should change it to the following
it works that way
$('#example2 tbody td').on('click touch', function ()
Perfect it works now even only like this :
$(’#example2 tbody td i’).on(‘click’, function ()
But this icon fa-plus-circle / fa_minus-circle still doesn’t work … Sorry to ask you something else and thank you anyway !
Sure I’m sorry about the confusion
$('#example2 tbody td i').on('click touch', function () {
var nTr = $(this).parents('tr')[0];
if ( oTable.fnIsOpen(nTr) )
{
/* This row is already open - close it */
$(this).addClass("fa-plus-circle");
$(this).removeClass("fa-minus-circle");
oTable.fnClose( nTr );
}
else
{
/* Open this row */
$(this).addClass("fa-minus-circle");
$(this).removeClass("fa-plus-circle");
oTable.fnOpen( nTr, fnFormatDetails(oTable, nTr), 'details' );
}
});
This would work 
Yes that’s it I found the mistake and actually it’s easier to use toggleClass. Thanks again I really like your work and last question : will you update this template soon ?
Yes there will be
mostly bug fixes like this. Webarch actually has alot of features like even RTL so only thing that is missing is Angular JS and that is going to be the next update
Hi Ace,
If possible, i need a help. I have a page with following js and css.http://pastebin.com/0qAJqnVY
lets call it ParentPage.
I have advanced datatable page which contains following js and css.
http://pastebin.com/eTk45j86
lets call it Child Page.
I am dynamically replacing html content of a div of ParentPage with full ChildPage.
on hitting Childpage seperately, it loads datatable correctly but does not load when put under parentpage. I tried so much but cant get it work. It is too much to ask, but please help if it comes under your scope.
Hi there
Maybe something is wrong with Paste bin I only see CSS and JS include list is that correct ?
It easier if you can work on https://gist.github.com/I could update your code from here
sure I’ll be happy to help you out
Unable to use https://gist.github.com/. have put code in pastebin again. if required, i will mail the same.
PFP Parent:
http://pastebin.com/ATjXQ37g
Child:
http://pastebin.com/mSa0Xc1X
Ok so first thing is make sure
Data table scripts is loaded in the parent page
<script src="assets/plugins/jquery-datatable/js/jquery.dataTables.min.js" type="text/javascript" ></script> <script type="text/javascript" src="assets/plugins/datatables-responsive/js/datatables.responsive.js"></script> <script type="text/javascript" src="assets/plugins/datatables-responsive/js/lodash.min.js"></script>
Also may I ask why you had to import all the scripts ?
your page will be very heavy, just a suggestion. That is why we recommend to start on barebone folder 
Afterwards, when load the content via AJAX on the success event you append your content
$('#myContainer').append(data)
after that line you add the following
$('#example').datatable();
$('#example2').datatable();
$('#example3').datatable();
This happens because your DOM does not contain the elements when the page is loaded initially and the plugin needs to be initialized once the DOM is updated 
did the same thing and yet its not loading..
yes you are right i should not load those js simultaneously. i will rectify it.. 
hi there..
basically what i am doing is on clicking on navigational menu, i am loading content in div. if above mentioned thing is not possible, please let me know so that i change my flow.
thank you 
Hi there
Sorry about the late reply, hope you had a great weekend. 1 ) How do you load the content jquery ajax ? 2 ) do you append the content using jquery append ?
Also can you open up your console in chrome ? and see if you got any JS errors ? 
Hello,
I really like your theme-Dashboard, but I have some doubts: 1) Do you offer the installation service? 2) I would like to install in a domain, like if were a website, could I use it as This? 3) Could I use the chat and alerts from the admin panel? 4) Could I create accounts for users?
Thank you in advanced of your reply.
Regards,
Orlando
Hi there
Its not a one click installation, Webarch is a template that contains html files, css and js
to make it really working and functional you will have to develop the services/functions. Example login. First you will have to see what your going to create, the functions etc and what your app can do for you
you implement those and link it with Webarch theme. This is for helping anyone building an app focus on the functionality we have taken care of the look and feel 
Hi,
i would like to know if you can supply a drupal 7 compatible theme for your great theme. I understand that this – if possible – will require some kind of customization. Do you undertake that kind of a project and if yes what would be the cost and how much time would you need in order to deliver the drupal theme?
thank you in advance
Hi there
Sorry pages do not support drupal
Currently we can not take in customization or take in 3rd party projects as we have a lot work with updates. Hope you understand. Thank you very much for inquiring about it. Let me know if you have further questions
hello, how I can disable some date in the date picker I saw the documentation, but does not come much concerning this subject, I appreciate your help
Hi there
The current bootstrap plugin does not have a proper way of doing it but you can try the start and end time
Hi, first of all, great theme! Love it.
Can you please help me with the Mapplic script? I upload the json modified to my server, but I always get the “Data failed or missing”. I copy the same json included in the demo and get the same error.
I am using the files included in the Barebone folder. I linked all the mapplics files like the ones used in the widgets.html files. I don’t understand why, If I link your json everythign works fine, but linking mine has problems.
Any advice? Do you have the Mapplic documentation? I ask because is not included in the help file.
Thanks.
Hi there
Can you drop an email to support@revox.io, will send you the doc for mapplic, it has a detail guide 
Hey! First of all: Nice work, I really do appreciate your admin template!
But I have one hint for you and a question:
The Hint: Sometimes you use ${VARIABLE} in your SASS Files, but it has to be #{$VARIABLE}. Otherwise it can’t get compiled properly. Furthermore you use the base-img-path directly in some url() instead of the variable. That’s not consequent 
Now my question: As I could see, you offer also the Admin Template “Pages”. It looks very similar to Webarch. Is Pages the “new version” of webarch? Will you still deliver new updates for webarch or do you just concentrate on pages so far?
Cheers, Sascha
Hi there
Thank you for giving that hint will look into it 
Pages is a whole new level of admin template and so far its very demanding
it will be getting new updates and also webarch will also get new updates like Angular, We will not discontinue webarch we will still update it.
good morning, I have a big problem, I am working to form one form wizard and mask inputs but the form wizard is not displayed correctly and the input mask not go if I remove the following plugins: <script src = “assets / plugins / bootstrap-datepicker / js / bootstrap-datepicker.js” type = “text / javascript”> </ script> <script src = “assets / plugins / bootstrap-timepicker / js / bootstrap-timepicker.min.js” type = “text / javascript”> </ script> <script src = “assets / plugins / bootstrap-colorpicker / js / bootstrap-colorpicker.js” type = “text / javascript”> </ script>
and not display correctly the input mask if I remove these lines html <input type = “checkbox” name = “switch” class = “n” checked = “checked” /> <input type = “checkbox” name = “switch” class = “iosblue” checked = “checked” />I think they have nothing to do with the input mask I find it too weird, I hope I can help
Hi there
Have did you use the form_elements.js ?
its not required to use it let me know
No, just use this form_validations.js
Ok if your using chrome press f12 go to the console tab and see if you can see any errors ?
No, only one warning in jquery-1.8.3.min:
Empty String for getElementById().
This is a bit strange, Is there anyway you can send me the HTML code ? or for me to see a live link ? 
this is part of my HTML tags:
PASO 2 – Información personal
<label>Nombre</label> <input type=”text” placeholder=”Nombre” class=”form-control no-boarder ” name=”txtnombre” id=”txtnombre”/> <label>Apellido paterno</label> <input type=”text” placeholder=”Apellido paterno” class=”form-control no-boarder ” name=”txtapellido_paterno” id=”txtapellido_paterno”> <label>Apellido materno</label> <input type=”text” placeholder=”Apellido materno” class=”form-control no-boarder ” name=”txtapellido_materno” id=”txtapellido_materno”> <label>Nacionalidad</label> <select name=”cmbnacionalidad” class=”select2 form-control”> <option selected=”true”></option> <option>Mexicana</option> <option>Extranjera</option> </select> <label>R.F.C. (Registro Federal del Contribuyente)</label> <input type=”text” placeholder=”R.F.C.” class=”form-control no-boarder ” name=”txtrfc” id=”txtrfc”> <label class=”form-label”>Telephone</label> <input type=”text” class=”form-control” id=”phone”>
my plugins js:
<script src=”plugins/jquery-1.8.3.min.js” type=”text/javascript”></script> <script src=”plugins/jquery-ui/jquery-ui-1.10.1.custom.min.js” type=”text/javascript”></script> <script src=”plugins/bootstrap/js/bootstrap.min.js” type=”text/javascript”></script>
<script src=”plugins/jquery-scrollbar/jquery.scrollbar.min.js” type=”text/javascript”></script> <script src=”plugins/bootstrap-select2/select2.min.js” type=”text/javascript”></script> <script src=”plugins/boostrap-form-wizard/js/jquery.bootstrap.wizard.min.js” type=”text/javascript”></script> <script src=”plugins/jquery-validation/js/jquery.validate.min.js” type=”text/javascript”></script> <script src=”plugins/jquery-inputmask/jquery.inputmask.min.js” type=”text/javascript”></script>
<script src=”js/form_validations.js” type=”text/javascript”></script>
<script src=”js/core.js” type=”text/javascript”></script> <script src=”js/demo.js” type=”text/javascript”></script>
not think it’s necessary to put CSS files; all part of the html tags are in a form wizardHi there
It looks ok from here, I will add a form wizard with a input mask and send it over to you
can you drop an email to support@revox.io ?
Ok thanks for your time
Hello Ace,
I’ve read in the comments that an Angular.js version was going to be released by the end of december. Tried to see previews in some links, but none of them are working. Any updates on this? Sorry to bother, but this is essential for the project I am working on.
Thanks!
Hi there
I’m abit sorry our v1.1 got delayed with the holidays. You will recieve an email from theme forest
. Will do my best to get it out very soon 
Hi Ace,
I’m working on a python webapplication with webarch and I have a Q about the data tables.
I would like to make it possible to add and remove entries into the datatable by adding an “add” and “remove” button on top of a data table. The buttons can either post the datatable by form action=”POST” or submit them with jQuery, doesnt matter.
I’ve tried to add the “add” and “remove” button in datatables.js but I can’t figure it out.
I can see you’ve created 3 preconfigured div-id layouts (example1, example2 and example3) but I can’t edit them properly.
Can you tell me how to create an “remove” and “add” button in a datatable?
Thanks brew! 
Hi there
Sure, follow the guide and make sure you download and include bootstrap-datatable.js 
Hi Ace,
Thanks for helping me out. I’ve downloaded the code and copied it in the barebone but I still can only see the basic data table, can you tell me how I use the code you provided? Should I add the js files in the header and leave the default js files in use? Also where can I edit the functionality of the buttons of the app. I would like to controll the actions (example add or remove).
Hi there
The bootstrap-datatable.js should come after
<script src="assets/plugins/jquery-datatable/js/jquery.dataTables.min.js" type="text/javascript" ></script> <script src="assets/plugins/jquery-datatable/extra/js/dataTables.tableTools.min.js" type="text/javascript" ></script>
We have shown it in the datatable.html file 
It has to be in a correct order and its not a good practice to add it to the head.
Once you have done that include mycustom.js
after bootstrap-datatable.js. Thats it 
Thanks Ace for helping me out, I really appreciate it.:) I tried the code but console trows: Uncaught SyntaxError: Unexpected token ) – mycustom.js:16. Also on what lines can I add buttons to the data table like “add, modify and delete”?
Hi there
Really sorry about that, my bad
I updated it
https://gist.github.com/teamrevox/b2a9f894d5e213ffa862you can use the mycustom.js again 
Alright thanks for the code update. However, I still only have one button “add” and I would like 2 more buttons “modify” and “remove”. Can you tell me maybe on what lines I should add htm code so I will have an “modify” and “remove” button? The code you provided doesnt do that?
Hi there
No the code that I provided only has add Feature
were you able to set it up ? If not please let me know I will setup a separate HTML page with ADD feature so that it will not drag your task.
there is no function to Remove or Edit
but I can setup a page for you, will that be ok ?
Hi Ace,
The add function works fine, thanks. 
I will create an remove and edit function myself in python, no problem.
The thing is that I don’t know how I can add the buttons “edit” & “remove” to the data table.
I think it has to be done somewhere in datatables.js in javascript but I don’t know where. So basicly what I want is a data table with 3 buttons: “add”, “edit” and “remove” and I want to them to call javascript or send a submit or whatever (I will controll the action) but first I need to know how I add the button.
Solved.
Solution:
var oTable = $('#example2').dataTable( {
"sDom": "<'row'<'col-md-6'l T><'col-md-6'f>r>t<'row'<'col-md-12'p i>>",
"oTableTools": {
"aButtons": [
{
"sExtends": "text",
"sButtonText": "<button type='submit' class='btn btn-white'></button><button type='submit' class='btn btn-white'></button><button type='submit' class='btn btn-white'></button>",
}
Oh you wanted to add the buttons
yes that is correct, what about the functionality ? 
I got the functionality covered by posting the datatable as an array. Next I match the array against a database and perform a delete / modify action. It’s not the most beautifull way like jQuery does it but it gets the job done.
Thanks mate, I love the theme!
Great! 
Great theme so far. Would recommend anyone to buy 
Found a minor bug when adding modals. If you style your content with a fadeIn class like such:
<!-- BEGIN PAGE CONTAINER-->
<div class="page-content">
<div class="content">
<!-- BEGIN ROW 1 -->
<div class="row animated fadeIn display" style="display: block;">
The modal animation will not complete and stay stuck with the .modal-backdrop staying in front.
https://www.dropbox.com/s/38onl9ufp5o97u0/Screenshot%202014-12-27%2009.18.46.png?dl=0
Solution for now is to not use the "animated fadeIn" of the content. However, since I really like the feel this gives to the interaction of our dashboard, it would be nice to see a solution to this.</div></div></div>
Hi there
Can you check if the following code is there in CSS or LESS depending on what your using ? 
body.modal-open .page-container {
position: inherit;
}
Hi Ace,
Thanks for the quick reply!
Using scss and it is inside layout.scss (and the css file that is generated of course) like this:
body {
....
&.modal-open {
.page-container {
position: inherit;
}
....
}
It is also not overwritten by any other css and the position of the page-container is actually inherit when the modal is shown.
Can you try adding the modal div tags above content div ? 
Ah superb! It worked, placing the modal code outside of page content and between “END SIDEBAR” – “BEGIN PAGE CONTAINER” works.
Thanks again for quick reply and keep up the great work 
Sorry About the Confusion of Angular State, Webarch will now have angular version by end of December
Happy Holidays to everyone
Hello Everyone! 
Webarch Angular development is on paused due to the following reason
http://ng-learn.org/2014/03/AngularJS-2-Status-Preview/Sorry about the confusion Angular JS v2.0 will not be available till late 2015 so we will continue making it with Angular JS 1.3 for webarch 
Do you know how I can save the text in an input when the form can’t be submitted? I can’t use your form validation because I’m using file upload.
Hi there
I did not get that properly do you want retrieve the value of the text field in to a variable ? 
Hi, I’m trying to use the switch control in a table with generated rows, but only the first checkbox is styled with iso-switch style. And even then it is always checked.
Am I using it wrongly, I believe I have imported all the necessary files?
I placed a breakpoint in form_elements.js and here is the exception on line 7 of the file :
Unhandled exception at line 7, column 1 in http://localhost:88/assets/js/form_elements.js 0×800a1391 – JavaScript runtime error: ‘require’ is undefined
and here is line 7:var Switch = require('ios7-switch'), checkbox = document.querySelector('.ios'), mySwitch = new Switch(checkbox);
Please help, Thanks
*iso => iOS
Hi there
That is because it is trying to find the element ’.ios’ div in your html
You can remove that code and it will be fine, form_elements.js is a js we created for demo purposes you can extract the required file into your personal JS
Thanks, but that doesn’t solve my problem of trying to use multiple switches.
Hi there Im abit confused, you can create a the multiple with class name ios
<div class="slide-primary">
<input type="checkbox" name="switch" class="ios" checked="checked"/>
</div>
<div class="slide-success">
<input type="checkbox" name="switch" class="iosblue" checked="checked"/>
</div>
Hello Ace,
Love this theme..
I need to use the sliding up-down widget in Live preview. But I can’t. (May be i don’t know from where to start.) It has a good set of documentations but still need a guidance as in how can i start using the widgets. I tried using it copying from Preview files to the barebone html. But it is not working. Can’t figure which CSS’s are missing.
Please help.
Glad you like it
In order to assist you, I’d like to know the following:
- Are you referring to this widget
- Have you included the necessary plugin JS/CSS?
- Do you see any JS errors/404 errors in the console?
hii there 
I am talking about http://screencloud.net/v/3ouW widget which keeps sliding upwards. How to know which JS/CSS needs to be included? No there is no error.
It is getting overlapped like in http://screencloud.net/v/F6q4
Can you please send us a demo link to support@revox.io so that we can do a test from our end. Thanks.
hii, It is on my local environment.can I share code with you?
Sure!
what is it in php ?
I have send an HTML code to given email id with subject “HTML Code of Slider”.
And also, can you please provide me the steps to install new icons in this template (if it is possible to install)?
thanks 
I have send an HTML code to given email id with subject “HTML Code of Slider”.
And also, can you please provide me the steps to install new icons in this template (if it is possible to install)?
thanks 
Hi there
Sure ill check it up!
and yes you everything goes inside the assets/plugins/ folder and then you link it back on you HTML
is it a font icon set ?
ok
No its an image and i wanted to use it as an icon.
Hello ace,
dropzone is not working. I inclded: <script src=”assets/plugins/dropzone/dropzone.min.js” type=”text/javascript”></script>
<link href=”assets/plugins/dropzone/css/dropzone.css” rel=”stylesheet” type=”text/css”/>
Please let me know what i am missing. my code is:
<form action=”/file-upload” class=”dropzone no-margin”> <input name=”file” type=”file”/> </form>Hello ace,
dropzone is not working. I inclded: <script src=”assets/plugins/dropzone/dropzone.min.js” type=”text/javascript”></script>
<link href=”assets/plugins/dropzone/css/dropzone.css” rel=”stylesheet” type=”text/css”/>
Please let me know what i am missing. my code is:
<form action=”/file-upload” class=”dropzone no-margin”> <input name=”file” type=”file”/> </form>Hi there
You have done it correctly
Could you have the div structure as the following way
<form action="/file-upload" class="dropzone no-margin">
<div class="fallback">
<input name="file" type="file" multiple />
</div>
</form>
and also included the following JS code
https://gist.github.com/teamrevox/fc40db173bac593fadc8and see how it turns out to be ? Also is there any JS error in the console log ?
Hello Ace, Still not working. I put that script in my code between script tag. and No js error is being shown. the form is enclosed in another form. if i run it separately, it works fine, but if thie (<form action=”/file-upload” class=”dropzone no-margin”>) form in another form, it is not working.
Hello Ace, Still not working. I put that script in my code between script tag. and No js error is being shown. the form is enclosed in another form. if i run it separately, it works fine, but if this (<form action=”/file-upload” class=”dropzone no-margin”>) form is in another form, it is not working.
Hello Ace, Still not working. I put that script in my code between script tag. and No js error is being shown. the form is enclosed in another form. if i run it separately, it works fine, but if this (<form action=”/file-upload” class=”dropzone no-margin”>) form is in another form, it is not working.
Hello Ace, Still not working. I put that script in my code between script tag. and No js error is being shown. the form is enclosed in another form. if i run it separately, it works fine, but if this (<form action=”/file-upload” class=”dropzone no-margin”>) form is in another form, it is not working.
Hello Ace, Still not working. I put that script in my code between script tag. and No js error is being shown. the form is enclosed in another form. if i run it separately, it works fine, but if this (<form action=”/file-upload” class=”dropzone no-margin”>) form is in another form, it is not working.
Hi there
Why is your comment being spamed :/ you will get marked as spammed by envato 
Also I had a look around the multiple form is the thing thats causing the issue you can do something like this 
Hello, I m sorry man but after adding a reply, it gets vanished on refreshing the page and i thought some error might have occurred so i kept sending
Anyway, dropzone is still not working so i am definitely doing something wrong. Can i share the code with you? and also, previously i shared that sliding widget thing please let me know the way around.
Hi there
That alright
any can you drop me your html code and js too ?
I will try myself and see too
I have sent you the code.. 
Dear Ace,
Please come back.. 
Hi there
Im really sorry about this delay, loads of request and we are running out of resources to handle, hope you understand our situation I will ask my colleague to check it up tomorrow as I will be taking the day off 
hello there.. I totally understand..
thanks and have a good time.. 
Hi there
Just having a look at your code 
thanks man..

Mailed 
hello Ace,
Thank you so much. Finally i got dropzone working
but the wizard is not moving ahead after second step. (there was already this error in the code i sent you.) The js errors are
—>”Error: No URL provided.”
—>”TypeError: this0 is undefined”
P.S.: I think root cause of my problem is improper loading of js while customizing the template. Is there any hint i can smoothly manage the JSs? It would really help me as i think i am wasting your time too.. and also, I have sent an email 10 days ago regarding “sliding widget”. I am trying different combinations but still it is not working.
thanks a lot.. 
Hey Ace, that sliding widget thing is working now..
(wizard thing is not
)
Hi there
Wish you a very happy Holiday
sorry about the delays its season time 
about the html file that I sent you does not have an js Error, can you check it up in your end, Did you use the html file I sent or you altered the code ? let me know
Merry Christmas Ace.. 
I have not altered the code. Error log is:
Use of getPreventDefault() is deprecated. Use defaultPrevented instead. jquery-1.8.3.min.js:2 ReferenceError: require is not defined form_elements.js:7 Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead ios7-switch.js:64 Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead ios7-switch.js:1 Use of Mutation Events is deprecated. Use MutationObserver instead. jquery-1.8.3.min.js:2 Error: Dropzone already attached. dropzone.min.js:1
—-After clicking on next/Previous
Empty string passed to getElementById(). jquery-1.8.3.min.js:2
TypeError: this0 is undefined jquery.validate.min.js:2
Empty string passed to getElementById(). jquery-1.8.3.min.js:2
thank you 
For better view :
- Use of getPreventDefault() is deprecated. Use defaultPrevented instead. jquery-1.8.3.min.js:2
- ReferenceError: require is not defined form_elements.js:7
- Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead ios7-switch.js:64
- Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead ios7-switch.js:1
- Use of Mutation Events is deprecated. Use MutationObserver instead. jquery-1.8.3.min.js:2
- Error: Dropzone already attached. dropzone.min.js:1
-
—-After clicking on next/Previous - Empty string passed to getElementById(). jquery-1.8.3.min.js:2
- TypeError: this0 is undefined jquery.validate.min.js:2
- Empty string passed to getElementById(). jquery-1.8.3.min.js:2
Hi there
No they are not errors
deprecated are just warnings which you can ignore and it will not cause any problem.
This is something that is causing the problem
TypeError: this0 is undefined jquery.validate.min.js
I think you have missed the validation, the next button triggers a function in form wizard
$('#rootwizard').bootstrapWizard({
'tabClass': 'form-wizard',
'onNext': function(tab, navigation, index) {
var $valid = $("#commentForm").valid();
if(!$valid) {
$validator.focusInvalid();
return false;
}
else{
$('#rootwizard').find('.form-wizard').children('li').eq(index-1).addClass('complete');
$('#rootwizard').find('.form-wizard').children('li').eq(index-1).find('.step').html('<i class="fa fa-check" />');
}
}
});
The following function triggers
onNext
$("#commentForm").valid()
You need to define your validation
var $validator = $("#commentForm").validate({
rules: {
emailfield: {
required: true,
email: true,
minlength: 3
},
txtFullName: {
required: true,
minlength: 3
},
txtFirstName: {
required: true,
minlength: 3
},
txtLastName: {
required: true,
minlength: 3
},
txtCountry: {
required: true,
minlength: 3
},
txtPostalCode: {
required: true,
minlength: 3
},
txtPhoneCode: {
required: true,
minlength: 3
},
txtPhoneNumber: {
required: true,
minlength: 3
},
urlfield: {
required: true,
minlength: 3,
url: true
}
},
errorPlacement: function(label, element) {
$('<span class="arrow" />').insertBefore(element);
$('<span class="error" />').insertAfter(element).append(label)
}
});
This is all shown in form_validation.js
do not use that file but extract the required code
Let me know
Hi
Sent you can email 
Ace, you are AWESOME..
thanks a lott.. 
hi there, how are you?
I am creating a modal pop up, in which i need bootstrap wizard. Now modal pop up works in bootstrap version 3, and wizard works on bootstrap version 2. how to remove confliction between these two? is there any way i can make both of them work with same bootstrap version?
Hi there
Sorry about that, please update the current bootstrap form wizard js if your using the min file
https://github.com/VinceG/twitter-bootstrap-wizard/blob/master/jquery.bootstrap.wizard.min.jsand here is the entire project 
Hi Ace, is there any way to get rid off from export feature of data tables? on clicking of the export dropdown,options fall for the formats, but they did not toggle on clicking dropdown again.. thanks..
Hi there
In you script that you have initialized the datable you will find an attribute
“oTableTools” remove the entire block it will look like this
"oTableTools": {
"aButtons": [
{
"sExtends": "collection",
"sButtonText": "<i class="fa fa-cloud-download" />",
"aButtons": [ "csv", "xls", "pdf", "copy"]
}
]
},
Did you the script int assets/js/datatables.js ?
hi there.. i did but its worse now. PFA screenshot: http://screencloud.net/v/9aNK
Alright can you try removing the following script
<script src="assets/plugins/jquery-datatable/extra/js/dataTables.tableTools.min.js" type="text/javascript" ></script>
That is at the bottom of the page and do try to avoid using assets/js/datatables.js
and create your own JS file.
on doing this, the search box also got disappeared..
(can i keep it and remove all the export buttons?)
Is it possible for me to see your html and js code?
you can drop it over to support@revox.io
hi Ace,
i did “display:none;” to “DTT” and “datatable_length” in jquery.datatables.css and is working fine.. 
Great! 
Hi, I’m sorry if this is a really dumb question. I’m pretty new to Ruby on Rails and I’m trying to get this theme in an app. I’ve attempted to put the files into the assets folder and such but it just isn’t working out for me. errors, errors, errors (It’s definitely my bad though)
Has anyone applied this to a Rails project?
If it’s actually not too much of a hassle, can someone apply this to a rails project? It just needs the theme, and doesn’t actually have to do anything. I really just can’t figure out where to put all the css and js files and all the plugins. I’ve spent hours trying to figure this out, and at this point I’m getting pretty desperate 
If you can help me, I’ll love you forever and ever. Thanks.
Hi there
In webarch we only give the HAML files
so if you put all the webarch assets stuff in the public folder then it would work 
Let me know if you were able to
Hey Can you add me to the WebArch Git repository? My email is in my profile.
Thanks!
Hi there
We do not have your email
if you can drop it to support@revox.io I will add you to the repo
i think the sidebar litl buggy,
if i use long navigation without widget my last nav, didn’t show
Hi there
I did try to replicate what you were talking about but did not get the same result, is it possible for a screenshot ? 
first, thanks for your fast response, i love it,
here the screenshot : https://drive.google.com/file/d/0B0plWTd5eW2WM2lDV21fNWZyb00/view?usp=sharing
oh yeah, for your feedback please create mini size of web arch make itu elegant, my manager said, navbar , sidebar, font etc too big, it looks like you create web arch for big resolution only? plese dont do that, i really love web arch, please accept my request. oh ya FYI my resolution 1366×768
thanks
Hi there
We did create it for 1366×768 resolution too
you could try to decrease the font size to about 12px currently its at 13px, try changing the font size in the body.
also for the menu add the following class and attribute try changing the value till you get your result 
also make sure its in the correct place
.page-sidebar{
padding-bottom:150px;
}