콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
9200 화면


Using JS, the field in the view is updated, but pressing the save button does, not save the value in the field.

JS code:

var FormController = require('web.FormController');
FormController.include(
{
_onButtonClicked: function (event)
{
if(event.data.attrs.id === "action_addpoint")
{
$("input[name='points'].o_input_points")
.val("save_a_modified_field_with_JS")
.focus()
.change();
}
},
});

XML Code:

<header>
<button id="action_addpoint" string="Add point"/>
</header>
<group col="4">
<field name="points" class="points"/>
</group>



아바타
취소
작성자 베스트 답변

I cannot use it like this, when saving the record ... the modified information is not saved, in that field.
I guess due to the lack of user interaction

아바타
취소
베스트 답변

Hi,

i think your code is not executed. you need to write that JS code in static js using script function in form.

You can do something like:

<field name="arch" type="xml">

<form>

<script type="text/javascript">


$(document).ready(function() {

    //DOM manipulation code

});

<!-- can write fields and header or anything here -->

</script>

</form>

</field>

아바타
취소
관련 게시물 답글 화면 활동
2
1월 20
5763
1
6월 23
1998
1
5월 23
1961
1
10월 22
4119
5
12월 24
33199