I have a requirement on knowledge articles, to display on the visualforce page and also have to give self relationship to the same article type. ,That means one article can be associated with multiple articles like child and parent . Since saleforce has not provided to create a lookup to the article, so can any one please let me know what is the best way to achieve this functionality.
Note:
In visualforce page, if i click on one article i should be navigated to the next page which contains list of related articles under that article record.
Thanks,
Shiva
According conversation on Salesforce Community this functionality is currently under review by SF product team. Currently you can refer to articles through "Smart Links" in the rich text fields, but I hope such useful thing soon will be added. Here is link to Idea details on Salesforce Community.
Also there is approach to implement such functionality with Case related list, but it looks like no very beautiful way. For more details see this discussion.
Related
Apologies if I don't explain this well, but I've seen something like this on certain websites (unfortunately can't think of an example right now).
Sometimes if I visit a website for the first time, the site will guide me through the entire document and highlight certain sections e.g., "Use this button here to add a new item" while the rest of the page is greyed out, and then you click Next step which takes you to the next feature, and so on.
It'll be somewhat similar to this (but styled nicer) :
Is there a way (or package) to do this with React?
I believe this feature is called Product Tours
This library can help you - https://github.com/gilbarbara/react-joyride
Also, I found an article using this library on Smashing Magazine - https://www.smashingmagazine.com/2020/08/guide-product-tours-react-apps/
i have a list view with a link to the detail view with 2sexycontent.
at the list view i created a tag for the link with href="#Content.Link"
this works for german, but at the other 4 languages i have a problem with the localization. cause the tabs have differet links and at the moment all the details links get redirected to the german detail view.
how can i find the link to the corresponding DNN page with the other language using the standard DNN API?
thanks
regards
michael
There are two options
in the entity translations, specify the other page (probably not sexy)
look up the dnn-page which is the translated one of the page you have
I believe you want to do #2. I don't have the code snippet for that at hand, but it should be easy to find it in google or stack-overflow. Just ask for "How to find a translated page in server code" or something like that. Would be great if you share the result.
I'm looking for a solution to a simple (or simple at first sight) problem - I'm using Enterprise Forum with the Forum Access module on Drupal 7 and I need to make a list of moderators under each forum on the forum list page.
One similar solution can be found here: http://drupal.org/node/319232 but wherever I look, I only find solutions for Drupal 6. Is there a way to write a similar piece of code that would work in Drupal 7?
Thanks beforehand.
You have to use organic groups for this .
The process goes like this:-
1. Create a forum content type and make this a group type.
2. Add content , discussions making it group content type.
3. Finally use Views module and Panels to align the layout of things.
4. Use Og group members node and attach to the view.
Og group members is used to see who have joined your forum plus one more thing it has group membership that shows the moderator of the page/forum/group depending on the content type used.
You can also follow Organic Groups tutorial from ModulesUnraveled.com
They have a complete tutorial for Organic Groups very neatly explained.
Hope this might solve your issue.
Thanks
You should be able to achieve this with the Views module. http://drupal.org/project/views
I have a web application built using CakePHP framework and now I am in the process of internationalizing it. I started with the base set-up as outlined in the below article -
http://puskin.in/blog/2010/08/cakephp-manage-multiple-language-in-application/
and also add little bit of customization based on my previous question -
CakePHP: Internationalizing Web Application
To completely internationalize my web app, I would need to translate my drop-down/look-up content as well, like - categories, favorites, countries, bucket list etc.
What is the best way to design my tables and CakePHP samples? Can someone explain with a simple example and classes? Links or articles?
Lets say we have something like -
A user can create multiple posts, and each post has a category [science article, match article] etc in the drop-down and same we need to internationalize drop-down as well.
Two hints:
Read the manual of cakephp.
Look into the code of a available application (maybe croogo)
My open source project is translated.
It call CandyCane. A port of Redmine into CakePHP.
I also imported translation files from Redmine, so CandyCane supports numbers of languages from the beginning.
https://github.com/yandod/candycane
It might be helpful for you.
first of all, please excuse my ignorance, this is an exploratory question, rather than a specific programming program that needs solving.
I have a number of clients that have unique websites, none of which I was involved in developing. I would like them to be able to display a calendar of common events, but which would also contain events unique to them.
Is it possible using something like Server Side Includes to be able to give them a few lines of code which they could insert into their website (on any particular page) which might display a calendar type display, which their users can then interact with?
I guess I am looking for something similar to a Google calendar but I do not want to use a Google calendar. The key thing would be that they would only need to insert the few lines of code on one of their webpages; they wouldn't have to install any software on their servers.
Any suggestions?
Thanks
Damien
There are are all sorts of web calendars that will allow you to include them on a web page (typically using javascript, not SSI). Some are targeted at specific platforms (ie, Wordpress) and some are more generic.
Try searching "web calendar widget" for examples.
You'd have to put some amount of content on their site. If you can do that, you can include some javascript that will load more javascript from the server side that can do the bulk of the calendaring work for you.
You wouldn't be able to just drop a few files on the server and have them work, you'd need some way to link to them by changing the existing content on at least one of the pages.
I may be misunderstanding your question though.
If you are looking for specific recommendations on web calendar widgets, Arshaw's fullcalendar is my favorite to date.
It displays a great calendar that can be easily styled with css or jquery ui themeroller and is very programmable. The website has great documentation and examples as well.
Per using it on different sites, it supports that easily.
Note, I'm not affiliated with that calendar at all, just a satisfied customer.