websolutions
New Member
When I click on a RadioButton I need to do a postback so that It can run my RadioButton code.(AutoPostback="true"). I have my Radio button in a jQuery UI dialog and when I click on the button nothing happens and I get an error :\[quote\] Uncaught Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 404\[/quote\]I read somewehre that the dialog actually places itself outside the form?I added this to my Javascript function to prevent it:\[code\]function getFiles(canDo) { //create Popup with content from div $('#file').dialog({//file is the div where my controls are autoOpen: true, height: 'auto', width: 'auto', modal: true, buttons: { "Ok": function () { debugger; }, Cancel: function () { $(this).dialog('close'); } } }); $('#file').appendTo($("form:first")); }\[/code\]Any ideas on why It won't successfully do a postback? or why I get that error?