Jump to content

<option value with selected option didn't work


jle

Recommended Posts

Hi All.I have the following code in the xsl file: <td class="menuItem"><select id="sReport" name="sReport" onChange="updatePage()"> <option value="executive">Executive Report</option> <option value="nothing">------------------------</option> <option value="wan_throughput">WAN Throughput</option> <option value="wan_application_summary">WAN Application Summary</option> <option value="nothing">------------------------</option> <option value="compression" selected>Compression</option> <option value="compression">Compression</option> This statement below: <option value="compression" selected>Compression</option> has problem with xslt and it complained about selected and I do wan the Compression is selectedso how to make this statement works.Thanks,JL

Link to comment
Share on other sites

<option value="compression" selected="selected">Compression</option>

XLST is for XML, not SGML.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...