Skip to content

Commit 75088ed

Browse files
Update web-forms.js
Removing the character greater than (>) from the beginning of nested input places
1 parent 82fb08c commit 75088ed

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

web-forms.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1364,6 +1364,10 @@ function cb_SetValueToInput(ActionOperation, ActionFeature, ActionValue)
13641364

13651365
function cb_GetElementByElementPlace(ElementPlace, obj)
13661366
{
1367+
if (ElementPlace.substring(0, 1) != '>')
1368+
if (ElementPlace.Contains("|"))
1369+
ElementPlace = '>' + ElementPlace
1370+
13671371
var ElementPlaceFirstChar = ElementPlace.substring(0, 1);
13681372

13691373
const FromPlace = (obj) ? obj : document;

0 commit comments

Comments
 (0)