Commit f410897a593862ef4e6214f2fcc81bcdf8e2c564

Authored by Jonathan Byrne
1 parent 4eeb25c4

KTS-3199

"Cannot scroll to the right or left on the workflow configuration page of a large workflow"
Fixed. Wrapped the workflow table a div with scrolling.

Committed By: Jonathan Byrne
Reviewed By: Megan Watson

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8298 c91229c3-7414-0410-bfa2-8a42b809f60b
templates/ktcore/workflow/admin/new_wizard_step2.smarty
... ... @@ -9,6 +9,7 @@ states. Use the table below to configure this behaviour.{/i18n}</p>
9 9 <input type="hidden" name="{$k}" value="{$v}" />
10 10 {/foreach}
11 11 <input type="hidden" name="fWizardKey" value="{$fWizardKey}" />
  12 + <div style="overflow:scroll">
12 13 <table class="kt_collection" cellspacing="0">
13 14 <thead>
14 15 <tr>
... ... @@ -35,7 +36,7 @@ states. Use the table below to configure this behaviour.{/i18n}&lt;/p&gt;
35 36 {/foreach}
36 37 </tbody>
37 38 </table>
38   -
  39 + </div>
39 40  
40 41 <div class="form_actions">
41 42 <input type="submit" value="{i18n}Create Workflow{/i18n}" />
... ...