Skip to content

Commit

Permalink
N.context.attr("code").message : Remove empty spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbalganjjm committed Jun 26, 2020
1 parent 7eebf01 commit 6634415
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dist/natural.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -680,22 +680,22 @@
*/
"excludes" : [],
/**
* Multilingual Message
* Multilingual messages
*/
"message" : {
"ko_KR" : {
"NoContextSpecifiedInSelector" : 'Controller object 의 함수 안 에서 요소를 선택할 때는 반드시 $() 나 N() 함수의 두번째 인자(context)에 view 요소를 입력 하거나 view 요소에서 find 해야 합니다. '
+ 'view(context) 요소를 입력하지 않으면 다른 View 의 요소까지 선택 되어 의도하지 않은 오류가 발생 할 수 있습니다. '
"NoContextSpecifiedInSelector" : 'Controller object 의 함수 안 에서 요소를 선택할 때는 반드시 $() 나 N() 함수의 두번째 인자(context)에 view 요소를 입력 하거나 view 요소에서 find 해야 합니다.'
+ 'view(context) 요소를 입력하지 않으면 다른 View 의 요소까지 선택 되어 의도하지 않은 오류가 발생 할 수 있습니다.'
+ '\nex) N("selector", cont.view).hide();'
+ '\n cont.view.find("selector").hide();',
"UseTheComponentsValMethod" : 'jQuery 의 val 메서드로 입력 요소의 value 속성 값을 변경하면 컴포넌트에 바인드 되어 있는 데이터는 업데이트 되지 않습니다. '
"UseTheComponentsValMethod" : 'jQuery 의 val 메서드로 입력 요소의 value 속성 값을 변경하면 컴포넌트에 바인드 되어 있는 데이터는 업데이트 되지 않습니다.'
+ '컴포넌트의 내부 데이터와 연동 된 입력 요소들은 적용 된 데이터 관련 컴포넌트(N.form, N.grid 등)에서 제공하는 val 메서드를 사용해야 합니다.'
+ '\nex) cont["p.form.id"].val("columnName", "value")'
+ '\n cont["p.grid.id"].val(index, "columnName", "value")'
+ '\n cont["p.list.id"].val(index, "columnName", "value")'
},
"en_US" : {
"NoContextSpecifiedInSelector" : 'When selecting an element within a function of a Controller object, you must input the view element in the second argument of the $ () or N () function or find it in the view element. '
"NoContextSpecifiedInSelector" : 'When selecting an element within a function of a Controller object, you must input the view element in the second argument of the $ () or N () function or find it in the view element.'
+ "If you don't type view(context) element, you can get unintended errors as the elements of other views are also selected. "
+ '\nex) N("selector", cont.view).hide();'
+ '\n cont.view.find("selector").hide();',
Expand Down

0 comments on commit 6634415

Please sign in to comment.