언어 설정

Menu
Sites
Language
Why don't the button work?

In index.html there are 

    <script type="text/javascript" src="./lib/tau/mobile/js/tau.js"></script>
    <link rel="stylesheet"  href="./lib/tau/mobile/theme/default/tau.css">
 
and signUpForm.html has those codes too.
<script type="text/javascript" src="./lib/tau/mobile/js/tau.js"></script>
    <link rel="stylesheet"  href="./lib/tau/mobile/theme/default/tau.css">
 
If I annotate TAU in index. signUpForm.html's buttons work well.
If both of files have TAU, signUpForm.html's function don't work...
What is the problem...????
 
You can try this project.
 
http://oneshottenkill.tistory.com/181
Edited by: 명훈 심 on 03 3월, 2018

Responses

1 댓글
Armaan-Ul- Islam

As far as I've worked with Tizen Web application, Tizen web app works with the HTML file included as content in config.xml.

One thing you can try is to add the others files also as content in config.xml source. Like:

 

<content src="index.html"/>
<content src="signUpForm.html"/>
<content src="selection.html"/>

 

If this trick doesn't work out and Tizen web app recognizes only a single html file as content then: You may have to shift all your codes to index.html.

 

The Project template 'TAU Multipage' may give you some Idea on "How it should be done" in Tizen Web.

New > Template > Mobile > Web > TAU Multipage