2012年7月19日木曜日

struts2 タグ iteratorの中、if testで比較


do s:if test of a value in the iterator


<select name="product">
<s:iterator value="#session.productList" >
<s:if test="%{selected_code == code}">
<option value="<s:property value='code'/>" selected="selected"><s:property value='name'/></option>
</s:if>
<s:else>
<option value="<s:property value=' code '/>"><s:property value=' name '/></option>
</s:else>
</s:iterator>
</select>

jqueryでoption要素を追加


jqueryでoption要素を追加
$('#target').append($('<option>').attr({ value: 'xxx' }).text('xxxxxxx'));

2012年7月17日火曜日

mysql インストール エラー

mysql インストールする時に、こんなエラーが発生、インストール失敗。
Could not access network location \Hewlett-Packard\\.
解決方法としては、

まず、regedit に入って

下記二つの値をみる
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\

もし、”InstallLocation”の値は、” \Hewlett-Packard\\”を含まれたら、” \Hewlett-Packard\\”を削除して、
もう一同インストールし直せば、インストールできるはずです。