I know what the problem is but do not know how to fix it as I have never run into doin git this way. i have a global boolean variable Fillgrid that is set to true when they click on a view button that allows the grid to be show and rebind. But when i click on the edit link to show the inline edit form, the grid disappears but if I click on the view button agian it appears with the inline editing open. It has to do with the edit button but dont know where to put the show fillgrid boolean statement.
<telerik:GridEditCommandColumn UniqueName="UpdateCommandName" ButtonType="ImageButton" EditImageUrl="../Images/edit_icon.png"></telerik:GridEditCommandColumn><EditFormSettings EditFormType="Template" FormMainTableStyle-HorizontalAlign="Center" FormCaptionStyle-BorderColor="Black" FormMainTableStyle-BackColor="#B0C4DE"><FormTemplate> <table class="GridEdittemplate">
Protected Sub myRadGrid_NeedDataSource(sender As Object, e As GridNeedDataSourceEventArgs) Handles myRadGrid.NeedDataSource Dim UserLogon As String = Split(Current.User.Identity.Name, "\")(1) Dim sqlWhere As String = "" Dim name As String = HFID.Value.ToString Dim Counter As Integer = 0 If FillGrid = True Then FILL radgrid with sql statement myRadGrid.DataSource = getdata(sql) end ifSo my problem is when I click on teh edit button it blanks out the grid and it becomes invisible and it has to do with posting back and showing the edit form but how can i pass in teh fillgrid boolean statement.