Hi
I have a problem with RadGrid
It works fine but if someone minizmizes the Browser to half(attached picture) then the grid goes beyond the webpart zone in page of the browser in sharepoint.
How to avoid the same??
Is there any inbuilt feature for creating collapsible rows in a repeater? For example, you have rows of notes and an expand buttom. On clicking on expand that displays the entire notes, the date it was created and by whom.
Hi
I have requirement where i have data shown in Rad Grid(Assuming 4 Columns) and for each row at the end i need to add button as Update
Once i clicked the Update button i want pop up window opened with the values for the row.
I was able to achieve the same using the below Example
http://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/edit-form-types/defaultcs.aspx.
But now the requirement is little complicated here
Assuming We show EmployeeId,Firstname,Lastname and State
1 Steve Jobs CA as example
When clicked on edit button it shows me these values and i can manullay update - But for Countries in need all the States avaialble - Say a list of 50 States shown rather than just textbox of CA and manually typing chaning to NJ - I want dropdown of all 50 States which i have in List and Have CA - selected.
This way the user can edit select what ever state he wants to select.
The class GridTableView supplies the method ExportToPdf(). This method writes the generated PDF-Data to the Page.Response. What I need is a method/solution which doesn't writes to Page.Response and returns a byte-Array or Stream which represents the PDF. Something like that:
public Byte[] ExportToPdfAsByteArray();
Does anyone know how to realize that?
BTW: I have seen the example from Telerik where a method was attached to the GridExporting-Event to extract the PDF-Data from the GridExportingArgs and write the pdf to a file. But that isn't a solution for me because it still writes to HttpResponse and it does a Response.Redirect to the actual page.
I have searched the forums but hve not found anything exactly like this, so forgive if I'm asking a question that's already been answered.
I have a grid where the record is in edit mode. The user tabs from one textbox to the next, entering data. the last tab stop is the check button. When the user tabs to the check button and then hits enter, the OnUpdate code fires. But the row is updated and the row closes and the cursor goes to the next tab stop (in this case, the beginning of the page). I have used SetFocus(AcctHeaderDetail.MasterTableView) to keep the focus on the grid. It does, but the focus goes to the insert button in the grid.
What I need to do is keep the focus in the grid in such a way that the user is able to use the down arrow to move down to the next record, hit Enter and the row opens up for editing.
Ho do I manage control of what object receives the focus after the OnUpdate code behind executes?
I am trying to access to a new added row in radgrid which is not committed yet. Just a new row is added and user enters data. Onclick on a link on this row a new method is being invoked which updates two fields in this particular row. So when user actually click on the insert button the updated fields are saved to the db along with user entry. So I want to know how refer to this newly added row in the radgrid which is not saved yet.
How can I combine two display members in a GridDropDownColumn. For example my table has a column Item_Id. The item table has a Make and Model field. I want my combobox to display Make-Model.