N°7559 - Fix radio buttons in template fields

This commit is contained in:
Eric Espie
2024-06-24 17:11:39 +02:00
parent a160f2e212
commit dc8f676f75

View File

@@ -95,7 +95,14 @@ $(function()
value = $(oElem).val();
}
}
else if($(oElem).is(':checkbox') || $(oElem).is(':radio'))
else if( $(oElem).is(':radio'))
{
if($(oElem).is(':checked'))
{
value =$(oElem).val();
}
}
else if($(oElem).is(':checkbox'))
{
if(value === null)
{