Javascript - ExtJS Combobox Sometimes Hides Behind Window Greyed Out?

Sep 27, 2010

So the code below is called when a user selects Save on an ExtJS popup modal window. This window ONLY contains a combobox. Now, sometimes when a user saves this, and then re-opens it later on, the combobox will appear BEHIND the window all grayed out, unable to get to. Other times, it will be fine and work, and no difference in events happening either time, just complete utter inconsistency.

[Code]...

View 1 Replies


ADVERTISEMENT

JavaScript - Cannot Access ExtJS Radio Button On Form

Sep 13, 2010

I have an .aspx page. In this grid I'm adding a bunch of controls. The first control however is an ExtObject, not one of our preset VB.NET controls. When I go to access the value on the backend for this field with this code:
form.AndOr.getValue()
It doesn't work. Basically, the radio button value isn't saving when I save the rest of the stuff. So I tried to add code to do it. It was just defaulted to 'And' each time. Below is a snippet of code from the actual asp.net grid.

With .Item(2)
.Ref = "../Payee2"
.LabelWidth = 90
With .AddFieldSet("Payee 2")
.AddControl(New Forms.Control("", "../PayeeId")).Hidden = True
.AddControl(New Forms.Control("", "../AddressId")).Hidden = True
[Code] .....

And I get this error:
form.AndOr is not defined
Does the Ext ref: mean something different than my controls and how I access them?

View 1 Replies

Using MoveWindow() Just Hides Window Comlpetely?

Jun 12, 2011

Im trying to position a window with MoveWindow() API but it just keeps hiding the window and it has to be maximised to be able to see it.

[Code]...

View 1 Replies

Using MoveWindow() Just Hides Window Completely?

Aug 25, 2010

Im trying to position a window with MoveWindow() API but it just keeps hiding the window and it has to be maximised to be able to see it.

The code im using is

