FSN#36280 Behandeling 2.0 loopt vast in IE8 mode
svn path=/Website/trunk/; revision=29287
This commit is contained in:
@@ -41,7 +41,7 @@ function showColor()
|
||||
function acceptColor()
|
||||
{
|
||||
var kleur = $("#color_select").colorpicker("val");
|
||||
var rgb = kleur.replace("#","").toUpperCase().trim();
|
||||
var rgb = $.trim(kleur.replace("#","").toUpperCase());
|
||||
|
||||
$("#rgb").val(rgb);
|
||||
$("#_color span").css("background-color", kleur);
|
||||
|
||||
@@ -55,9 +55,7 @@ var afgehandeld = (mld_info.mld_status == 1 || mld_info.mld_status == 5 || mld_i
|
||||
}
|
||||
function note_submit()
|
||||
{
|
||||
// alert("DD");
|
||||
// return false;
|
||||
if ($("#note").val().trim() != "")
|
||||
if ($.trim($("#note").val()) != "")
|
||||
{
|
||||
var url = $("form[name=u2]")[0].action;
|
||||
$.post($("form[name=u2]")[0].action,
|
||||
@@ -283,7 +281,7 @@ var afgehandeld = (mld_info.mld_status == 1 || mld_info.mld_status == 5 || mld_i
|
||||
if (mld_info.fenotes & 2 || mld_info.fenotes == 0)
|
||||
{
|
||||
if (note_key == -1 && !eigenMelding)
|
||||
RWCHECKBOXTR("zichtbaarFE", "fldcheck", "<nobr>" + L("lcl_mld_zichtbaar_FE") + "</nobr>", note_zichtbaar, { boxfirst: true } );
|
||||
RWCHECKBOXTR("zichtbaarFE", "fldcheck", "<nobr>" + L("lcl_mld_zichtbaar_FE") + "</nobr>", note_zichtbaar, { boxfirst: true } );
|
||||
else
|
||||
Response.Write("<tr><td></td><td>{0}: {1}</td></tr>".format(L("lcl_mld_zichtbaar_FE"), note_zichtbaar?L("lcl_Yes"):L("lcl_No")));
|
||||
}
|
||||
|
||||
@@ -95,7 +95,7 @@ else
|
||||
return false;
|
||||
|
||||
// Is <20><>n van de parameters wel ingevuld.
|
||||
if ($("#accepttijd").val().trim() == "" && $("#uitvoertijd").val().trim() == "")
|
||||
if ($.trim($("#accepttijd").val()) == "" && $.trim($("#uitvoertijd").val()) == "")
|
||||
{
|
||||
alert(L("lcl_mld_no_overrule"));
|
||||
return false;
|
||||
|
||||
@@ -61,7 +61,7 @@ var mld_impropdr_key = getQParamInt("mld_impropdr_key"); //
|
||||
function mld_submit()
|
||||
{
|
||||
FcltMgr.closeDetail( window,
|
||||
{ remark: "" + $("#remark").val().trim().substr(0, 100),
|
||||
{ remark: "" + $.trim($("#remark").val()).substr(0, 100),
|
||||
success: true
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user