-
I found this post and tried e.Row.Items(0).FindControl("linkNbr_of_Claims_Sent").Visible = False, but all I seem to get is an error that says "System.NullReferenceException: Object reference not set to an instance of an object." Any suggestions?
-
Can you give an example of how to do this (hide a control in teh InitializeRow event)? I have the following code in my aspx page: <ig:TemplateDataField Key="Nbr_of_Claims_Sent" Width="11%"> <ItemTemplate> <asp:HyperLink ID="linkNbr_of_Claims_Sent" runat="server" NavigateUrl="abc.aspx"
-
I have a field "Claim_Nbr" that I want to display as a hyperlink if another field "Show_as_Link" = "Y", but I just want it displayed as plain text if the field "Show_as_Link" = "N". Here is what I want, but it's not working... IF Eval("Chow_as_Link") = "Y" THEN <ig:TemplateDataField
-
Receiving the "Unknown seerver tag 'ig:GroupField". The code looks like this: <ig:WebDataGrid ID="WebDataGrid1" runat="server" Height="500px" Width="100%" AutoGenerateColumns="False" DataSourceID="SqlDataSource"> <Columns> <ig:BoundDataField DataFieldName="File_ID"
-
Nevermind...I found it. e.Row.Items.FindItemByKey("Duplicate_Flag").Value
-
Can you tell me how to get the value of the cell in the row? In UltraWebGrid, I used e.Row.Cells.FromKey("Duplicate_Flag").Value...but this doesn't work with the WDG.
-
With UltraWebGrid, I did this in the InitializeRow event: If e.Row.Cells.FromKey("Duplicate_Flag").Value = "Yes" Then If e.Row.Cells.FromKey("Duplicate_Flag_Description").Value Like "DOS in Claims *" _ Or e.Row.Cells.FromKey("Duplicate_Flag_Description").Value = "DOS in AIM" Then e.Row.Cells
-
Thanks!
-
I am experiencing the exact same problem. I actually have several columns (3 of them are DropDownProvider) and they all save just fine if another cell is clicked on, but if the value changes in the last one the user touches and then they immediately press the Save button, the last one th user changed does not save the value the user entered. Were you
-
Batch updating is set to true. I need to be able to use batch updating. Even after refreshing the page, the row still exist...so it doesn't appear to be deleting the row at all. Any suggestions on how I can get this working?