Click here to Skip to main content
15,888,527 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: copy one file from a folder to another folder with JS Pin
ZurdoDev21-Feb-13 1:51
professionalZurdoDev21-Feb-13 1:51 
GeneralRe: copy one file from a folder to another folder with JS Pin
Sandeep Mewara21-Feb-13 2:15
mveSandeep Mewara21-Feb-13 2:15 
GeneralRe: copy one file from a folder to another folder with JS Pin
dusty_dex27-Feb-13 14:14
dusty_dex27-Feb-13 14:14 
Questionjavascript Pin
NAVNEET KUMAR SINGH18-Feb-13 18:45
NAVNEET KUMAR SINGH18-Feb-13 18:45 
AnswerRe: javascript Pin
Rahul Rajat Singh18-Feb-13 23:52
professionalRahul Rajat Singh18-Feb-13 23:52 
AnswerRe: javascript Pin
ZurdoDev19-Feb-13 2:37
professionalZurdoDev19-Feb-13 2:37 
QuestionJavaScript run slow with Ipad iOS 6 Pin
kornkimhour13-Feb-13 22:59
kornkimhour13-Feb-13 22:59 
QuestionJavaScript: How to reference user control inside content page? Pin
Tesic Goran12-Feb-13 20:36
professionalTesic Goran12-Feb-13 20:36 
Hi,

I use ASP.NET.

This is structure I have:

Master page -> Content page -> User control -> Telerik grid with its context menu, hidden field.

This means: Master page contains content page, content page contains user control, user control contains Telerik grid with its context menu and hidden field.

I open popup window by clicking option in Telerik grid's context menu. After I choose some option in combo box in that popup window I press OK and close it. But I don't know how to reference opener that should be user control with Telerik grid and hidden field. I want to set hidden field to some value.

This is JavaScript code I use:

JavaScript
<script language="javascript" type="text/javascript">
    function ReturnValue() {
        var choice = document.getElementById("DropDownList1").value;
        if ((window.opener != null) && (!window.opener.closed)) {
            window.opener.document.getElementById("HiddenField1").value = choice;
        }
        window.close();
    }
</script>


But, it fails on this line because opener is master page:

window.opener.document.getElementById("HiddenField1").value = choice;

So, how can I make it work?

Thank you in advance.
SuggestionRe: JavaScript: How to reference user control inside content page? Pin
Blikkies13-Feb-13 2:14
professionalBlikkies13-Feb-13 2:14 
AnswerRe: JavaScript: How to reference user control inside content page? Pin
ZurdoDev14-Feb-13 3:33
professionalZurdoDev14-Feb-13 3:33 
AnswerRe: JavaScript: How to reference user control inside content page? Pin
twseitex15-Feb-13 0:02
twseitex15-Feb-13 0:02 
Questiongetting rid of  &Nbsp's Pin
BennyCriziko11-Feb-13 3:52
BennyCriziko11-Feb-13 3:52 
AnswerRe: getting rid of  &Nbsp's Pin
BennyCriziko11-Feb-13 8:17
BennyCriziko11-Feb-13 8:17 
QuestionCreate Appointment in yahoo calendar using API Pin
srinivasan.p.t29-Jan-13 3:08
srinivasan.p.t29-Jan-13 3:08 
AnswerRe: Create Appointment in yahoo calendar using API Pin
ZurdoDev4-Feb-13 8:52
professionalZurdoDev4-Feb-13 8:52 
QuestionJava Script is not working in Chrome Pin
Flex_Query29-Jan-13 2:17
Flex_Query29-Jan-13 2:17 
QuestionRe: Java Script is not working in Chrome Pin
ZurdoDev4-Feb-13 8:52
professionalZurdoDev4-Feb-13 8:52 
AnswerRe: Java Script is not working in Chrome Pin
Brisingr Aerowing10-Mar-13 10:19
professionalBrisingr Aerowing10-Mar-13 10:19 
QuestionPosting a message from diffrent domain Pin
AghaKhan28-Jan-13 22:01
AghaKhan28-Jan-13 22:01 
GeneralRe: Posting a message from diffrent domain Pin
Prasad Khandekar13-Mar-13 23:58
professionalPrasad Khandekar13-Mar-13 23:58 
QuestionProject Help Please Pin
jmallen25-Jan-13 4:53
jmallen25-Jan-13 4:53 
AnswerRe: Project Help Please Pin
sarinya_chalat3-Feb-13 16:17
sarinya_chalat3-Feb-13 16:17 
Questionproject question Pin
jacklyne16-Jan-13 20:04
jacklyne16-Jan-13 20:04 
AnswerRe: project question Pin
Richard MacCutchan16-Jan-13 23:45
mveRichard MacCutchan16-Jan-13 23:45 
GeneralRe: project question Pin
AnalogNerd17-Jan-13 5:21
AnalogNerd17-Jan-13 5:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.