Hi,
In my web page (ASP.Net / VB), I have a RadGrid where I bind data on my BD and all my data is displayed correctly. In my grid, I added in each case (row) an Edit button to change my line.
When I click on my edit button, I call a JS method (client-side) to display my RadWindows.
It displays correctly. In addition, at my edit button, it calls the ItemCommand (server-side) of my RadGrid to make any adjustments.
My problem is that since my RadWindows is responsible for loading the page, I can not change it's worth, I'm tempted to add at my AjaxManager the method for edit action (ID: ImgEdit in my TemplateColumn) refresh my RadWindows, but it does absolutely nothing happens.
I do not know if you have an idea or suggestion that would allow me to "fix" my problem, but if that is the case, I thank you in advance ;)
Thank you !
Mathieu
P.S: Sorry for my English low.
In my web page (ASP.Net / VB), I have a RadGrid where I bind data on my BD and all my data is displayed correctly. In my grid, I added in each case (row) an Edit button to change my line.
When I click on my edit button, I call a JS method (client-side) to display my RadWindows.
function openAddPeriodeDialog() { var Rad = $find('<%=RadWindowAddPeriode.ClientID%>'); Rad.show();}It displays correctly. In addition, at my edit button, it calls the ItemCommand (server-side) of my RadGrid to make any adjustments.
Dim AnneeFinanciere As String = DirectCast(e.Item, GridDataItem).Item("AnneeFinanciere").TexttxbAnneFianciere.Text = AnneeFinancierepanelTypePeriode.Visible = FalseRadGridIntervalle.DataSource = ObjPeriodeComptableController.GridInsertSelect(AnneeFinanciere)RadGridIntervalle.Rebind()My problem is that since my RadWindows is responsible for loading the page, I can not change it's worth, I'm tempted to add at my AjaxManager the method for edit action (ID: ImgEdit in my TemplateColumn) refresh my RadWindows, but it does absolutely nothing happens.
<telerik:AjaxSetting AjaxControlID="TemplateColumn"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadWindowAddPeriode" /> </UpdatedControls> </telerik:AjaxSetting>I do not know if you have an idea or suggestion that would allow me to "fix" my problem, but if that is the case, I thank you in advance ;)
Thank you !
Mathieu
P.S: Sorry for my English low.