Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Jorge Arzuaga on Sep 17, 2009 21:22
open dhtmlx forum
Grid no action on click over cell

Hi i loading grid from table html and the somes cell i have forms objets that edit with ajax function, for example
<td>
<input tabindex='86' name='input_101' id='input_101' type='text' class='TextBox' size='30' maxlength='' onChange=UpdateAjax('nombre',this.value,'p_tabs','tab_id=175','../../','')' value='Buscar Faqs' />
</td>

The grid show fine the cell, but i try edit my input in IE show old input's code and in Firefox show de inputīs value, but donīt execute my function UpdateAjax, is as though delete the input.... Itīs possible disabled the edit on cell but keep the functionality in my input?....

Thanks anew.

Jorge Arzuaga
Answer posted on Sep 18, 2009 00:38
You can use "ro" eXcell type for this cell

<td type="ro"> 
<input tabindex='86' name='input_101' id='input_101' type='text' class='TextBox' size='30' maxlength='' onChange=UpdateAjax('nombre',this.value,'p_tabs','tab_id=175','../../','')' value='Buscar Faqs' />
Also you can implement custom eXcell type. Please find more information here http://dhtmlx.com/dhxdocs/doku.php?id=dhtmlxgrid:toc_custom_excell_creation
</td>
Answer posted on Sep 18, 2009 06:54
but in Firefox work fine i can set my input, but in IE only can one letter in my input and not update with my function ajax, please i need your help.... thanks...