Hello,
I search how to add a table in Description field of an issue for a non-technical user.
I installed BBCode+ plugin and I tested the following table
[table]
[tr]
[th]Name[/th]
[th]Age[/th]
[/tr]
[tr]
[td]John[/td]
[td]65[/td]
[/tr]
[tr]
[td]Gitte[/td]
[td]40[/td]
[/tr]
[tr]
[td]Sussie[/td]
[td]19[/td]
[/tr]
[/table]
But a non-technical user can not be use this type of writing.
Have you a workaround to add a table in clicking on a button "add table" or another one ?
Add a table in description of issue
Moderators: Developer, Contributor
Re: Add a table in description of issue
create a file name config\config_inc.php
And add this
It will show as default template for bug description when user want to create and submit
And add this
Code: Select all
$g_default_bug_description = '[table]
[tr]
[th]Name[/th]
[th]Age[/th]
[/tr]
[tr]
[td]John[/td]
[td]65[/td]
[/tr]
[tr]
[td]Gitte[/td]
[td]40[/td]
[/tr]
[tr]
[td]Sussie[/td]
[td]19[/td]
[/tr]
[/table]';
Re: Add a table in description of issue
Important to realize that this will only work in conjunction with the BBcode+ plugin 