Public Declare Function MoveWindow Lib "user32" _
(ByVal hwnd As Long, _
ByVal x As Long, _

[Code]....

View 4 Replies

Second Call To OpenFile.ShowDialog() Hides The Dialog Box Under The Current Window?

Oct 7, 2011

I have a program that in its essence is this:

Public Class Form1
Sub CopyUtility_Load(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MyBase.Load

[code]......

View 4 Replies

Javascript - Specify The Opacity Of The Browser Window?

Apr 26, 2011

Is there any way to change or specify the browser window opacity?

View 1 Replies

JavaScript - Window.Open Will Not Work Twice

Jul 21, 2011

I have an aspx page with a button. When the user clicks that button, the following javascript opens a new browser window (in this case, 'Reasons.aspx'). Works great. Here's the function for that part:

function ShowPanel(url) {
var width = 750;
var height = 600;
var left = (screen.width - width) / 2;
var top = (screen.height - height) / 2;
[Code] .....

When this window pops up, there are some controls. One of which is a button, which triggers almost identical code to popup a third window (in this case, ReasonCodes.aspx). Only it won't work. Here's the code for that:
function fGetReasons(url) {
var width = 750;
var height = 600;
var left = (screen.width - width) / 2;
var top = (screen.height - height) / 2;
[Code] ....

I've set breakpoints on the javascript. It does execute. Here's what's weird -- The above javascript executes, only I don't get a new window with ReasonCodes.aspx. However, I set a breakpoint in the page_load of ReasonCodes.aspx and all of it executes. So the javascript executes, the code-behind page_load of the third page executes, but I don't get a third page. Instead, the second window (Reasons.aspx) refreshes. It's like my third window is somehow 'hidden'.

View 2 Replies

Calling A Javascript Function From A Modal Window?

Aug 21, 2011

I want to calling a javascript function from a asp.net modal window using vb. The javascript function is to close the same modal window. The function I want call is: function CloseModalWindow(winName)

I tried Page.ClientScript.RegisterStartupScript

but that does not work. How can I do that from vb.net code behind?

View 3 Replies

Javascript - Opening New Window On Radiobutton Selected With .net?

Jul 19, 2011

I have 2 radiobuttons as shown below:

<asp:RadioButton runat="server" GroupName="ebrochType" Text="Select Type 1" TextAlign="Right" ID="rbtSelect1" OnCheckedChanged="sel1" AutoPostBack="true" />
<asp:RadioButton runat="server" GroupName="ebrochType" Text="Select Type 2" TextAlign="Right" ID="rbtSelect2" OnCheckedChanged="sel2" AutoPostBack="true" />

When one of these is selected, I need to open a page in a new window with no menubar etc...

Is this possible in the code behind?

I tried this but it did not work (it just refreshed the page/updatepanel):

Sub sel1(sender As Object, e As EventArgs)

Page.ClientScript.RegisterStartupScript(Me.GetType(), "select1", "window.open('http://www.google.co.uk','','')", True)

View 2 Replies

Javascript Window.open On Page Load?

Dec 20, 2011

I have used JavaScript on body onload event I used this code:

function timeMsg()
{
var t=setTimeout("mywindow()",1000);
}
function mywindow()

[Code]...

when the page load a pdf file open and also popup window,problem is that when i reresh the page which is callong pdf the popup window dnt open.I want to open every time when page is loaded each time

View 1 Replies

Find The Browser Window Height And Width In .Net Without Having Using Javascript?

Jun 9, 2010

I am needing to get the browser height and width of the browser window with vb. I can get these values by setting an ASP.Net hidden input control using javascript, after the page has loaded and a post back is done. I need to be able to get these values when the page initially loads so I can create an image based on those values.

View 1 Replies

JavaScript - Opening New Window To Display Another ASPX Page

Dec 6, 2011

In my code behind, I need to open a little window that displays another aspx page. I have found many ways to do this in JavaScript, but haven't been able to find a way to do it using VB.Net. Looks like you can call window.open() in JavaScript. Is there a VB.Net version of this call, or is this something that has to be done client side?

View 2 Replies

Javascript Command In ASP - Window.close Doesn't Always Work

Aug 22, 2011

I have a question regarding a javascript command. What I am doing is on a asp.net page, a user clicks on a print button which I have another page open up and at the bottom of that page, I put in a simple script command, but I have noticed that my window.close doesn't always work. [Code]

View 2 Replies

Retrieve HTML Of External Javascript Popup Window?

Aug 13, 2011

I was offered this interesting scenario by a visitor of my site and have been trying a few approaches, but not seeming to get it quite right. I have a Form with a WebBrowser control (or an AxWebBrowser if that works too) and on the page loaded in the browser, is a link that uses javascript to open a new popup window.This popup window I am unable to take "ownership" of and it launches in a new instance of the user's default browser (IE for this scenario). I need to then interact with that javascript popup window which now is not part of my application. If I needed to set a value of an input box on that form, how would I accomplish that if I can't "interact" with the form?

View 1 Replies

Set Javascript Combobox In WebBrowser Control

Aug 24, 2010

i was able to set the name on the form on the page using.[code]ive found lots of ways to use the ID to select but nothing that will work with this javascript(i think it is)as there are no IDs, ive tried everything i could find.just to be clear, the is a webpage im loading into a vb.net 2010 app via the webbrowser control. im trying to change the selected index of the combobox in the webbrowser control to match what i have selected in a combobox control in the same application.

View 3 Replies

Javascript Error: 'window.top.document.getElementById(...)' Is Null Or Not An Object?

Sep 8, 2011

I am getting a javascript error when I attempt to click on my calendar control.

The html code is:
<td align="left" style="width:50%;"><asp:Label runat="server" CssClass="TextFontBold" ID="lblStartDate" Text="Start Date:"></asp:Label>

[code].....

View 2 Replies

Javascript - How Window.moveto Function Working On Multiple Tab Open In Browser

Sep 24, 2010

I have to maximiize my screen for mutiple tabs. window.moveto is not working.I am using this code:

if(document.all)
{
top.window.resizeTo(screen.availWidth,screen.availHeight);
}

[code]....

View 1 Replies

Javascript - Open A New Window With Specific Record Details From A Select Row ID In A Datagrid

Dec 2, 2010

I have a gridview displaying all employees. Upon selecting an employee, I'd like to open a new page or window that would display all of the information for that employee with the option to edit/delete/update. Once this transaction is complete, return to previous page with gridview of all employees. ((language I'm usings is VB))

[code]...

View 1 Replies

Maskedtextbox Disabled But Not Greyed Out

Jan 2, 2011

Is it possible to disable a maskedtextbox and not have it greyed out? I have several on my form, some of them I allow input and some I don't. I'd like to have the enabled boxes one color and the disabled another color.

View 2 Replies

VB 6.0 Installer - Exe File Is Greyed Out

Apr 5, 2010

when i install the vb 6.0. the exe file is greyed out. i can't make my project to exe file.

View 8 Replies

Why Are All The 3.5 Namespaces Greyed Out In VS2008

Nov 17, 2009

I've only just noticed that all the 3.5 namespaces are greyed out in VS2008. Any idea why that would be? The 3.5 framework is installed OK.

View 3 Replies

Javascript - Open New Window Passing The Text And Value Of A Dropdownlist On OnClientClick Of Button In Aspx Page

May 25, 2011

I am making my site compatible to all browsers.For that on one page i am selecting the name from dropdownlist and on click of VIEW(button),i want to open a new window .i also want to send the value and text of ddl on new window. all of this i want to do on onClientClick or onClick of button...

for getting the value i hv tried this code:-

input name="button1" type="button" id="btnview" style="cursor:hand" class="Buttons" title="View" value="View" onclick="alert(document.all('<%=ddlScheme.ClientID%>').value);"

[Code]....

View 1 Replies

Application Properties Icon Greyed Out

Jul 1, 2011

I'm trying to set the Icon in VS2010. I go to Project>>Properties. Then I click on Application, but ICON is "greyed out" with the select as (Default Icon). How can I ungrey out ICON so that I can set the icon for the dll. Icon 32x32 .ico file is built and has been added as a resource.

Anybody know why Icon is greyed out in Application Properties.

View 4 Replies

Controls In VB 2008 Toolbox Greyed Out

Aug 25, 2009

I have been trying to add an SQLDataAdapter control onto a webform in Visual Basic 2008 professional and Express editions. This control and others remain greyed out even when selected; they can only be seen when 'Show All' is selected in the toolbox. Is it that these controls are not available in the type of form?

I've checked various forums but have not seen a clear answer. I've tried some of the solutions proposed but none has worked. I've also reinstalled the application; then uninstalled, rebooted, reinstalled, but to no avail.

View 8 Replies

VS 2010 : Custom Control DLL Reference Greyed Out In Toolbox?

Apr 10, 2012

I'm trying to add a custom panel to my toolbox using a dll file, but when I add it as a reference it only appears as greyed out - and this is only after I click "Show All" in the toolbox.Everything builds fine in the Class Library project I used to create the custom control. Here is the simple

Imports System.Windows.Forms
Public Class pnDoubleBuffered
Inherits Windows.Forms.Panel
Public Sub New()

[code]....

I build the project, open my main project where I want to use the control. Then I click "Choose All" from the toolbox and add the reference using ".NET Frameworks Components". I find my dll file and click OK. Then nothing is added to the toolbox. I manage to see the control greyed out when I click the "Show All" option.

View 2 Replies

Asp.net - Add Bottom Side-to-side Scroll Bar To ExtJS Grid?

Oct 14, 2010

Here are my two grids -- they are ExtJs grids however we wrap the declarations in vb.net code:

Dim VehicleOptionsGrid As New Framework.WebControls.Grids.Grid
With VehicleOptionsGrid
.ID = "VehicleOptionsGrid"
.Title = "Vehicle Options"

[code]....

Using javascript, is there anyway I can add a bottom scroll bar to these grids? Doesn't seem like we have a wrapped command to do it...

View 1 Replies

Javascript - Calling "window.open" From Within An Updatepanel?

Nov 23, 2011

I need to open a popup window from a LinkButton which is inside a GridView within an Update panel

I call this code in grid view's RowCommand

Dim script As String = "window.open('PopupPage.aspx, 'CommentsView', 'top=150,left=100,menubar=no,width=780,height=400,toolbar=no,resizable=no,scrollbars=yes');"
ScriptManager.RegisterClientScriptBlock(Me.Page, Me.GetType, Guid.NewGuid().ToString(), script, True)

But it does not open the popup window nor it gives an error, How can I fix this?

View 4 Replies

Javascript - Getting " Expected ';' " In The Visual Studio Immediate Window

Aug 8, 2011

I type something like ?311610.ToString(), and it gives me the error saying Expected ';'

I forgot to mention I was debugging javascript.

View 1 Replies

When Maximised It Hides The Taskbar?

Feb 27, 2010

When Maximised it hides the taskbar?

View 5 Replies

C# - ITextSharp Hides Text When Write?

Jul 19, 2011

I am inserting text in existing PDF file using iTextSharp Library, some times if any image in the position where i writing text in PDF page, it keep hides the written text, how to write text on the existing image.

Dim iNumOfPages As Integer = 0, iFile As Integer = 0, iRotation As Integer
Dim objPdfReader As PdfReader
Dim objDoc As Document = Nothing

[Code].....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved