Our pure JavaScript Scheduler component


Post by zvondic »

Hi
I downloaded new build BSCH 2.3 and used it instead BSCH 2.2 in my EXTJS modern app.

There some non standard behaviour against BSCH 2.2.
1. EXTJ collapsed panel header isn't shown correctly.
2. EXTJS Tree panel isn't expanded correctly too.

When i comment script tag with scheduler.umd.js in idenx.html all works fine too.
I don't understand is There any dependency beetwen EXTJ and BSCH ?
Thanks Josef.

App with BSCH 2.2 OK
brsch_2.2_app.png
brsch_2.2_app.png (188.77 KiB) Viewed 2157 times
changing build_2.2 to build_2.3
brsch_2.3_index.html.png
brsch_2.3_index.html.png (46.5 KiB) Viewed 2157 times
App with BSCH 2.3 nod good
brsch_2.3_app.png
brsch_2.3_app.png (226.21 KiB) Viewed 2157 times

Post by pmiklashevich »

I confirm that collapsible panel has that issue. I've created a ticket to investigate, but I believe it's something on ext side. We will contact you as soon as we have a solution. Thanks for the report!
https://app.assembla.com/spaces/bryntum/tickets/9454-not-possible-to-use-collapsible-panels-in-extjs-modern-demo/details

Pavlo Miklashevych
Sr. Frontend Developer


Post by pmiklashevich »

As a solution you can try to disable animation and remove our 'ext-list' class:
            // cls       : 'ext-list',
            collapsible: {
                direction: 'left',
                animation : false
            },

Pavlo Miklashevych
Sr. Frontend Developer


Post by zvondic »

Hi Pavel,
thanks for your help. It works for panel.
But do you know any similar trick to resolve problem with expanding Ext.list.Tree?

Thanks Josef.

Post by pmiklashevich »

I didn't see any issues with Ext.list.Tree. Could you please adjust our demo to show the case?

Pavlo Miklashevych
Sr. Frontend Developer


Post by zvondic »

Hi Pavel,
I am updating extjsmodern demo.
You have to replace app.js, Main.js with files in Pavel.zip and add Menu.js .

Steps to reproduce:

1. Expand item "Číselníky"
2. Expand item "Zdroje" (no sub-menu shown) Step0.png
Step0.PNG
Step0.PNG (35.98 KiB) Viewed 2116 times
3. Collapse item "Číselníky"
4. Expand item "Číselníky" ( sub menu is now visible) Step5.png
Step5.PNG
Step5.PNG (65.68 KiB) Viewed 2116 times

When I use BSCH 2.2 all works fine submenu is visible when after Step2.

Thanks Josef.
Attachments
pavel.zip
(3.6 KiB) Downloaded 129 times

Post by zvondic »

Hi Pavel,
sorry but next issue in EXTJS + BSCH 2.3.
When i use Ext.Msg.alert in app app doesn't unmask when i click to OK button.
When i use BRCH 2.2 all works fine.

I add button to BRCH header in Main.js
 {
                        xtype: 'button',
                        ui: 'action',
                        text: 'MessageBox',
                        handler: function () {
                            Ext.Msg.alert('Message', 'Click to unmask');
                        }
                    },
Thanks Josef.

Click to MessageBox button
step_1_1.PNG
step_1_1.PNG (95.04 KiB) Viewed 2109 times
After click to OK button
step_1_2.PNG
step_1_2.PNG (85.67 KiB) Viewed 2109 times

Post by zvondic »

Is there any new in this issue?
Thanks Josef.

Post by mats »

Please upload a runnable test case with the issues you're facing

Post by zvondic »

runnable test
Attachments
extjsmodern.zip
(483.93 KiB) Downloaded 142 times

Post Reply