Can we show multimonth (i.e. 3 months) picker in the datefield in ExtJs 5.1.2.748 version? If not is there any patch for that?
Type: Posts; User: Makha
Can we show multimonth (i.e. 3 months) picker in the datefield in ExtJs 5.1.2.748 version? If not is there any patch for that?
I have a window with nested panel. Panel contains several fields. Fields of the panel layouts incorrectly after window resize event.
var panel = new Ext.panel.Panel({
...
Hi! Is there way to buffer two listeners with the same function:
component.on('resize', me.handleResize, component, { buffer: 20 });
component.on('add', me.handleResize, component, { buffer: 20...
It's confusing. In vbox layout even ExtJs doesn't understand that. Because:
textArea.minHeight = undefined,
textArea.height = 55
But at the same time, real height of the component is 88. I...
Here, I create the panel with vbox layout and one TextArea item:
Ext.create('Ext.form.Panel',{
width: 400,
height: 300,
layout:
{
type: 'vbox',
...
Hi!
Fiddle with the bug: https://fiddle.sencha.com/#view/editor&fiddle/1ugm
I am using the horizontal scrollable radiogroup in the container with the vbox layout. As you can see in the fiddle,...
Way of reproducing the bug:
1. Go to the fiddle using Firefox: https://jsfiddle.net/Makha/89u7wo6h/
2. Right click on the button
Expected log on the console:
"context"
Occurs instead:...
We have two grids: Locked & Normal.
Scroll event changes scrollTop properties of both grids even when only normalGrid has a columns (onRangeFetched function). But if we reload the grid, scrollTop...
Instead of mixinId write 'docking'.
Ext.define('Ext.overrides.container.DockingContainer', {
override: 'Ext.container.DockingContainer',
getDockedItems: function(selector,...
Ext.define('Ext.override.container.DockingContainer',
{
override: 'Ext.container.DockingContainer',
getDockedItems: function (selector, beforeBody) {
...
When merging process starts? I've overridden one of the methods of Mixin, but it hasn't been overrode in target class. So I assume that merging goes before overriding. If it is true, how to override...
When do mixins be initialized? Only one time at the start of application or in every panel creating?
The sequence:
1. Ext.define('Ext.container.DockingContainer',
2....
Nope. Original function is executing, but not overrided.
I see that during the first execution of javascript code, Ext.base.addMembers function overrides it. But...
My override function doesn't work for the specific class:
Ext.override(Ext.container.DockingContainer,
{
getDockedItems: function (selector, beforeBody) {
var layout =...
Test will be executed with Selenium in Chrome WebDriver. Unfortunately, Chrome WebDriver doesn't support Client LogType. Is there any instruments to capture full completion of panel creating (+event...
I am going to test the performance of panels. How can I get the time spend to open form, it includes request-response time, render time of panel and fields, grids of that panel and so on. Any ideas?
I am going to test the performance of panels. How can I get the time spend to open form, it includes request-response time, render time of panel and fields, grids of that panel and so on. Any ideas?
https://fiddle.sencha.com/#fiddle/1kcg
I've created a grid with rowExpander. scrolling action causes the console to report a bugs like this:
Uncaught TypeError:
Cannot read property 'els' of...
Hi! Where can I find Preview Plugin for Grid for ExtJs5.1.2 like this http://docs.sencha.com/extjs/4.2.1/extjs-build/examples/grid/paging.html?
Say I have tabBar with several tabs. When I add new tab I can't get the widths of old tabs. (don't worry about rsr)
tabPanel.on("afterrender", function () {
...
var tabBar =...
Why this feature hasn't been added yet? Is it hard? Maybe it has optimizing problems?
Hi, friends. Is it possible to do tabpanel with multiple rows of tabs in Extjs?
I've solved this with another way:
beforeselect: function (combo, record) {
var rawVal = this.rawValue;
.......... some edits ..........
combo.fullValue...
Yes. But tagfield uses only one type in the store. I want to load the store after every word.
Example:
1. inputfield: empty, dropdown: Animal, Trees
2. enter Animal
3. inputfield: Animal, ...
hello!!! I have a combobox with a text. When you select the element from the dropdown it must be appended to the field of the combobox but not replaced.
I've tried this:
beforeselect:...