Idea Portal: add function to display the Idea# along with the title, etc

Mary
Mega Guru

Hello

Has anyone added the functionality to generate the IDEA# when the end user submits the idea from the Idea Portal?

I have a request to add this #so that its generated when the user clicks Create an Idea button..so that the user would get the message with the# like Incident,

Would also go to MY IDEAS and see the #

 

has anyone added this capability? thanks much

1 ACCEPTED SOLUTION

-O-
Kilo Patron
Kilo Patron

Idea being a task based table it has numbering OOB.

 

However to display the generated number in the list of ideas or the idea form, a few widget need to be modified.

E.g. to display the number on the idea form, one needs to

- modify function getIdeaInfo in Script Include IMCommonService by adding line:

 

			number: ideaGr.number.getDisplayValue(),

 

after (or somewhere around) line:

 

			title: ideaGr.short_description.getDisplayValue(),

 

- modify widget having id im_idea_detailed_view: add line

 

<p><small>{{ data.ideaInfo.number }}</small></p>

 

somewhere around line (40):

 

<p>
	{{data.ideaInfo.title}}
</p>

 

 

The result is:

2023-03-27-1.png

 

Of course, this is just o p.o.c. and

 

View solution in original post

2 REPLIES 2

-Z-
Tera Contributor

Idea being a task based table it has numbering OOB.

 

However to display the generated number in the list of ideas or the idea form, a few widget need to be modified.

E.g. to display the number on the idea form, one needs to

- modify function getIdeaInfo in Script Include IMCommonService by adding line:

 

			number: ideaGr.number.getDisplayValue(),

 

after (or somewhere around) line:

 

			title: ideaGr.short_description.getDisplayValue(),

 

- modify widget having id im_idea_detailed_view: add line

 

<p><small>{{ data.ideaInfo.number }}</small></p>

 

somewhere around line (40):

 

<p>
	{{data.ideaInfo.title}}
</p>

 

 

The result is:

2023-03-27-1.png

 

Of course, this is just o p.o.c. and can be refined to look "better".

The question is: are you willing to customize the Innovation management components?

-O-
Kilo Patron
Kilo Patron

Idea being a task based table it has numbering OOB.

 

However to display the generated number in the list of ideas or the idea form, a few widget need to be modified.

E.g. to display the number on the idea form, one needs to

- modify function getIdeaInfo in Script Include IMCommonService by adding line:

 

			number: ideaGr.number.getDisplayValue(),

 

after (or somewhere around) line:

 

			title: ideaGr.short_description.getDisplayValue(),

 

- modify widget having id im_idea_detailed_view: add line

 

<p><small>{{ data.ideaInfo.number }}</small></p>

 

somewhere around line (40):

 

<p>
	{{data.ideaInfo.title}}
</p>

 

 

The result is:

2023-03-27-1.png

 

Of course, this is just o p.o.c. and