Subversion Repositories SmartDukaan

Rev

Rev 24928 | Rev 24930 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24928 Rev 24929
Line 15... Line 15...
15
			.might-overflow:hover {
15
			.might-overflow:hover {
16
			    text-overflow: clip;
16
			    text-overflow: clip;
17
			    white-space: normal;
17
			    white-space: normal;
18
			    word-break: break-all;
18
			    word-break: break-all;
19
			}
19
			}
-
 
20
			
-
 
21
			.wrap { 
-
 
22
			   white-space: pre-wrap;      /* CSS3 */   
-
 
23
			   white-space: -moz-pre-wrap; /* Firefox */    
-
 
24
			   white-space: -pre-wrap;     /* Opera <7 */   
-
 
25
			   white-space: -o-pre-wrap;   /* Opera 7 */    
-
 
26
			   word-wrap: break-word;      /* IE */
20
						 
27
			}
21
		</style>
28
		</style>
22
        <script>
-
 
23
            $(document).ready(function() {
-
 
24
                $('td').css('white-space', 'nowrap');
-
 
25
            });
-
 
26
        </script>
-
 
27
	</head>
29
	</head>
28
	
30
	
29
	<body>
31
	<body>
30
        <a href="/inventory">Go to Home page</a>
32
        <a href="/inventory">Go to Home page</a>
31
        <br />                
33
        <br />                
Line 77... Line 79...
77
                        <td>$action.getStateName($supplier.getStateId())</td>
79
                        <td>$action.getStateName($supplier.getStateId())</td>
78
                        <td>$supplier.getPoValidityLimit()</td>
80
                        <td>$supplier.getPoValidityLimit()</td>
79
                        <td>$supplier.getHeadName()</td>
81
                        <td>$supplier.getHeadName()</td>
80
                        <td>$supplier.getHeadEmail()</td>
82
                        <td>$supplier.getHeadEmail()</td>
81
                        <td>$supplier.getContactName()</td>
83
                        <td>$supplier.getContactName()</td>
82
                        <td class="might-overflow">$supplier.getContactEmail()</td>
84
                        <td class="wrap might-overflow" style="width:15%">$supplier.getContactEmail()</td>
83
                        <td>$supplier.getContactPhone()</td>
85
                        <td>$supplier.getContactPhone()</td>
84
                        <td>$supplier.getContactFax()</td>
86
                        <td>$supplier.getContactFax()</td>
85
                        <td class="might-overflow">$supplier.getRegisteredAddress()</td>
87
                        <td class="wrap might-overflow" style="width:15%">$supplier.getRegisteredAddress()</td>
86
                        <td class="might-overflow">$supplier.getCommunicationAddress()</td>
88
                        <td class="wrap might-overflow" style="width:15%">$supplier.getCommunicationAddress()</td>
87
                    </tr>
89
                    </tr>
88
                #end
90
                #end
89
            </tbody>
91
            </tbody>
90
        </table>
92
        </table>
91
    </body>
93
    </body>