It is really a good article and it is very easy. Thank you so much.
xiao bin bin
Posts
-
How to call trigger server side button click from client side javascript code? -
How to call trigger server side button click from client side javascript code?hello, there, I want to trigger a server side button click from client side javascript code. I searched the Internet, but I could not find a solution. I learned it seems I need to call _postback function. But I could not find more details. function Button2_onclick() { __doPostBack('<%=Button1.UniqueID%>', 'onclick'); } I put this in the client side code. but I got server side errors. Please let me know that how to solve this problem. Thank you very much in advance.
-
Need Help with Gridview RowState.Hello, there, I'd like to know how I can change the rowState in GridView. I want to set every row to the edit state when open the gridview control. I made changes to rowCreated function of the grid view to change every datarow to the Edit state. But the it is not working at all. The following are the code. If (e.Row.RowType = DataControlRowType.DataRow) Then e.Row.RowState = DataControlRowState.Edit End If Will you please tell me what I should do to make it happen? Thank you so much in advance.
-
Question about HeaderStyle in GridViewThanks for your reply. It tried to define it in the asp:BoundColumn. But it seems the header style defined in the column won't override the style of the whole header. Should I use z-index to make it work? The header style defined for column is not working at all. Thank you again.
-
Question about HeaderStyle in GridViewI'd like to know whether it is possible to set different HeaderStyle for different columns in Gridview. I tried to put headerstyle cssclass tags in different columns. But this method is not working. Is there a way to do it? Thank you so much in advanced bin bin
-
How to Capture "ESC" key stroke in ASP.NET web application.Thank you very much.
-
How to Capture "ESC" key stroke in ASP.NET web application.Hello, I'd like to know how I can capture "ESC" key stroke in ASP.NET application. So that I can use it to cancel current editing for a Gridview row. Thank you very much in advance.
-
how to implement editable table with several fixed columns?I agree with you. Thank you so much.
-
how to implement editable table with several fixed columns?Thank you for your reply. I am thinking put the fixed columns in a seperate datagrid and put two datagrids (or tables) together. But it seems it is quite complex to do it, especially the editing part. Is there any easier way to do this? Thank you very much.
-
how to implement editable table with several fixed columns?Hello, there, In my current project, I am dealing with table with many many columns. I need to make a table with first several columns fixed. It is like the table in Excel with locked columns. Only the columns after the fixed columns can be scrolled horizontally. It seems very difficult to implement. I could not figure it out. I am thinking to put two tables together and put them in a div. But it seems difficult to edit everything in a whole row. Because they are actually 2 rows from two tables. Is there any link or sample code for this kind of table? Thank you so much in advance.