Re: Disable max character limit on alt text

  •  03-21-2011, 10:18 PM

    Re: Disable max character limit on alt text

    Hi cw808,
     
    Hide the width and height section when double click the image
     
    1.Open file "CuteSoft_Client\CuteEditor\Dialogs\Tag\tag_image.ascx "
     
    2. Find section below
     
    1. <tr>  
    2.                                     <td style="white-space: nowrap;">  
    3.                                         [[Width]]:</td>  
    4.                                     <td>  
    5.                                         <input type="text" size="2" id="inp_width" onkeyup="checkConstrains('width');" rem-skipautofirechanged="1"  
    6.                                             onkeypress="return CancelEventIfNotDigit()" style="width: 80px;" />  
    7.                                     </td>  
    8.                                     <td rowspan="2" align="right" valign="middle">  
    9.                                         <img src="Load.ashx?type=image&file=locked.gif" id="imgLock" width="25" height="32"  
    10.                                             title="[[ConstrainProportions]]" /></td>  
    11.                                 </tr>  
    12.                                 <tr>  
    13.                                     <td>  
    14.                                         [[Height]]:</td>  
    15.                                     <td>  
    16.                                         <input type="text" size="2" id="inp_height" onkeyup="checkConstrains('width');" rem-skipautofirechanged="1"  
    17.                                             onkeypress="return CancelEventIfNotDigit()" style="width: 80px;" />  
    18.                                     </td>  
    19.                                 </tr> 
    3. Change to
     
     
    1. <tr style="visibility: hidden">  
    2.                                     <td style="white-space: nowrap;">  
    3.                                         [[Width]]:</td>  
    4.                                     <td>  
    5.                                         <input type="text" size="2" id="inp_width" onkeyup="checkConstrains('width');" rem-skipautofirechanged="1"  
    6.                                             onkeypress="return CancelEventIfNotDigit()" style="width: 80px;" />  
    7.                                     </td>  
    8.                                     <td rowspan="2" align="right" valign="middle">  
    9.                                         <img src="Load.ashx?type=image&file=locked.gif" id="imgLock" width="25" height="32"  
    10.                                             title="[[ConstrainProportions]]" /></td>  
    11.                                 </tr>  
    12.                                 <tr style="visibility: hidden">  
    13.                                     <td>  
    14.                                         [[Height]]:</td>  
    15.                                     <td>  
    16.                                         <input type="text" size="2" id="inp_height" onkeyup="checkConstrains('width');" rem-skipautofirechanged="1"  
    17.                                             onkeypress="return CancelEventIfNotDigit()" style="width: 80px;" />  
    18.                                     </td>  
    19.                                 </tr> 
     
     
     In Image Editor dialog we have not show the width and height  of the image, can you post a screenshot to show which section you mean?
     
    Regards,
     
    Ken
View Complete Thread