You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Francois Armand (JIRA)" <ji...@apache.org> on 2008/10/13 10:50:44 UTC

[jira] Created: (TAP5-262) "There is no data to display." is hard coded in Grid.tml

"There is no data to display." is hard coded in Grid.tml
--------------------------------------------------------

                 Key: TAP5-262
                 URL: https://issues.apache.org/jira/browse/TAP5-262
             Project: Tapestry 5
          Issue Type: Bug
    Affects Versions: 5.0.16
            Reporter: Francois Armand


It should be a localized entry of Grid.properties file

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Commented: (TAP5-262) "There is no data to display." is hard coded in Grid.tml

Posted by "Francois Armand (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638986#action_12638986 ] 

Francois Armand commented on TAP5-262:
--------------------------------------

Yes, of course, but this bug is part of the "polish before 5.0 final" issues from the ml thread : " http://markmail.org/search/?q=list%3Aorg.apache.tapestry.users+your+missing+feature#query:list%3Aorg.apache.tapestry.users your missing feature+page:1+mid:tsbsgttn574i2vlw+state:results "  :)

> "There is no data to display." is hard coded in Grid.tml
> --------------------------------------------------------
>
>                 Key: TAP5-262
>                 URL: https://issues.apache.org/jira/browse/TAP5-262
>             Project: Tapestry 5
>          Issue Type: Bug
>    Affects Versions: 5.0.16
>            Reporter: Francois Armand
>
> It should be a localized entry of Grid.properties file

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Commented: (TAP5-262) "There is no data to display." is hard coded in Grid.tml

Posted by "Ulrich Stärk (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12639008#action_12639008 ] 

Ulrich Stärk commented on TAP5-262:
-----------------------------------

This is a duplicate of TAPESTRY-2645 that has been solved as invalid.

> "There is no data to display." is hard coded in Grid.tml
> --------------------------------------------------------
>
>                 Key: TAP5-262
>                 URL: https://issues.apache.org/jira/browse/TAP5-262
>             Project: Tapestry 5
>          Issue Type: Bug
>    Affects Versions: 5.0.16
>            Reporter: Francois Armand
>
> It should be a localized entry of Grid.properties file

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Commented: (TAP5-262) "There is no data to display." is hard coded in Grid.tml

Posted by "Massimo Lusetti (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12638979#action_12638979 ] 

Massimo Lusetti commented on TAP5-262:
--------------------------------------

Just a note.
I'm inclined to agree with you but there's an easy workaround with empty grid parameter.
Often i find myself using a more complete block of html to show more structured info to the user.

> "There is no data to display." is hard coded in Grid.tml
> --------------------------------------------------------
>
>                 Key: TAP5-262
>                 URL: https://issues.apache.org/jira/browse/TAP5-262
>             Project: Tapestry 5
>          Issue Type: Bug
>    Affects Versions: 5.0.16
>            Reporter: Francois Armand
>
> It should be a localized entry of Grid.properties file

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Commented: (TAP5-262) "There is no data to display." is hard coded in Grid.tml

Posted by "Geoff Callender (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TAP5-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12639011#action_12639011 ] 

Geoff Callender commented on TAP5-262:
--------------------------------------

I think this one just needs an example in the Grid page.  eg.

    <table t:type="grid" t:source="users" t:empty="block:empty">
        <t:block t:id="empty">
            <div class="nodata">(No Users to display)</div>
        </t:block>
    </table>

or

    <table t:type="grid" t:source="users" t:empty="block:empty">
        <t:block t:id="empty">
            <div class="nodata">${message:no-users-to-display}</div>
        </t:block>
    </table>

There may be even simpler ways to write it but who knows - there are simply no adequate examples of how to use Blocks or what's considered a Block.



> "There is no data to display." is hard coded in Grid.tml
> --------------------------------------------------------
>
>                 Key: TAP5-262
>                 URL: https://issues.apache.org/jira/browse/TAP5-262
>             Project: Tapestry 5
>          Issue Type: Bug
>    Affects Versions: 5.0.16
>            Reporter: Francois Armand
>
> It should be a localized entry of Grid.properties file

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org


[jira] Closed: (TAP5-262) "There is no data to display." is hard coded in Grid.tml

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-262?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship closed TAP5-262.
-------------------------------------

    Resolution: Invalid
      Assignee: Howard M. Lewis Ship

> "There is no data to display." is hard coded in Grid.tml
> --------------------------------------------------------
>
>                 Key: TAP5-262
>                 URL: https://issues.apache.org/jira/browse/TAP5-262
>             Project: Tapestry 5
>          Issue Type: Bug
>    Affects Versions: 5.0.16
>            Reporter: Francois Armand
>            Assignee: Howard M. Lewis Ship
>
> It should be a localized entry of Grid.properties file

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org