Radgrid Edit / Update Not Working?

Oct 26, 2010

I'm having a wired problem with Radgrid.. Im using a Radgrid to display some results where the user can edit/update/delete them. I'm using a single SQL Server 2000 table to fetch the results... Not sure why the events are not firing in radgrid. But I am able to do it successfully using the Gridview control... Im using .NET framework 4

Radgrid code

<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False" AutoGenerateDeleteColumn="True"
AutoGenerateEditColumn="True" DataSourceID="SSDS" GridLines="None" Width="844px"
DataMember="DefaultView">[code]....

View 1 Replies


Similar Messages:

Only Allow One Edit Or Insert In A RadGrid?

Jul 22, 2010

I'm using the Telerik rad grid and I'm allow the user to enter data directly to the grid.

I am using the "EditForms" edit mode and I also allow inserts using the same.

If the user edits a row, then I don't want to allow any other edits or inserts until the current one is complete or cancelled.

View 1 Replies

Set Telerik RadGrid To Edit Mode By Default?

Dec 7, 2010

I have a checkbox column in a RadGrid that I want the user to be able to check/uncheck it and set the attached property. When the grid renders however, the checkboxes are disabled, because the grid is not in "edit mode". All the examples I'm finding want me to go through a lengthy process of selecting the record, putting it into edit mode, changing the value, saving the value.... yada yada yada...I just want the whole grid to be in edit mode (or the column, or whatever works) from the get-go, so the end user can make a one-click change to the data value. I know there must be a way to do this, I just can't seem to find it.

View 1 Replies

Setting A RadGrid To Edit Mode From An External Button?

May 20, 2010

I have a rad grid where I can insert/update and delete items of data. i have set up a CommandItemTemplate with a button that, when clicked will put the grid in edit mode. What I would like to do is have the same functionality but from an external asp.net button. If I can get this button to trigger the adGrid_ItemCommand event then I could get it working. But how do I pass the relevant GridCommandEventArgs from a asp.net button ?

View 1 Replies

Javascript - Getting ClientID Of Control In RadGrid Edit Form

Aug 16, 2010

I have Telerik RadGrid with a custom edit form. In my edit form there is a RadDatePicker to which I have added a custom footer template containing a 'Today' button. In the OnClick event of the button I call a Javascript function which takes the control ID to set the selected date. However, because the control is inside the edit form there is no variable created for it and the compiler throws an error when I try getting the client ID. The RadDatePicker is declared with:

<telerik:RadDatePicker ID="ControlName" runat="server" SelectedDate='<%# Bind("Field") %>'>
<Calendar ID="Calendar1" runat="server">
<FooterTemplate>
<div style="width: 100%; text-align: center; background-color: Gray;">
<input id="Button1" type="button" value="Today" class="button"
onclick="GoToToday('<%= ControlName.ClientID %>')" />
</div>
</FooterTemplate>
</Calendar>
</telerik:RadDatePicker>

The error I get is CS0103: The name 'ControlName' does not exist in the current context on the line referencing the ClientID. Is there another way in which to get the ID to pass to the Javascript function?

View 3 Replies

Data Controls :: Single Quote Not Working With GridView Edit And Update Functionality

Jan 24, 2016

