当我单击第二个选项卡时,我希望加载 callrecords.html 代码,但它没有加载任何内容并且窗格保持空白。我有点菜鸟,似乎无法弄清楚为什么会这样。
也是一个侧面问题。为什么有些代码示例说 dojoType 而其他示例使用 data-dojo-type。
<body class="tundra">
<div class="formContainer" dojoType="dijit.layout.TabContainer" >
<div dojoType="dijit.layout.ContentPane" title="Advanced Search">
<label for="first_name">First Name:</label>
<input type="text" name="first_name" id="first_name"
size="30" /><br/>
<label for="last_name">Last Name:</label>
<input type="text" name="last_name" id="last_name"
size="30" /><br/>
<label for="middle_initial">Middle Initial:</label>
<input type="text" name="middle_initial" id="middle_initial"
size="1" /><br/>
</div>
<div dojoType="dijit.layout.ContentPane" title="Call Records" data-dojo-props='href:"modules/content_panes/callrecords.html", refresnOnShow:true'></div>
<div dojoType="dijit.layout.ContentPane" title="Phones">
<label for="home_phone">Home Phone:</label>
<input type="text" name="home_phone" id="home_phone"
size="30" /><br/>
<label for="work_phone">Work Phone:</label>
<input type="text" name="work_phone" id="work_phone"
size="30" /><br/>
<label for="cell_phone">Cell Phone:</label>
<input type="text" name="cell_phone" id="cell_phone"
size="30" /><br/>
</div>
</div>
</body>
呼叫记录.html
<h1>Tab 2</h1>
<p>I am tab 2. I was loaded externally as well.</p>