Hello All,
I am trying to override the web2py default theme and use customized jqueryui theme. Hence I downloaded the customized jqueryui js files and css files. Copied them to static folder of my test project. I created the jqueryui folder under static folder. I created the layout1.html file which I am using as extended layout. Mentioned below is first code in layout1.html
Part1 :
response.files.insert(0,URL('static','jqueryui/css/excite-bike/jquery-ui-1.10.4.custom.css'))
response.files.insert(1,URL('static','jqueryui/js/jquery-1.10.2.js'))
response.files.insert(2,URL('static','jqueryui/js/jquery-ui-1.10.4.custom.js'))
response.files.insert(3,URL('static','css/web2py.css'))
response.files.insert(4,URL('static','css/bootstrap.min.css'))
response.files.insert(5,URL('static','css/bootstrap-responsive.min.css'))
response.files.insert(6,URL('static','css/web2py_bootstrap.css'))
}}
{{include 'web2py_ajax.html'}}
<script>
$(function() {
$( "#accordion" ).accordion();
$( "#button" ).button();
)};
</script>
====================================================
under default.index.html i wrote
{{extend 'layout1.html'}}
<div id="accordion">
<h1>
<a href="#">Par1</a>
</h1>
<p>
This is new para
</p>
<h1>
<a href="#">Par1</a>
</h1>
<p>
This is new para
</p>
</div>
Now when I press F12 to check html page source I see all the files are properly included (I mean js and css files) However, I don't see accordion or button from jqueryui theme.
I read the one article posted by rami. I am newbie and fail to reach solution from that thread. Please post step by step help.
Regards,
Sarfaraz Ahmed