Web Forms :: Browser Popup Window Maximize Button Is In Enable State In Chrome Browser
Dec 14, 2012
I used javascript code to open popup window.Popup window "Maximize" button is in
disable state.But in Chrome it is in enable state.I want to make browser maximize button disable.
Below is my javascript code
function Call_PopUp(event, URL) {
window.open(URL, 'CustomPopUp', 'width=990, height=540, menubar=no,scrollbars =yes, resizable=no, top=50,left=50,toolbar=no,dialog=yes,minimizable=yes,maximizable=no');
}
View 1 Replies
Similar Messages:
Sep 27, 2010
Im calling the new popup window from gridview like
[Code]....
In the AddTargetPopUP.aspx ,I have button Call "ADD".When i click the add button it'll insert datas into database.I want to reload the parent gridview after insert into the database and want to close the popup.
View 4 Replies
Jun 28, 2010
i am writing an application, and i have a link on a page that opens its url in a new browser window. on this new window, i have an asp.net gridview with radio button on each row and each row has a staff_id, and staff_name column, and the gridview has datakeys as staff_id, staff_name.
my question is that i want to be able to select a row (using the radio button) and when user clicks a button on the new window, and i want to populate two textboxes on the parent window with the staff_id and staff_name values from the selected row(in the popup window), and if possible close the popup window.
View 1 Replies
Mar 9, 2011
I am open up the <div id="movMe"> with the ImageButton lnkBtnColHelp and animationextender. The <div> is not visible when I have pressed the button. But if I minimize and maximize the explorerwindow the <div> becomes visible, I do nothing more than that. So it is there but cant be seen.
What does this depend on? I dont know if I need to focus the <div> in somehow. I tried to put a function
moveMe_Clicked() but that did not help. [Code]....
View 1 Replies
Sep 22, 2010
In my project i have tab navigations (like 4 tabs in a page) when i click on the tab i will get that corresponding tab fields.
for tab navigation i use Menu item my code is below
<asp:MenuItem Text="Personal" Value="0"></asp:MenuItem>
<asp:MenuItem Text="Education" Value="1"></asp:MenuItem>
<asp:MenuItem Text="Experience" Value="2"></asp:MenuItem>
<asp:MenuItem Text="Awards" Value="3"></asp:MenuItem>
PROBLEM TO SOLVE:
the tab control is working well IE, FIREFOX,
But not in chrome browser i cant do the tab navigation and link button clicks and Ajax calendar control also.
View 9 Replies
Jan 4, 2011
I can't use RegisterStartupScript('window.open...), because Chrome blocks the popup without even informing the userI can't use "onclientclick=window.open(..." in the markup, because I have to invoke code in the button click event handler before opening the popup window.I can't expect every user of the website to add the site as an exception in Google Chrome's popup blocker, since they'll assume it's an error on the website and not with the popup blocker
View 5 Replies
Jul 25, 2010
I have developed a simple .aspx page which has a link button.Now, when a link button is pressed, the page is postbacked and response is returned with some records that i want to display on a popup window.But i dont want to open a new window. i want to open it in a popup on same browser page.I have seen this functionality in facebook.com. when you click on "See All" linkbutton to view all your friends list, a serverr request is sent to get the list of friends and is displayed in special type of popup in same browser window.i dont know weather they have used jQuery or AJAX.But i want to implement same functionality.
View 13 Replies
Dec 3, 2010
Today i faced on problem in my application developing in asp.net with c#..
actually have a requirement for showing new page in javascript popup window by using the code like this
[Code]....
View 3 Replies
Mar 1, 2011
I am create crystol report in asp.net in visual studio 2010 but crystol report toolbar Print Button Not working in Google chrome brouser
View 2 Replies
Jan 7, 2011
How do I abandon the session when the user closes the browser window instead of pressing the logout button in ASP.Net 3.5 application.
View 5 Replies
Oct 26, 2012
How to call the server side method on browser window close button...
View 1 Replies
Feb 9, 2010
I have website home page which my client can view well on his blackberry mobile phone but I have link buttons on that page which redirect the users to other pages ..just Response.Redirect ............simple code.... but when he clicks on the link, it requests for enabling javascript..I do that but the home page just does a postback. Links are not working on cellphone........... on regular website they are working fine.
View 2 Replies
Jun 16, 2015
While im trying to execute the asp page, im getting this error,"This webpage has a redirect loop".
View 1 Replies
Aug 24, 2012
i have created a website whose product images are coming from database it is working properly in IE, Firefox but not displaying images in Chrome.
[URL]
View 1 Replies
Mar 3, 2013
I have implemented bing Driving direction. I use Firefox, the map is load normal. but use chrome Browser, the error displaying VeMap is undefined.
<head>
<title>Driving Directions</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style type="text/css">
li {
line-height: 1.5em;
[code].....
View 1 Replies
May 19, 2012
<cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server" TargetControlID="Button3" BehaviorID="popup1" PopupControlID="Panel2" BackgroundCssClass="modalBackground" OkControlID="cmdclose" />
<asp:Panel ID="panel2" BackColor="Silver" BorderStyle="Solid" BorderWidth="4" BorderColor="ActiveBorder" Width="775px" Height="550px" runat="server"><grid> </asp:Panel>
I have the above. It works fine in IE & FF but in chrome 1) if more rows grid appears out of panel without scroll bar (same works fine in IE & FF)2) when clicked any where the grid disappears or close but in IE & FF it closes only on cmdclose...
View 1 Replies
Feb 11, 2010
I've a checkbox and a label in a page. If check/uncheck the checkbox the label's text is updated such as "Checked/UnChecked".Here is my problem. The page loads initially with the checkbox unchecked. So after i check it and the postback occurs it shows as checked. But if i click the browser back button, the label is getting revoked to its original state before the postback (showing the text as 'unchecked'), but the checkbox is not getting back to its unchecked.I know that this is the native behavior. But can i write any javascript fix to get this thing done?
View 9 Replies
May 24, 2012
In Google Chrome Microsoft Report viewer doesn't display properly.
View 1 Replies
Jan 27, 2010
I want to open a popupwindow (with close button only) when the user clicks a button and the parent window should be disabled until the popup window closed. For that I'm using the following code
function popup_window(url) {
popupwin = window.showModalDialog(url,null,'height=20,width=150,status=no,resizable=no,scrollbars=no,toolbar=no,location=no,menubar=no');
}
Anyhow, this code is working perfectly in IE. But, I hav two problems. In firefox, it is not opening with the size I've mentioned in the script. It is opening in full size. And In Google Chrome, parent window is not getting disabled.
View 1 Replies
Feb 28, 2011
I have use fckeditor in asp.net. When user open the page containing fckeditor in Chrome. User can resize the text area of fckeditor. I want to prevent this.i.e.user should un-enable to resize the text area.
View 2 Replies
Nov 30, 2010
My Pagemethod implementation is not working in Chrome browser. I have ASP.NET 3.5 web application developed in VS 2008.
The code below not working in chrome or Safari:
function FetchDataOnTabChange(ucName)
{
PageMethods.FetchData(ucName, OnSuccessFetchDataOnTabChange, OnErrorFetchDataOnTabChange);
}
function OnErrorFetchDataOnTabChange(error)
{
//Do something
}
function OnSuccessFetchDataOnTabChange(result)
{
//Do something
}
View 2 Replies
Aug 15, 2012
I have an application including an Asp:menu. This renders perfectly in both IE and Firefox, see screenshot gf1.jpg.
Running in Chrome the rendering is bad. There is added wide space in the top menu, so the area is much wider, and thereby not correct. See gf2.jpg.
I have tried using this workaround found by surfing, but it is still the same. Can I add some additional code, that will prevent this?
Code:
If Request.UserAgent.IndexOf("Chrome") > 0 Then
If Request.Browser.Adapters.Count > 0 Then
Request.Browser.Adapters.Clear()
Response.Redirect(Page.Request.Url.AbsoluteUri)
End If
End If
I want it to be displayed equally in IE, Firefox and Chrome....
View 2 Replies
Mar 11, 2011
As the part of C#.net project I have to call one function and after that open a pop up window from a button click. In Internet Explorer I can done this successfully but the same code not working on Google Chrome. The code is adding below.
protected void btnaddtogroup_Click(object sender, EventArgse)
{
fetchaddressid();
string strScript = "<script language=javascript>OpenPopup();</script>";
Page.RegisterStartupScript("callTest", strScript);
}
View 3 Replies
Feb 23, 2010
In web application i.e .aspx page once user clicks on logout it redirects to login page by clearing all the sessions. Now when user clicks on back button in the browser it redirects to last view page. Since user logged out from the application how can we show the last viewd page? when user clicks on the page it checks hte session exsits or not then redirects to login page..
But i dont wna t the user to lick on the back button.. i want to siable the back option int browser .. I have achived this by
using.
<script>
window.history.forward(1);
</script>
This solution works in all the browser but Not In Google Crome..
View 3 Replies
Nov 16, 2010
i have an ajax drop panel control works fine on other browsers.. but problem with Google Chrome. eference i have placed example url.
[URL]
bug to reproduce:
step1: open url in Google Chrome browser :
[URL]
step2: click on Drag Me panel and place it at the extreme bottom of the page.
step3: click and hold the mouse on "Drag Me" title.
you will experience the Drag Me panel will automatically move towards top of the page.
View 4 Replies