Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/13/21 in Posts

  1. for Responsive layout: I have not tried it ... it seems a functional solution .. but it is not the one required .. the solution must be created by UniGUI on the basis of ExtJS developments https://docs.sencha.com/extjs/7.2.0/modern/Ext.Responsive.html using Ext.Responsive and responsiveConfig for object Ext.define('MyApp.view.main.Main', { extend: 'Ext.container.Container', mixins: [ 'Ext.mixin.Responsive' ], responsiveFormulas: { small: 'width < 600', medium: 'width >= 600 && width < 800', large: 'width >= 800' } }); and responsiveConfig: { small: { hidden: true }, medium: { hidden: false, region: 'north' }, large: { hidden: true, region: 'west' } } the renewal of the license is also for this purpose and not to use the "Hint" property and follow the developments of others (...even if the RADCORE project is an excellent alternative ... congratulations!). And I await the development of the other characteristics requested by all of us ...
    1 point
  2. I think, for now you can use this technique: MainForm->Script ... add these lines: Ext.onReady(function() { window.location.hash = "main"; window.location.hash = "again_main"; // again for chrome window.onhashchange = function() { window.location.hash = "main"; } })
    1 point
×
×
  • Create New...