Hi,
Thank you very much for this project. Faces is great!
I was wondering if someone could help me. I'd like to make a resources chart, but only show specific resources.
I have this:
class Resources(resource.Standard): data = project sharex = "time_share"
I'm not sure how to specify which resources get displayed.
Thanks, Gabe
Hi Gabe,
Actually it should work like the following:
class Resources(resource.Standard): data = [ resource1, resource2, ] start = project.start end = project.end
But unfortunately there is bug inside resource.Standard and you will get an error. I will fix that in the next release.
Michael
Thanks!
Log in to post a comment.
Hi,
Thank you very much for this project. Faces is great!
I was wondering if someone could help me. I'd like to make a resources chart, but only show specific resources.
I have this:
class Resources(resource.Standard):
data = project
sharex = "time_share"
I'm not sure how to specify which resources get displayed.
Thanks,
Gabe
Hi Gabe,
Actually it should work like the following:
class Resources(resource.Standard):
data = [ resource1, resource2, ]
start = project.start
end = project.end
But unfortunately there is bug inside resource.Standard and you will get an error.
I will fix that in the next release.
Michael
Thanks!