J
JohnE
I have a gridview (master) that when a linkbutton is used it opens the
formview (detail) for the record. It is all working. The linkbutton opens a
showModalDialog rather then the modalpopupextender.
function ShowChangeRequestDetail(ChangeRequestID)
{
window.showModalDialog("ProteusListDetailView.aspx?ChangeRequestID="
+ ChangeRequestID, "",
"dialogWidth:700px; dialogHeight:500px; resizable:no;
scrollbars:no");
}
As mentioned, it all works like it should.
The issue is when I use the Edit button on the formview it opens another
window with all the internet webpage controls on it (favorites, menus, etc).
Plus the window is almost the size of the screen. What is controlling the
Edit button was done when the formview was created. Both of these are not
acceptable for the users. How do I go about controlling the window that the
Edit button (not linkbutton) opens up for editing? Any examples, samples,
links are welcomed.
Thanks... John
formview (detail) for the record. It is all working. The linkbutton opens a
showModalDialog rather then the modalpopupextender.
function ShowChangeRequestDetail(ChangeRequestID)
{
window.showModalDialog("ProteusListDetailView.aspx?ChangeRequestID="
+ ChangeRequestID, "",
"dialogWidth:700px; dialogHeight:500px; resizable:no;
scrollbars:no");
}
As mentioned, it all works like it should.
The issue is when I use the Edit button on the formview it opens another
window with all the internet webpage controls on it (favorites, menus, etc).
Plus the window is almost the size of the screen. What is controlling the
Edit button was done when the formview was created. Both of these are not
acceptable for the users. How do I go about controlling the window that the
Edit button (not linkbutton) opens up for editing? Any examples, samples,
links are welcomed.
Thanks... John