I have a requirement where I need to right align the data in my RadGrid (a row of numbers) and I also need to right align the header and the filter controls. Currently there is no FilterStyle like there is HeaderStyle or ItemStyle. Yes, I can right align all of the filter columns, but I need to be able to pick-and-choose which columns get right aligned. When I opened a support ticket the following css was suggested, but that only right aligns the text in the text box, the the controls themselves in the <td>. .rgFilterRow td:nth-child(4), .rgFilterRow td:nth-child(7) { text-align: right; }
I would like to suggest that a more intuitive clear filter option be used on the Filtering columns in the RadGrid. Currently, I have to select "No Filter" from the Filter list of options. Instead, I believe the Filter should be provided to be more intuitive similar to other applications such as Microsoft Access, Excel or Google Search. In Microsoft Access or Excel, I simply unselect the Filter icon to remove the Filter. In Google Search, I simply click the X icon next to my search criteria to remove my search text. Either of these methods should be adopted so that the overall end user experience is more pleasant and comparable to filter capabilities in other tools and products.
1. create a rad grid with clientside binding and a clientdeletecolumn. clientdelete column is buttontype=linkbutton and the linkbutton has a class for a background image 2. set allowpaging="false" but don't set a page size 3. populate grid so that it has 10 records 4. all client delete buttons are visible 5. add more records so that there are > 10 records 6. records from 11>n will not show the clientdeletecolumn 7. now, up the page size to something greater than your record count 8. problem fixed on viewing source you can see that the rgNoRecords tr is inserted after record 10 (default page size), which seems to affect the rendering below. the actual links for the client side delete columns are not rendered
RadGrid client events OnRowDropping and OnRowDropped do not fire if item is dropped onto itself.
I would like to suggest the ability to turn on/off a plus/minus icon that can appear in the grid header in order to expand all or collapse all. This is one of those things that is not very difficult for people to code on their own, but it seems like a basic feature of a grid that can have child detail data. I'd rather be able to set a boolean property through code or in my theme .skin file for the grid, and have it turned on for me. It should function no matter what the HierarchyLoadMode is set to, but when set to "Client", the expand/collapse should all happen on the client. Thanks!