Agradeceria si alguien pudiera ayudarme con mi duda
Tengo un Grid al cual le puse checkbox para imprimir lo que selecciono para eso filtro el grid, pero el problema es que
solo me imprime el ultimo valor seleccionado..
alguna idea??
aqui muestro en imagenes como despliega y como me gustaria que me mostrara
http://ximages.net/images/07987716788744112334.png selecciono
http://ximages.net/images/78166978959261467132.png como despliega
http://ximages.net/images/24039564665004597671.png como quiero
Código:
/////////////////MI GRID////// var checkboxselection = new Ext.grid.CheckboxSelectionModel({ singleSelect: false, checkOnly:true, listeners: { 'selectionchange' : function() { if (this.getCount() == 0) Ext.getCmp('btnPrint').setDisabled(true); else Ext.getCmp('btnPrint').setDisabled(false); } } }); var gridBom = { layout: 'form', items: [ { xtype: 'grid', width: 700, height:500, id: 'gridBom', frame:true, loadMask: true, store: storeBom, columnLines:true, // selModel: checkboxselection, colModel: new Ext.grid.ColumnModel({ columns: [ checkboxselection, { header: "CLASE", width:40, dataIndex: 'BKIC_PROD_CLASS'}, { header: "COMPONENTE", width:110,dataIndex: 'WOBOM_COMPCODE'}, { header: "DESCRIPCION", width:150, dataIndex: 'WOBOM_COMPDESC'}, { header: "TOTAL REQUERIDO", width:125, dataIndex:'WOBOM_TOTQTY'}, { header: "TOTAL CONSUMIDO", width:125, dataIndex:'WOBOM_QTYISSUED'}, { header: "UM", width:60, dataIndex:'WOBOM_UM'}, ], }), sm: checkboxselection, viewConfig: { forceFit: true }, view: new Ext.grid.GroupingView({ hideGroupedColumn: true, forceFit: true, startCollapsed: true, enableGroupingMenu: true, groupTextTpl: '{text} : {[ values.rs[0].data["MTCLASS_M_DESC"]]} ', }), }]} ///////BOTON DE IMPRESION//////// { xtype:'tbbutton', cls:'x-btn-icon', icon: '../../../comun/img/vaw/printer.png', disabled:true, id:'btnPrint', name:'btnPrint', handler:function() { vv = new Array(); var smBom=Ext.getCmp('gridBom').getSelectionModel().getSelections(); for(var i=0;i<smBom.length;i++){ vv= smBom[i].get('BKIC_PROD_CLASS');} storeBom.filter('BKIC_PROD_CLASS', vv); Ext.ux.Printer.print(Ext.getCmp('gridBom')); storeBom.clearFilter(); } }