Opening closing & Passing data from Child window to parent window in JavaScript & refreshing main

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 พ.ย. 2024

ความคิดเห็น • 15

  • @johnmun1471
    @johnmun1471 ปีที่แล้ว

    God will truly bless you. Awesome video...

    • @plus2net1
      @plus2net1  ปีที่แล้ว

      Glad to know you like it, thanks

  • @kunalirajput3905
    @kunalirajput3905 3 ปีที่แล้ว

    Hello sir... Here I'm reminding u... Pls make a video on passing data from parent window to child window and vice versa...

    • @plus2net1
      @plus2net1  3 ปีที่แล้ว

      th-cam.com/video/kcaa8BLjAI8/w-d-xo.html

  • @keertichaudhary5946
    @keertichaudhary5946 3 ปีที่แล้ว

    Hi sir , I had a question that whether we can diactivate parent window when the child is open.

    • @plus2net1
      @plus2net1  3 ปีที่แล้ว

      Yes, you can stop all functionality of parent and wants user to interact with child only then use grab_set(), to restore use grab_release().
      If you want the Parent to hide then use withdraw(), to make it visible again use deiconify()
      Full code is available here . www.plus2net.com/python/tkinter-Toplevel.php

  • @kunalirajput3905
    @kunalirajput3905 3 ปีที่แล้ว

    Sir pls make a video on.... Passing data from parent window to child window and vice versa

    • @plus2net1
      @plus2net1  3 ปีที่แล้ว

      Working on Python now, next week I will add that ,feel free to remind if I am not adding that.

    • @plus2net1
      @plus2net1  3 ปีที่แล้ว

      th-cam.com/video/kcaa8BLjAI8/w-d-xo.html

  • @thatmorgano
    @thatmorgano 3 ปีที่แล้ว

    wow very nice video i love it 3>

  • @devanshmota2741
    @devanshmota2741 21 วันที่ผ่านมา

    How to detect url change in child window from parent window ?

    • @plus2net1
      @plus2net1  21 วันที่ผ่านมา

      Not sure what you mean by url change but data of child window can be tracked from parent window. See this demo. Data entered in child will be available in parent.
      www.plus2net.com/javascript_tutorial/window-child3-demo.php
      Reading the value of child window ( in parent window )
      opener.document.f1.p_name.value = document.frm.c_name.value;