I have the following display table which is having 5 rows. Out of these one of the rows is a radio button(column header is 'Select'),on the selection of which the details of that record is shown in another page. I have the functionality to export the rows into excel and PDF.Is there a way I can prevent only the 'Select' column from being exported, ie only the other four columns only.
I am using Spring- Struts for my J2EE application.
Hi,
I have the following display table which is having 5 rows. Out of these one of the rows is a radio button(column header is 'Select'),on the selection of which the details of that record is shown in another page. I have the functionality to export the rows into excel and PDF.Is there a way I can prevent only the 'Select' column from being exported, ie only the other four columns only.
I am using Spring- Struts for my J2EE application.
Select COL1 COL2 COL3 COL4
Radio1 122 TEST1 NAME1 VAL1
Radio2 121 TEST2 NAME2 VAL2
Radio3 122 TEST1 NAME1 VAL1
Radio4 121 TEST2 NAME2 VAL2
Radio5 122 TEST1 NAME1 VAL1
Radio6 121 TEST2 NAME2 VAL2
Export options: Excel | PDF
Thanks in Advance,
Anoop
Yes. Just label your Select column with a different media than the ones you are using.
Thanks jefffh, it worked. :)