Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    How to append check box in the dynamic form title.

    Hi Isomorphic,

    Thank you for your support.

    I am using Smart Gwt-5.x
    Browser: Google chrome 39.0.2171.95 m, IE8 and IE9

    Issue:
    Is there any property to to append check box in the dynamic form title.

    Note: Please find the attached screen shot for your reference.

    Please let us know if available. Click image for larger version

Name:	CheckBx.jpg
Views:	148
Size:	24.0 KB
ID:	247929

    #2
    There isn't a built-in function to do this. Some options:

    1. since the groupTitle is allowed to be HTML, put HTML for a checkbox in it and add event handlers via GWT APIs for working directly with HTML elements (see also the DOM-level integration overview)

    2. build your own subclass of Canvas that replicates the look you want via using CSS border and margin to render the outline, and placing a DynamicForm for the checkbox and title on top of the margin (which is roughly how the built-in isGroup feature is implemented, except with a simple Label instead of a DynamicForm).

    3. use Feature Sponsorship to have this added as a core framework feature

    Comment

    Working...
    X