dijit form button repeats itself

556
2
08-31-2013 03:22 PM
by Anonymous User
Not applicable
Given the following code, all four dijit.form.buttons repeats themselves within the same DIV...once as styled via the iconClass and again as a small, generic button. Ideas?

Thanks, rGibson

<div id="header" dojotype="dijit.layout.ContentPane" region="top">
      <input id="toolNearFacility" data-dojo-type="dijit/form/Button" data-dojo-props="iconClass:'findNear', showLabel: false, value: 'nearFacility'">
         <input id="toolBookMark" data-dojo-type="dijit/form/Button" data-dojo-props="iconClass:'bookMark', showLabel: false, value: 'bookMark'">
         <input id="toolBufferPoint" data-dojo-type="dijit/form/Button" data-dojo-props="iconClass:'bufferPoint', showLabel: false, value: 'bufferPoint'">
   <input id="toolFindAddress" data-dojo-type="dijit/form/Button" data-dojo-props="iconClass:'findAddress', showLabel: false, value: 'findAddress'">
      <h1>Some Text</h1>  
   <h6><a href="http://somelink" target="_blank">Some more text</a></h6>
    </div>
0 Kudos
2 Replies
BenFousek
Occasional Contributor III
Close the input tag.

<input />
0 Kudos
by Anonymous User
Not applicable
Close the input tag.

<input />


Closed the input tag but issue is still present.

Thanks for the idea, though.
0 Kudos