All Questions
316 questions
1
vote
1
answer
732
views
Hide and show dropdownlist item in gridview
I want my dropdown list gridview to do not display have the same list item except for the "Please Select".
My dropdown is in gridview and the list item is in the code behind.
For example if ...
1
vote
0
answers
435
views
How to keep Nested Child GridViews Expanded across PostBack in ASP.Net C#
I am using nested datagrids from www.aspsnippets.com
On the inner grid I am allowing the user to delete rows.
However when the page posts back I am unable to reopen the row that was opened and no of ...
0
votes
1
answer
508
views
ASP .NET RowDataBound attribute working for only one row (first one)
I want to blink selected rows in gridview. I'm using a jquery and binding it to ID attribute under RowDataBound method.
But only one row (first one) is blinking, even if there are multiple rows set to ...
1
vote
0
answers
52
views
Draggable nested GridView Asp.Net JQuery
I am already dragging the parent gridview around. My gridview has a nested gridview inside and I also would like to drag the child gridview outside the parent gridview.
Thank you
Gridview example ...
-1
votes
1
answer
512
views
ASP.NET Using JQuery with nested, editable GridViews with expand/colapse features
One part of my application uses nested GridViews in order to display data. I have clients' orders, and each order consists of 1-or-more products. Now, in order to present data to the user, I used the ...
0
votes
1
answer
2k
views
find Control in TemplateField of GridView with jquery or javascript
On client side button click event, I want to get control id that are place in Item template of Grid View. I tried this code but it doesn't work. Thanks
function buttonClicked(sender, args) {
var ...
0
votes
1
answer
71
views
access control using jquery in gridview cell in the telerik datepicker selecteddate event
<asp:TemplateField HeaderText="DOB" >
<ItemTemplate>
<telerik:RadDatePicker RenderMode="Lightweight" ID="txtDob" runat="server"
DateInput-DateFormat="yyyy-MM-dd"
DateInput-...
1
vote
0
answers
779
views
Enable Inline Editing Gridview ASP.NET when Data come from DataTable Ajax Server Side Processing
I tried several way how to do my gridview enable inline editing when i full fill the gridview from DataTable Server Side Processing. I follow this TUTORIAL to do this, but I still have a problem.
...
0
votes
2
answers
1k
views
jQuery to click select button on a gridview row
I have a simple gridview with autogenerated select buttons:
<asp:Gridview runat="server" id="gvChemDates" CssClass="c_gvv"
onselectedindexchanged="getValues" AutoGenerateSelectButton="True" /&...
0
votes
2
answers
84
views
jQuery selected grid cell not returning html() value
I have a dynamically-created ASP.net gridview. I want to return the contents of the grid cell my user clicks. Everywhere I look, the html() property should do it, but mine keeps coming back 'undefined'...
1
vote
3
answers
3k
views
Calling button click on file upload inside gridview
I'm trying to upload a file onchange event of the "Fileupload" control inside gridview.
Means when ever user uploads the file, there itself I needs to save the file content in DB.
So, I had mannually ...
0
votes
0
answers
24
views
Issue populating ASP Gridview [duplicate]
I have a WebMethod in my aspx.cs which is being called on the client side via jquery using an Ajax POST Request when an ASP:Label is being clicked.
The WebMethod points to another method in the aspx....
2
votes
0
answers
242
views
JQuery To Insert Multiple GridViews into SQL Server database
I have the below syntax - which works for inserting my gridview1 (with the C# code behind) but how could I alter this to work for both my gridview1 and gridview 2?
if I need to add my logic for my ...
0
votes
2
answers
520
views
How to Update Gridview Row without saving data to database
Hi I have a GridView I am using built in Edit method that comes along with GridView in ASP.NET Web Forms. I want to Edit/Update the row in such way that it should only be updated
dynamically in row ...
1
vote
0
answers
209
views
I am getting null value in Gridview Datakey. I have loaded Grid through javascript
I want to select a record from Grid that will redirect me to a detail form right now when I select a record it gives me dull value in Gridview.SelectedValue.
...