Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by andreea on Jul 15, 2008 07:19
open dhtmlx forum
i am using co|coro excell . How do i auto-resize in this case?

Answer posted by Support on Jul 15, 2008 09:46
The width of editor limited by width of existing cell, it is hardcoded and can't be changed automatically.

dhtmlxgridcell.js, line 940

        this.list=document.createElement("SELECT");
        this.list.className='dhx_combo_select';
        this.list.style.width=this.cell.offsetWidth+"px";   // here it is!
   
You can change this place in code in any necessary way.