jquery - Any ideas on designing a wide webpage -


i need display 16 input boxes in 1 row , open in modal without getting horizontal scrollbar. there way design effectively? getting scrollbar since si big. users using barcode scanner , scan items, putting 16 inputboxes length=12 (is necessary) making modal scroll bar users don't want. suggestions? using html5, jquery, css

<table id="setopprod">             <tr class="centeralign">                 <td>1</td><td>2</td><td>3</td><td>4</td><td>5</td><td>6</td><td>7</td><td>8</td><td>9</td><td>10</td><td>11</td><td>12</td><td>13</td><td>14</td><td>15</td><td>16</td>             </tr>             <tr>                 <td><input class="ui-state-disabled" type="text" size="12" maxlength="12" /></td>                 <td><input class="ui-state-disabled" type="text" size="12" maxlength="12" /></td>                 <td><input class="ui-state-disabled" type="text" size="12" maxlength="12" /></td>                 <td><input class="ui-state-disabled" type="text" size="12" maxlength="12" /></td>                 <td><input class="ui-state-disabled" type="text" size="12" maxlength="12" /></td>                 <td><input class="ui-state-disabled" type="text" size="12" maxlength="12" /></td>                 <td><input class="ui-state-disabled" type="text" size="12" maxlength="12" /></td>                 <td><input class="ui-state-disabled" type="text" size="12" maxlength="12" /></td>                 <td><input class="active" type="text" size="12" maxlength="12" /></td>                 <td><input type="text" size="12" maxlength="12" /></td>                 <td><input type="text" size="12" maxlength="12" /></td>                 <td><input type="text" size="12" maxlength="12" /></td>                 <td><input type="text" size="12" maxlength="12" /></td>                 <td><input type="text" size="12" maxlength="12" /></td>                 <td><input type="text" size="12" maxlength="12" /></td>                 <td><input type="text" size="12" maxlength="12" /></td>             </tr> </table> 

there's not black-and-white way of making work better. 1 option change grid wraps

 1          2          3 _______    _______    _______  4          5          6 _______    _______    _______  7          8          9 _______    _______    _______ 10          11         12 _______    _______    _______ 

alternatively, come different ui other scrollbar. maybe area large arrow scrolls either on hover, or clicking. throw in keyboard shortcuts (ctrl-left, ctrl-right). might little more usable scrollbar in cases. require javascript.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -