Hi tapestry members:

I'm using T5.3:
I'm trying the checklist component and I found that the disabled property in
the client side doesn't work: 

<t:form>
        <table>
            <tr>
                <td class="name">Checklist:</td>
                <td><input t:type="Checklist" t:model="stationery"
t:selected="checklistSelectedValues" t:encoder="stringEncoder"
t:disabled="'true'"/></td>
                <td>${checklistSelectedValues}</td>
            </tr>
        </table>
    </t:form>

@Property
    private final String[] STATIONERY = {"Pens", "Pencils", "Paper"};
    @Property
    @Persist
    @SuppressWarnings("unused")
    private List<String> checklistSelectedValues;
    @Property
    @SuppressWarnings("unused")
    private final StringValueEncoder stringEncoder = new
StringValueEncoder();
    
    public boolean isDisabled() {
        return true;
    }

Regards


--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Checklist-disabled-possible-bug-tp5713681.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to