Hi Ashwin,
Thanks to respond.
But I am unable our columns with delete keyword. I am selecting multiple columns and press delete keyword but only single cell the last one is deleted. but I want delete all selected cells on press delete keyword. I paste my grid configuration here. I am also try with isRequired property.
outstandingGrid = new wijmo.grid.FlexGrid(‘#outstandingGrid’, {
autoGenerateColumns: false,
columns: [
{ binding: ‘Sel’, header: ‘Select’, width: 75,allowMerging: false,isRequired:false },
{ binding: ‘outstandingEquityDataType’, header: ‘Data Type ()', width: 130, allowMerging: false ,showDropDown:true, dataMap:getDataTypeList(),isRequired:false},
{ binding: ‘outstandingEquityComponent’, header: ‘Equity Component’, width: 200,allowMerging: false, showDropDown:true, dataMap:[“”],isRequired:false},
{ binding: ‘asReportedDate’, header: 'As Reported Date ()’, width: 180,format: ‘yyyy-MM-dd’, allowMerging: false,isRequired: false },
{ binding: ‘outstandingEquitySubShareType’, header: ‘Share Type’, width: 140, allowMerging: false, showDropDown:true, dataMap:getShareTypeList(),isRequired:false },
{ binding: ‘outstandingShareNumber’, header: ‘Share Number ()', width: 150, allowMerging: false,isRequired:false },
{ binding: ‘outstandingEquityScale’, header: ‘Scale’, width: 130,allowMerging: false, showDropDown:true, dataMap: getScaleTypeList(),isRequired:false},
{ binding: ‘isTBC’, header: ‘TBC’, width: 80,allowMerging: false,showDropDown:true, dataMap:tbcList.split(“,”),isRequired:false },
{ binding: ‘sourceFrom’, header: 'Source From ()’, width: 150,allowMerging: false,showDropDown:true, dataMap:sourceFormList.split(“,”),isRequired:false },
{ binding: ‘analystNotes’, header: ‘Analyst Notes’, width: 100,allowMerging: false,isRequired:false}
],
itemsSource:cvTrackingChangesOutstandingData,
allowAddNew: true,
allowMerging: ‘Cells’,
keyActionTab: ‘CycleOut’,
allowDelete: true,
showMarquee: true,
Regards