How can I open a widget in a new browser tab like window.open() from Ext4.2.1 application. I need to be able to open widget in a new browser tab similar to what 'maximize' tool does but for the whole thing to open in a new tab window.My best guess so far is to open a prepared .aspx page like window.open(url) and somehow to pass the widget to the window. But the tricky
part is to pass the widget , there can be many widget to pass ,so I can't just hardcode the widget on the page.
Any idea would be helpful.
Ext4.2.1 How to open a new browser tab with widget inside from another browser tab
499 Views Asked by Polina F. At
1
There are 1 best solutions below
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in EXTJS
- How can I fit "ol.Map" to "Ext.panel.Panel"?
- Setting multiple events in one ext.net button
- How to dynamically change padding of a panel in ExtJS?
- ExtJS - row renderer - if cell has certain value, highlight entire row
- How to check mark a check column in a grid?
- Ext JS 5 Data Binding Combobox
- Compare date from combobox with current date
- ToolTip in bryntum scheduler
- Editable tree nodes - not working
- Loading delay extjs
- Angular does not recognize the dynamically loaded page in Extjs
- OverCls is not working in IE11
- How to apply style for Ext js xtype tabpanel using style property?
- Filtering Array within a store record
- ExtJs 4 : hide/show grid columns with grid that uses ArrayStore
Related Questions in WIDGET
- Updating a widget every second with an AlarmManager and IntentService
- Kivy - Create new widget and set its position and size
- CSS styles for all instances of a WordPress widget
- how to display page's attachment image in wordpress custom widget
- Fetching query string parameters passed in a javascript file
- iOS widget not working on few iPhone5S
- Qt5 custom widget - Curved slider
- Orchard widgets triggered more than once
- Android widget- make it undeletable
- "Add" Button for Data Frame Editing GUI in R
- woocommerce - wrong widget bar on single product page
- Yammer OpenGraph commenting widget loading all feed, but not specific page messages
- Create new ttk widget from tkinter
- The following classes couldn't be found -include(fix build path)
- Wrong widget order using vbox layout PyQt
Related Questions in EXT4
- PHP `require_once` includes wrong file
- How to add a group to an ACL in ubuntu
- How to use file as a negative mask for reading another file, in Perl?
- UnionFS: How to persist changes in the overlay/upperdir into the base/lowerdir filesystem?
- Subversion (svn) repository on NTFS partition in Linux?
- where are extended attributes stored?
- How to remove checkbox selection from all views in checkbox selection model in EXT grid
- linux kernel path walk. lookup_slow explaination
- Storing & accessing up to 10 million files in Linux
- Getting abnormal I/O usage Postgresql and JBD2
- Is it possible to check if a file exists without making a request to hard disk in Linux?
- Root ext4 partition using xen kernel (gentoo)
- Which way is better to distribute uploaded files in subdirs?
- Linux AIO: Poor Scaling
- How to store "extended attributes" in ext4 inode block as we have inode extra size "i_extra_isize"
Related Questions in BROWSER-TAB
- Restriction on number of opened tabs
- StoreAttribute method in SessionAttributeStore implementation not called in Spring 4.0 using @SessionAttributes
- setInterval() is not working properly for inactive tab
- In Firefox - across all tabs: How do I list all open URL's of all open browser tabs across all open browsers, using code external to the browser?
- Angular open component in new tab without bootstrapping whole app
- Where is the documentation for the chrome extension API tab method, "getSelected"?
- Is it possible to generate unique ID for each tab?
- url redirection not happening in IE in crossrider extension
- Detect and Remove Closed Browser Tabs' Data from LocalStorage in Angular 7
- How to search text inside the pages of all open browser tabs
- Best way to keep session ongoing when going to other tab
- Infinite loop and xmlhttprequests in multiple tabs
- Old tab stops sending requests to API React
- How to add My SVG Logo to the tab bar of my website
- Highlighted tabs in chrome extension API
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Ext based applications starts with main Ext.container.Viewport inside Ext.app.Application. The solution is to question the state of the application before the main Viewport is built. For example in my case I question the URL params . If in the params there is some param - in my case 'widget' I know that I need to build a single widget based on widget name from URL param (?widget='somewidgetalias'). I then create the widget by alias and a single widget viewport(regular viewport with no items) and I pass this created widget as item.
If I don't see the param in the URL , I continue to create a regular general viewport that creates the application. From the main application I open a new window with javascript like this : window.open(url, '_blank', specs);, the URL is the URL of the application and the param of widget='somewidgetalias' .