I want to customize my listing of plan's tasks. I have edited RelatedListView.php under modules/Vtiger/models
But I was failed.
Exactly I want to add a new link in the listing. All the related links are coming in the current listing but I want to show the document related to the tasks individually.
Let me know if anyone has faced this issue already or got solved from somewhere.
Are you looking at showing the related task attached to the document?
I had this problem where I wanted the document to have a link to the connected task. To do this I used a plugin called VGSRelatedFields
Give that a go.
Related
How would functionality for user comments on a dashboard be built? For example, if an issue is flagged I would like to let the user comment if they have further details/explanation of the issue. I would also like to save the comments and pull them historically.
Have seen this in a QS dash before, but I can't find any documentation on how you would go about building the framework for this.
QuickSight doesn't appear to support this functionality within QuickSight. Likely what you saw was QuickSight dashboard embedded into a page that happened to have a separate, unrelated user comment box. If you do find something where someone is commenting directly on a QuickSight dashboard, I would be thrilled to see it!!
I made a table on a SharePoint page using a webpart/snippet and some coding. My goal is to add code to pull a value for a couple of the cells in the table from another SharePoint page using a QueryString. My issue, I'm newer to SharePoint, and not sure how to set up the page that I'm pulling the information from. Ultimately, the page with the table will only be editable by a few owners. The page with the info to populate the cells will have multiple people that have the permission to edit the page to update their information daily. Now, here is where I'm not sure how to proceed. I don't want the users, most of which have no coding experience, to have to deal with entering their daily values into a coded snippet. But I'm not sure how to call the value from randomly entered data on a SharePoint page line. I believe it is SharePoint 2013. I can insert a table using the SharePoint feature rather than a snippet code, and that would be easily editable for the users. But Then I'm right back with not being sure how to call the information. I believe I can come up with the code once I figure out how I need to set up page with the information, but can edit the question as deemed necessary.
Follow the below thread
There are many way to send data from one page to another page
Query string is better if you are using table, redirect the link using custom code else follow the below link it might be help you to clarify or achieve something
https://social.technet.microsoft.com/Forums/sharepoint/en-US/b9d62eb1-57ed-4251-975d-13f9ae35f29f/how-to-pass-query-string-parameter-from-sharepoint-list-view-web-part-?forum=sharepointdevelopmentprevious
have a nice day
Regards
Vinod
I have been working on developing a Rally API using python with the help of links pointed by Rally help (Pyral). My code connects well with the Rally server and pulls specific user story I want, but not the columns I am interested in. I am aiming to pull [full] specific reports with fields such as project, tags, etc. under the 'Reports' tab. I tried to find out how can I do it but didn't get direction. Also, the specific user stories I am able to pull include some weird fields like c_name, c_offer and the like. I would really appreciate if someone could help me through this. Like to connect to a specific project/workspace in Rally we have the following code where it asks the details in the manner below:
rally = Rally(server='', apikey='',workspace='',project='')
Is there any way to specify what report/columns I want?
Thanks in advance
Most of the reports on the Reports tab are rendered by a separate Analytics 1 service outside of the standard WSAPI you've been communicating with. Some of that data is available in WSAPI -IterationCumulativeFlowData, ReleaseCumulativeFlowData. What data specifically are you looking for?
For a project I want to show/export all visitors with visitortags from an engagement plan. The export is for creating an overview and checking purposes. It's important to show the business I have done my work correctly. I prefer a way without writing any programcode.
Does anyone know how to do this?
Thanks a lot.
Jordy
This is not possible by default in Sitecore, so you will have to write some code.
If you click the supervisor you will be able to see the USERS in a state in an engagement plan, but not VISITORS. Even though you can see the users, you won't be able to see the visitor tags, for that given user.
I am currently developping a mobile application with a drupal 7 website as a backend. Using the services API with a REST server I was able to easily access the nodes, users, files and comments to see their content.
I am able via a POST request to log in the website but I cannot create a comment through the services API. Actually, there is no error and a new comment is well created in the database but it is empty and its nid is 0.
I also tried to download a valid comment, modify it with new datas, and send it but I have the same result.
I also need to add that the comments I am using or not just simple ones, they include some specific fields in their form.
Can anyone help me to solve this problem ? Has anyone ever experience something similar ?
Thank you
Check you are posting an object that is correctly structured, services isn't doing a comment_save()
Have a look at the test scripts for the structure
http://drupalcode.org/project/services.git/blob/refs/heads/7.x-3.x:/tests/functional/ServicesResourceCommentTests.test#l100