Bjverde
Bjverde
Está relacionado com #113, #135, #136
Provavelmente está relacionado com #12
TForm->setAutoSize TForm->getAutoSize TForm->setOverflowY( 'auto' ) TForm->getOverFlowY() getMaxWidth TForm->show() : linha 504 $this->body->setCss( "overflow-y", $this->getOverFlowY() ); FormDin4.js > fwFormDinAutoSize
É um problema bem conhecido essa questão do "chrome overflow-y" * https://stackoverflow.com/questions/25807672/overflow-yscroll-is-not-working-for-chrome * https://stackoverflow.com/questions/35201566/overflow-y-scroll-not-showing-scrollbar-in-chrome * https://stackoverflow.com/questions/25437014/bug-with-overflow-yscroll-and-positionabsolute-in-chrome * https://github.com/twbs/bootstrap/issues/22339 * https://www.sitepoint.com/community/t/vert-scroll-bar-for-overflow-auto-not-working-in-chrome/7615/2 * https://stackoverflow.com/questions/5209545/css-overflow-yvisible-overflow-xscroll Para entender melhor * https://developer.mozilla.org/pt-BR/docs/Web/CSS/overflow * https://css-tricks.com/almanac/properties/o/overflow/
Uma possível solução definitiva é utilizar o mb_detect_order http://php.net/manual/pt_BR/function.mb-detect-order.php mb_detect_encoding http://php.net/manual/pt_BR/function.mb-detect-encoding.php
TStringEncoding
- [ ] Mover métodos da TStringEncoding para StringHelper - [ ] Deletar TStringEncoding
@alexryall Thanks for the allow-downgrades tip!! Built Docker image for Debian 11 with PHP 8.1 and 8.2 with pdo_sqlsrv-5.11.0. Below my two cent contribution, the Dockerfile links. Please note, I...
* https://imasters.com.br/front-end/tamanho-da-tela-e-tamanho-da-janela-com-javascript * https://horadecodar.com.br/como-pegar-a-altura-e-largura-da-pagina-com-javascript/ * https://horadecodar.com.br/como-detectar-resolucao-da-tela-com-javascript/ * https://pt.stackoverflow.com/questions/7551/capturar-tamanho-da-tela-no-momento-da-requisi%C3%A7%C3%A3o
```php function sizeOfThings(){ var windowWidth = window.innerWidth; var windowHeight = window.innerHeight; var screenWidth = screen.width; var screenHeight = screen.height; document.querySelector('.window-size').innerHTML = windowWidth + 'x' + windowHeight; document.querySelector('.screen-size').innerHTML = screenWidth +...