My Grid allows Multiselect. In my application I am having context menu "Cut, Copy & Paste".
Once i select multiple rows and "Cut". My functionality is to Delete all the rows i selected. If i select
the First row that should not.
But Its not deleting all rows. I used Remove() to Delete the record.
Previously i have option to delete only one row. So that works fine. But now its not working due to Multiselect and
I should not allow to delete first record even i select.
Do I need to add any other code?
I herewith attached the Grid Before and Afte Deletion of Rows
Thanks in Advance
Muthukumar.R
Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.
Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.
Hi Muthukumar,
To delete multiple selected rows use the GridView.DeleteSelectedRows method. If you need to conditionally protect some rows from deletion, iterate through the GridView.SelectedRows array, and unselect certain rows using the GridView.UnselectRow method.
Please let us know if this makes sense.
Thanks,
Michael.