Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by lizheng on Jul 12, 2009 19:24
open dhtmlx forum
abort csv

dhtmlxGrid
if the input text that contains [,]
How to deal with this situation?
Answer posted by dhxSupport on Jul 13, 2009 01:06
You can change default csv delimiter with setCSVDelimiter(str) where str - delimer used in CSV operations, comma by default (only single char delimeters allowed). 
For example:
 mygrid.setCSVDelimiter(":")
 var str="11:12:13\n21:22:23\n31:32:33";
 mygrid.loadCSVString(str);