|
Finished the capturing meeting duration and location;
you can check it here.. https://github.com/diunuge/community-app/tree/mifosx855 https://github.com/diunuge/community-app/commit/30b87860111fc7e55ccd39e6fcbfc2a977b63398
I have some things to clarify. About meeting duration;
currently when capturing the meeting duration, it is captured as integer represents time in minutes. so, user have to input meeting duration in minutes. this is OK for short time scenario but not good for long time scenario
In the database m_meeting.duration is SMALLINT(6). Since, duration is captured as minutes, this is more compatible and proper. In the client side meeting duration should be represent "more of human readable" form("2h 30m", ... ).
I hope to add time picker module if needed...
So, for this i'm hope apply the data type filter at the client side which I think more appropriate. Correct me If I wrong, please..
About the location, What are the validations must be done at the client side before sending the put/post request?
|