Re: [Dhis2-devs] how get select input value in tracker capture.

2018-01-14 Thread Nghia Nguyen
Hi Hakim, Can you try this one, let customForm = angular.element(document.querySelector("d2-custom-data-entry-form")).scope(); let (name_of_Value) = customForm.currentEvent.(put_DataElement_ID_Of_Input_field_here); On Fri, Jan 12, 2018 at 10:27 PM, DJIBRIL Hakim wrote: >

Re: [Dhis2-devs] [Dhis2-users] Betr: Import of coordinates fails in v2.27(DHIS2)

2017-08-21 Thread Nghia Nguyen
Hi Kristiyan, Can you try this CSV format, its work ok with me in 2.27. On Mon, Aug 21, 2017 at 4:36 PM, Kristiyan Panayotov < kristi...@logicaloutcomes.net> wrote: > Thank you Terence. I voted, but not sure that it is the case. Import works > for my build, regarding data elements, org units,

Re: [Dhis2-devs] [Bug 1585033] Re: Validation rule Translation left side and right side

2016-05-26 Thread Nghia Nguyen
Hi Viet, It not show any error. But I will show the picture for description. First photo is the String (in Lao) that I input into description. ກວດທ້ອງຄັ້ງທີ່ 1 (ໃນສະຖານທີ່ບໍລິການ) Second picture, When running "run Validation" (Data Entry module) In English language and English database

[Dhis2-devs] [Bug 1585033] [NEW] Validation rule Translation left side and right side

2016-05-23 Thread Nghia Nguyen
Public bug reported: DHIS2 version: 2.22 Revision: 21900 We put Lao language into description (in Edit Left side and Edit Right side). It works normally in English interface language and English database language. But when we change into Lao interface and database language. It's show blank when

Re: [Dhis2-devs] Data entry input fields

2016-01-04 Thread Nghia Nguyen
Dear Murod, You can try this css. it changes the height of textarea input fields. You can base on that to reduce width your input fields. Hope it can helps you. .textarea (the class of the textarea input field) { resize:both !important; height:20px !important; width:20px !important; }