I have a record in gridview contains string with special character like single quotes( ' ) etc..I've a edit button in gridview when i click on edit button of any record of Gridview then corresponding record shown to text box.

But on that time single quote looks like below ....

Before edit button click string in gridview cell, a testimonial or show consists of a person's written or spoken statement

After edit button click string in textbox, a testimonial or show consists of a person's written or spoken statement but when I click update button shows following error :

"A potentially dangerous Request.Form value was detected from the client (ctl00$ContentPlaceHolder1$tb_comment="...f a person's written or sp...")"

What is the solution so that single quote shows as it original format as it looks in gridview cell when i click on edit button.

View 1 Replies

Using Telerik RadGrid - How To Set The Date Format For Autogenerated Column In Edit Mode

May 23, 2010

Using VS2008, and Telerik radGrid version 2010.1.519.35

I have a about 50 DNN modules using telerik radgrid and I need to display my dates in dd/mm/yy format. It is possible to do this easily in view mode, but when I switch to edit mode, it is more of a struggle. I can write a snippit of code to reformat the displayed date values to dd/mm/yy, but for inserts the user must enter mm/dd/yy.

IOW, I need to change the culture of the form to en-GB culture.

In my DotnetNuke App, I have made a change to the web.config, but it still assumes en-US format.

I am not sure whether I need to set this at web.config level, page level or at the column within the control.

View 3 Replies

Javascript - Accessing The MasterTableView Edit Form In Radgrid To Get Reference To Textbox?

Mar 11, 2011

accessing the currently edited existing row in the Radgrid, as as well as the index of the Edit form when trying to add a new record to the table/

function OnClientSelectedIndexChanged(sender, eventArgs) {
var item = eventArgs.get_item();
// alert(item.get_value());
grid = $find("<%= rgSecurity.ClientID %>");

[Code]....

View 1 Replies

C# - Filtering On RadGrid Not Working?

Jan 15, 2010

I created a RadGrid with a couple of fields for filtering and I can't seem to get the filtering to work. I can see it clearly posting back (the ajax spinny circle thing) after typing something in the filter box, however my results are always the same. I am using the following definition in the aspx file:

<telerik:RadGrid PageSize="4" ID="RadGrid1" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" OnNeedDataSource="RadGrid1_NeedDataSource"
OnSelectedIndexChanged="RadGrid1_SelectedIndexChanged" Skin="Black" ShowFooter="True"
ShowStatusBar="True" AllowFilteringByColumn="True"

[Code]....

View 2 Replies

C# - RadGrid Column Editable On Insert But Set To Readonly On Update?

Nov 6, 2010

I have a RadGrid which has a column like:

<telerik:GridTemplateColumn HeaderText="Car" >
<ItemTemplate>
<asp:Label ID="MakeLabel" runat="Server" Text='<%# Eval("Make") %> />
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="MakeTextBox" runat="Server" Text='<%# Bind("Make") %> />
</EditItemTemplate>
</telerik:GridTemplateColumn >

and I'm wanting to set it up so that this column will allow input when inserting new values but won't when updating values.

View 2 Replies

Web Forms :: GridView To Update (edit) Columns And View Table Without Edit Link?

Jan 25, 2011

I have a user requirement to hav the ability to directly edit the gridview without having to click the edit link. I was thinking of showing dropdown lists for each column-to-row so that the user can select the values for each record. Then the table will be updated accordingly (no update link).

Is this possible or do I still need the edit template and specify the item template with the dropdown list?

View 1 Replies

Forms Data Controls :: Gridview Update Mode Is Not Ending After Clicking On Edit Then Update?

Mar 23, 2011


[Code]....

View 8 Replies

Edit And Update .net Dll?

Jun 27, 2010

i have an existing .net dll which is in c#, i can able disassembled that dll. but i just want to edit the class methods and update into the same dll.i am using reflector to see the source code..but i want to edit and update the methods in that dll

View 1 Replies

Gridview Edit Not Working After Sorting ASP.NET

Jun 4, 2010

I have a Gridview for which I have provided Sorting, Edit functionality. I am not able to perform EDIT when I perform Sorting. After sorting edit is set on some other row.

View 1 Replies

Web Forms :: RequiredFieldValidator Not Working When Edit FormView?

Mar 4, 2011

I have a FormView in which I have placed RequiredFieldValidators on some of the input controls in EditItemTemplate. But the validators all don't work when I hit the submit button.

I've tried FormView1.FindControl("RequiredFieldValidator1").Enabled = true but the compiler complains that 'System.Web.UI.Control' does not contain a definition for 'Enabled'.

See my code below:

[Code]....

View 5 Replies

Visual Studio :: Edit And Enable Not Working?

Jul 12, 2010

I am using VS 2008 and created Web site project ( not web application project ) . And i have enabled the edit and continue option in Tools=>Option=>Debugging . It allowed me to edit, but when i continue it come out with the message box and it does not effect whatever i have changed.

View 2 Replies

AJAX :: Gridview Inline Edit Not Working?

Apr 8, 2010

my code:

[Code]....

when i click on the "edit" button on the commandField, nothing happens

View 4 Replies

AJAX :: Masked Edit Control Is Not Working?

Sep 3, 2010

I'm using MaskedEditExtender for numeric field (i.e.%). In that field, user can enter the percent value between 1 and 100 and also decimals like 12.34. Doing this, I have used this code which is not working.

<ajaxToolKit:MaskedEditExtender ID="TestDetailsControl_maxTotalScoreMaskedEditExtender"
runat="server" Enabled="True" ErrorTooltipEnabled="True" Mask="999.99"
MaskType="Number" AutoComplete="true" AutoCompleteValue="" InputDirection="LeftToRight"

[code]...

View 2 Replies

AJAX :: Data List Edit Not Working?

Mar 1, 2011

i have data list in update panel edit delete commands are not working

if i remove update panel then it is working fine

View 1 Replies

AJAX :: ReorderList Edit Item Not Working?

Jan 21, 2011

I cannot get my reorderlist item to convert to the edit item template correctly for some reason on the first click. On the second click it appears though everytime!

Here is my code which should set the item into edit mode:

protected void rlReorder_ItemCommand(object sender, ReorderListCommandEventArgs e)
{
ReorderList sendingList = (ReorderList)sender;
sendingList.EditItemIndex = e.Item.ItemIndex;
}

View 1 Replies

C# - How To Edit / Update Records From A Database Using Textbox

Mar 21, 2011

I have in my page an edit button and textboxes. I want to edit one single record from the database to these textboxes. I wrote the following code, when I click the edit button then I have the results. The results load in my textboxes. But when I try again to run the page with the same ID for second time then I have this error 'Specified cast is not valid.' What's going wrong? I used int ID=3; to get the 3rd record in this example

[code].....

View 3 Replies

C# - How To Edit And Update Row Values In Grid View

Feb 15, 2011

I have a gridview like this :

<asp:GridView ID="gvProducts" runat="server" AutoGenerateEditButton="True" AutoGenerateColumns="False"
OnRowEditing="gvProducts_RowEditing" OnRowUpdating="gvProducts_RowUpdating" CellPadding="4"
ForeColor="#333333" GridLines="None">
<RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
<Columns>
<asp:TemplateField>
<HeaderTemplate>
<asp:Label ID="lblPID" runat="server" Text="Product ID"></asp:Label>
</HeaderTemplate>
<ItemTemplate>
<asp:Label ID="lblProdID" runat="server" Text='<%#Eval("ProductID")%>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="txtProdID" runat="server" Text='<%#Eval("ProductID")%>'></asp:TextBox>
</EditItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<HeaderTemplate>
<asp:Label ID="lblPName" runat="server" Text="Product Name"></asp:Label>
</HeaderTemplate>
<ItemTemplate>
<asp:Label ID="lblProdName" runat="server" Text='<%#Eval("ProductName")%>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox ID="txtProdName" runat="server" Text='<%#Eval("ProductName")%>'></asp:TextBox>
</EditItemTemplate>
</asp:TemplateField>
</Columns>
<FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
<HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
</asp:GridView>

and here is the code behind page

protected void gvProducts_RowEditing(object sender, GridViewEditEventArgs e)
{
gvProducts.EditIndex = e.NewEditIndex;
}
protected void gvProducts_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
int i = e.RowIndex;
object control = gvProducts.Rows[i].FindControl("txtProdID");
//i want to access the new value from the object "control" but i m getting the previous value only
}

View 2 Replies

Web Forms :: Edit Update Dynamic Pages?

Oct 21, 2015

i read your post  (Dynamic Pages ) it was fantastic really nice the question is that how to edit the page which is created dynamically for example suppose we need to add some more content into that page or  we want to remove some of the content, 

View 1 Replies

AJAX :: Masked Edit Backspace Not Working On Chrome?

Sep 23, 2010

I am working on an app and have added masked edits to some of the textboxes. On Google Chrome v6.0.472.62 the backspace button is inoperative along with the delete button. I have found no method around this. It also functions incorrectly on the ajax toolkit website: [URL]

Chrome is fairly popular and I doubt I can use this code with this issue.

View 1 Replies

Forms Data Controls :: Edit Command Is Not Working?

Nov 9, 2010

I have a gridview. Every time i click on the Edit command, it caused the Delete command fired. This gridview works fine on the test site, but it does not work on the live site.

Do you know what causes this issue?

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved