matter with an ed col whre i 've put on multiline & firefox

Hi everybody,

I have made a grid with only one column and only one row. On this grid, i have activated the multilines. When i write with IE in the cell, it automatically comes back to the next line. But, on firefox, there is an horizontal scrollbar which which appears. Here is my xml code :

<%@ page contentType=“text/xml; charset=UTF-8” pageEncoding=“UTF-8”%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix=“bean”%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix=“logic”%>

Veuillez entrer l'import : %

and here is the way i use in order to load the grid :

		var mygrid = new dhtmlXGridObject('gridbox');
		mygrid.setImagePath("dhtmlx/dhtmlxGrid/codebase/imgs/");
		mygrid.setSkin("dhx_skyblue");
		mygrid.setInitWidthsP("100");
		mygrid.setEditable(true);
		mygrid.enableAutoHeight(true);
		
		mygrid.init();	
		mygrid.loadXML("html/transferts/xml/importation/importLoad.jsp");
		mygrid.setStyle("","height:50px;","height:50px","height:50px");
		mygrid.enableMultiline(true);

Thanks you for your help :slight_smile:

Unfortunately we cannot reproduce this issue locally. Please check example here dhtmlx.com/docs/products/dht … iline.html

Try to change the order of js commands as

mygrid.enableMultiline(true);
mygrid.setStyle("","height:50px;","height:50px","height:50px");
mygrid.init();	

mygrid.loadXML("html/transferts/xml/importation/importLoad.jsp");