Categories | Question details Back To List | ||
DataProcessor Hi, While updating the Cell value in server side I'm getting the request attribute through c0,c1,c2.... Is there any way to get it from column name(id,name,describtion). Thanks, Hariharan Answer posted by Stanislav on Jan 04, 2008 05:32 The labels of columns can't be used for such task, but you can use column IDs ( column IDs set by grid.setColumnIds or by "d@column" attribute in case of init from XML ) Next command will switch name of params from order values to IDs dataProc.enableDataNames(true); |