I'am install Odoo 8.
I want create and see task in Calendar View with time not only date.
For example:
what do I have?
what do I want?
I can't change time in calendar view for tasks in project. Tasks use "all day" not time.
I try change project_view.xml in addons.
I change date_start=dedline to
<calendar color="user_id" date_start="date_start" date_stop="date_end" string="Tasks"> <field name="name"/> <field name="project_id"/> </calendar>
I use value from gant view(date_start and date_stop)
but it doesn't work. Please help. Thank you for your help.
Related
I'm displaying customer information and using ant design editable text to edit profile fields.
I'm driving myself crazy with this one as I can't pass the key & value through my function and into the state object.
Any suggestions on how to get this working would be muchappreciated.
Thank you
I need help in react-big-calendar.Some of the view already in react-big-calender like days, week & agenda etc. but how can i add custom view for year view in react-big-calender.
I've been looking at the same, there is nothing out-of-the-box - I might use this as a starting point:
https://codesandbox.io/s/jjmky5047y
You will have to customise the react-big-calendar on your own for these features.
I am trying to load TOAST UI Calendar by specific date or date-range but by default it's loaded by today's date... can anyone help me to sort it out...
I think .setDate is the method that you are looking for
https://nhn.github.io/tui.calendar/latest/Calendar#setDate
Just use it as the calendar loads.
I am using Arshaw full calendar[Angular bootstrap] in my project, but after implementing it, Whenever I go to the day view and click on the time span say 12.00am, day click event gets fired and if I extract date from the view object I get the same date but the timing shows 05.30.0, That means there is difference of 5.30 hours... Why is this happening, I am using the latest version of master calendar. I am sharing the snapshot of the same. Please help, Thank you..!!!
Has anyone used the Rally-Bugzilla connector to sync the state fields (e.g. syncing the Schedule State field within Rally against the status field in Bugzilla - which has values such as "NEW", "EVALUATED", "ASSIGNED", "IN_WORK" etc)? As I see it, this is complicated by the fact that there isn't a 1:1 relationship between the values across the 2 systems, in which case does anyone have any suggestions on approaches?
This is generally facilitated via a Field Handler in the config.xml for the connector. There's a decent discussion of this at http://www.rallydev.com/help/rally-integrations-faq-and-best-practices#How-to-map-fields. The general idea is this:
<Connector>
<FieldMapping>
<Field> <Rally>State</Rally>
<Other>BG_STATUS</Other>
</Field>
....
<OtherFieldHandlers>
<OtherEnumFieldHandler>
<FieldName>BG_STATUS</FieldName>
<Mappings>
<Field><Rally>Defined</Rally> <Other>New</Other></Field>
<Field><Rally>In-Progress</Rally> <Other>Assigned</Other></Field>
<!-- Etc -->
</Mappings>
</OtherEnumFieldHandler>
</Connector>
Note that you may need to go into the Rally tool to define some custom values for the State field/drop-down in order to accomodate the heuristic mappings of State values in Bugzilla.