Re: [Dhis2-users] [Dhis2-devs] How many records can Organization Unit hold up?

2015-05-21 Thread Ngoc Thanh Nguyen
;> >> *Level1* *-- 1* >> *Level2** -- **6* >> *Level3* *-- 9* >> *Level4* * -- * *16* >> *Level5** -- 130* >> *Level6** -- 550* >> * Level7** -- 900* >> * Level8** -- 2* >> * Level9** --

Re: [Dhis2-users] [Dhis2-devs] How many records can Organization Unit hold up?

2015-05-21 Thread Ngoc Thanh Nguyen
Hi Muhamad, Try with a blank db. If it works, then check with few orgunit, if it still works, switch to this current db. If the problem occurs, make sure your orgunit table is valid. As far as I get you used a manual tool to automatically insert to this orgunit table Thanh On Thu, May 21, 2015 at

Re: [Dhis2-users] [Dhis2-devs] Morbidity and mortality program in demo dhis2 site

2015-03-18 Thread Ngoc Thanh Nguyen
Hi Thanh, > > Yes the tracker capture is suited for such kinds of use cases. We could > help you a lot if you are a bit specific on your needs. > > > --- > Thank you, > Abyot. > > On Sun, Mar 15, 2015 at 7:29 PM, Ngoc Thanh Nguyen < > thanh.hispviet...@gmail.com&

[Dhis2-users] Morbidity and mortality program in demo dhis2 site

2015-03-15 Thread Ngoc Thanh Nguyen
Hi all, I would like to buid a system for Morbidity and mortality in Vietnam. I think the one deployed on the demo site is similar to what we plan to have though it may go a bit further, i.e. multiple events with registration (tracking a patient throughout their admission history) rather than sing

Re: [Dhis2-users] [Dhis2-devs] Confusing Use license on dhis2 website

2014-11-02 Thread Ngoc Thanh Nguyen
s like these >> are conditions which they are applying to the dhis 1.4 software. Given >> that they now also support v2 they should really update this. I think it >> reflects some previous reality. >> >> It has no effect on the dhis2 software which you download fr

[Dhis2-users] Confusing Use license on dhis2 website

2014-11-01 Thread Ngoc Thanh Nguyen
Hi all DHIS2 is licensed as BSD which means that one can customize, redistribute, and use it for any purposes (commercial or non-commercial) given that the BSD copyright text are retained. However, in HISP website it says that materials (include software) on the website can not be used for commer

Re: [Dhis2-users] [Dhis2-devs] dhis 2.16 upgrade notes

2014-09-10 Thread Ngoc Thanh Nguyen
Hi DHIS2 is not exhaustively tested in mysql so don't be discouraged. I often see this error. Try the following: - mvn clean - check your hibernate configuration file - try with a fresh new db to see if that error occurs Thanh On Thu, Sep 11, 2014 at 8:55 AM, sumudu weerasinghe wrote: > Hi L

Re: [Dhis2-users] [Dhis2-devs] Auto-calculated data in entry forms

2014-09-02 Thread Ngoc Thanh Nguyen
gt; > > On Tue, Sep 2, 2014 at 12:31 PM, Ngoc Thanh Nguyen < > thanh.hispviet...@gmail.com> wrote: > >> great. surprised that a medical doctor can write that code. if you turn >> it to jquery it is much easier. anyway, its fine for now >> On Sep 2, 2014 11:54 AM,

Re: [Dhis2-users] [Dhis2-devs] Auto-calculated data in entry forms

2014-09-02 Thread Ngoc Thanh Nguyen
ot;).value; > if(ht!="" && wt!=""){ > var bmi = wt/(ht*ht/1); > bmi = +bmi.toFixed(2); > }else{ > var bmi ="Enter Height and Weight"; > } > var inputbmi= document.getElementById("BMI-ID-val"); > inputbmi.value = bmi; >

Re: [Dhis2-users] [Dhis2-devs] Auto-calculated data in entry forms

2014-09-01 Thread Ngoc Thanh Nguyen
/webapp > > > On Mon, Sep 1, 2014 at 10:21 PM, Ngoc Thanh Nguyen < > thanh.hispviet...@gmail.com> wrote: > >> Hi >> >> I believe the calculated data value (now as indicator) can only be seen >> after an aggregation is run. >> In addition, in some form

Re: [Dhis2-users] [Dhis2-devs] Auto-calculated data in entry forms

2014-09-01 Thread Ngoc Thanh Nguyen
Hi I believe the calculated data value (now as indicator) can only be seen after an aggregation is run. In addition, in some forms in some countries like VN, auto-calculated data elements some time can be input by users. In VN, we use Javascript to achieve this. However, it is quite complicated.