I've got a gridview connected to an objectdatasource which is bound to some custom objects in my code (code is below). The problem I'm having is that the value passed into my update method is the old value, not the new value. Thoughts?
Imports System.Configuration
Imports System.Web.Configuration
Imports System.Security.Cryptography
Imp...
i have a datalist and inside it there is many rows and in one of these rows i have a gridview,. i can say that it's like the following
<DataList>
<tr>
<td> [textbox1 control] </td>
</tr>
<tr>
<td> [textbox2 control] </td>
</tr>
<tr>
<td>
<gridview/>
</td>
</tr>
</DataList>
my problem is when...
Hi,
on my website i have gridview with select button dispalying a list of persons connected with objectdatasource. When I select person in gridview i want to fill form under gridview. Here is gridviews databound and selectedindexchanging methods:
protected void grdAnotatorList_DataBound(object sender, EventArgs e)
{
if (grdAnotatorL...
Hi
I am currently working on setting tab order for my appliction.
When I click some item inside grid view or datagrid it display pop up, How can access the client id of the particular item (cell) which caused the pop up to appear..
??
And also how can reset the focus back top that item in grid view..
can anyone help??
...
Hey Everyone,
I'm a seeing some weird behavior that i have never seen before.
I have two grid in separate UpdatePanels. I can page and sort each without any problems.
Each grid is set for 10 per page.
If the first grid (13 records) is paged to the second page and then i go down to the second grid (14 records) and page to the next pa...
In a ASP.NET application I have a paging RadGrid which shows up textbox in each row. Outside the grid, there is an OK button to save the content of all the textbox. If user changes text in any one or more of the textbox and without clicking on the "OK" button, tries to move to a different page number (of the grid by clicking on the page ...
I have a gridview control having 4 columns. one of the column is of type linkcolumn. user has to enters data for each column.
How can we edit link column cell. if i click on this cell nothing happen.i set its readonly to false also.
...
Hi!
I would like to export to a csv file the content of a gridview in WPF. Which is the best and efficient way to do it?
Thanks!
...
Hi!
I have a gridview into a listview and what I want is to convert gridview to a temporal datatable including column headers. How can I do this?
Thanks.
...
I have a GridView, inside a UserControl, inside an UpdatePanel on a page.
There's a button in the GridView which needs to fire a postback. What happens is:
User clicks button -> RowCommand Fires -> Custom event is raised on UserControl -> Page detects this and changes the active view index for a multiview and also the page title and som...
I am creating gridviews using C# and ASP.net ... I need help in creating 2 gridviews which they have same processID and getting data from different SQL tables in the same database..When I click on the one first row of the first gridview it should give me the list of files with the same processID and its details in the second gridview
On...
While reskining GridView (ListView with more columns), I ran into a problem, that I couldn't change the color of the Highlighted row. I searched the internet and found out, that adding this can help.
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}"
Color="Transparent" />
<SolidColorBrush x:Key="{x:St...
The GridView in ASP.NET 2.0 is trimming the leading spaces from data coming from a SQLServer database. I have yet to find a way to keep it from doing that. The data in this particular view is being edited to remove such spaces, but only upon editing the row can any leading spaces be seen, meaning, at present, each row will have to be tou...
hi!
In my gridview I need to aggregate subrows into each row, something like in p2p emule/amule application where you can do double click to each file you are downloading and then under it you can see the parts of the file from where you are downloading.
Is it possible in WPF?
Thanks.
...
I am trying to do efficient paging with a gridview without using a datasource control. By efficient, I mean I only retrieve the records that I intend to show.
I am trying to use the PagerTemplate to build my pager functionality.
In short, the problem is that if I bind only the records that I intend to show on the current page, the grid...
I'm trying to implement a GridView with paging inside a UpdatePanel. Everything works great when I do my first click. The paging kicks in and the next set of data is loaded quickly. However, when I then try to click a link for another page of data, I get the following error:
Sys.WebForms.PageRequestManagerServerErrorException: An unk...
I am wanting to use the example from
http://blogs.microsoft.co.il/blogs/tomershamam/archive/2008/09/22/lt-howto-gt-replace-listview-columns-with-rows-lt-howto-gt.aspx
However I don't want to put this into the App.xaml code as this will apply to ALL gridviews, how do I apply this example to a select few gridviews in the application? Th...
I am stumped on this one. I want to modify the text in a Hyperlinkfield of Gridview after the data is bound to it. I found similar code to this on msdn and I can't get it to work.
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
e.Row.Cells[2].Text = e.Row.Cells[2].Text + "random text";
...
hi,
I have a HTML button,upon clicking the button I am calling the following javascript function,passing the div id in which my gridview is present.
function CallPrint(strid)
{
var prtContent = document.getElementById(strid);
var WinPrint = window.open('', '', 'left=0,top=0,width=900,height=600,toolbar=1,scrollbars=1,status=0');
Wi...
What I'd like to do is create a second row that spans the others within a GridView. The idea is that it is data within the GridViewRow, say a long varchar() in col 4. But when translating to HTML, how would I put that in a second row?
<table>
<tr>
<td></td>
<th>ru sure?</th>
<th>date</th>
<th>catego...