Re: How to customize the grid to show three s in two rows?

2016-06-21 Thread g kuczera
Sorry, the image was not embedded correctly. Here is the link: http://i.imgur.com/OlnNVBn.png (two headers before, three headers after). Now I am examining if it's possible to move the third component down (below the other two) via css styling. 2016-06-22 8:13 GMT+02:00 Chris Poulsen : > Your p

Re: How to customize the grid to show three s in two rows?

2016-06-21 Thread Chris Poulsen
Your post seems incomplete, so it is not clear to me, what you are trying to do. -- Chris On Wed, Jun 22, 2016 at 8:05 AM, g kuczera wrote: > Currently I got a request to add another visible column to the table (grid > component), but the request was for it to be placed below the rest. What do

How to customize the grid to show three s in two rows?

2016-06-21 Thread g kuczera
Currently I got a request to add another visible column to the table (grid component), but the request was for it to be placed below the rest. What do you think the best approach would be in this case? I see three of them: - add the mentioned column in the *include* parameter and after rende

Re: bootstrap affix onload not executed

2016-06-21 Thread D.R.
Hi Carlos, thanks a lot for the hint and the info, works now as expected. Kind regards David On 21.06.2016 19:29, Carlos Montero Canabal wrote: Hi, In Tapestry 5.4.X versions "$(window).on('load', function ()" is never call it for requireJs. So you can create a module as: my-affix-module.

Re: Tapestry5.4.0 'ProgressiveDisplay' ajax call fails to render page on IE 11

2016-06-21 Thread sheikh hossain
Upate: I have found the issue here. First of all I want to thank Chris for the quick response and pointing me to the right direction. It was indeed an issue with IE document mode. It seems the iframe is being forced to use the old document mode instead of the standard mode by it's parent window w

Re: bootstrap affix onload not executed

2016-06-21 Thread Carlos Montero Canabal
Hi, In Tapestry 5.4.X versions "$(window).on('load', function ()" is never call it for requireJs. So you can create a module as: my-affix-module.js (into META-INF/modules folder) with the code define([“jquery”, “bootstrap/affix"], function($) { return function(){

Re: Tapestry5.4.0 'ProgressiveDisplay' ajax call fails to render page on IE 11

2016-06-21 Thread sheikh hossain
Thanks a lot Chris ! I have just now tried with compatibility mode after you have pointed out. Didn't work though. I will look into this compatibility mode thing more to see if I can find anything more. Thanks again. On Tue, Jun 21, 2016 at 11:36 AM, Chris Poulsen wrote: > Hi, > > Sounds like I

Re: Tapestry5.4.0 'ProgressiveDisplay' ajax call fails to render page on IE 11

2016-06-21 Thread Chris Poulsen
Hi, Sounds like IE is to blame - for once... Could it be something with compatibility mode that is acting up? https://msdn.microsoft.com/en-us/library/ff955410(v=vs.85).aspx -- Chris On Tue, Jun 21, 2016 at 4:29 PM, sheikh hossain wrote: > I wonder if there's any issue with ProgressiveDispla

Tapestry5.4.0 'ProgressiveDisplay' ajax call fails to render page on IE 11

2016-06-21 Thread sheikh hossain
I wonder if there's any issue with ProgressiveDisplay component on IE11. One of our pages doesn't load entirely showing only 'Loading ...' message when being tested on QA server which has IE11 and Jboss wildfly 10.0.0. This page works when we test it locally on IE11 with Jboss wildfly 10.0.0. But

bootstrap affix onload not executed

2016-06-21 Thread D.R.
Hi, i try this example: http://www.w3schools.com/bootstrap/bootstrap_affix.asp with void afterRender() { _javaScriptSupport.require("bootstrap/affix"); } in a T5.4.1 environment, and the affix.js is loaded, require.js and jquery.js do some initialization, but the $(window).on(