検証エンジンの検証が成功した後に fancybox を起動したい....私が使用しているコードは以下のとおりです....
<button type="button" class="addcncl" value="<s:message code='createMonitorProfile' />" name="createProfile" id="createProfile" ><s:message code='createMonitorProfile' /></button>
$("#createProfile").fancybox({
'titlePosition' : 'outside',
'overlayColor' : '#000',
'autoSize' : false,
'autoDimensions' :false,
'overlayOpacity' : 0.7,
'scrolling' :'yes',
});
$("#createProfile").bind("click", function() {
if($('#createMonitorProfileForm').validationEngine('validate')) {
//if this condition is true then I want to upload fancybox content
//with ajax request.
}
});
私が得ている問題は、検証が行われる前にファンシーボックスが表示されることです...