Simple I thought but I can't get any success:(
What I am trying to achieve is that when a radWindow closes the grid refreshes.
I use a radWindow opened by a button in a grid row to allow uploads of files to be associated with the row. When the upload completes the user closes the upload window and I then want to refresh the grid in order to show the names of the files uploaded in a grid cell.
The upload updates the database table with the names of the uploaded files.
tow attempts that fail -
Declan
What I am trying to achieve is that when a radWindow closes the grid refreshes.
I use a radWindow opened by a button in a grid row to allow uploads of files to be associated with the row. When the upload completes the user closes the upload window and I then want to refresh the grid in order to show the names of the files uploaded in a grid cell.
The upload updates the database table with the names of the uploaded files.
tow attempts that fail -
function onClientClose(radWindow) { |
alert('ClientClosed'); |
var masterTable = $find("<%= grd.ClientID %>").get_masterTableView(); |
masterTable.dataBind(); |
// window('<%=grd.ClientID %>').AjaxRequest('<%= grd.UniqueID %>', 'ResetAndRebind'); |
} |
Declan