Announcement

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

    Does Smart Client provide <fieldset> & <legend> tag? how we can use it..

    We want to use <fieldset> & <legend> tags. We tried to create it using isomatric, however getting error . it seems smart client didn't provide it. Don't know why this tag is not available.. We tried using "isc.HTMLFlow.create", but its not a correct way. . Please suggest any other way...
    Last edited by Ravindra_Bhadgavkar; 1 Jul 2009, 20:26.

    #2
    Use:

    Code:
                isGroup:true,
                groupTitle:"title for group",
    This works on any Canvas, including DynamicForm.

    Comment


      #3
      very nice! what about styling?

      Comment


        #4
        can you please elaborate more...

        I tried folowing code.. however didin't work.. :(

        isc.DynamicForm.create({
        height: 30,
        align: "center",
        isGroup:true,
        groupTitle:"title for group",
        })

        can you please elaborate more on example. .

        Comment


          #5
          for me it's working, which version of Smartclient are you using?

          and pay attention to the last (unnecessary) comma, especially if you're using internet explorer.

          Comment


            #6
            thanks for reply. ..

            I tried again following code..this time no syntax error.. however coudn't get display of FieldSet tag.. :(

            isc.DynamicForm.create({
            width: 800,
            ID:"pageTitle",
            align:"left",
            isGrouped: true,
            groupTitle: "Test",
            width:500, height:224,
            showEdges:true, border:"0px",

            fields:[
            { name: "Languages1"},
            { name: "Languages"}
            ]}),


            can you please correct my code .. and post again..

            Comment


              #7
              check your code against what you posted earlier - you've changed a propertyname

              Comment


                #8
                is it about "isGrouped" ? . ..
                I tried with "isGroup" also..
                still.. no result..

                can you please post example code for "FieldSet" ..

                Comment


                  #9
                  your code works if you use isGroup:true and remove the trailing comma

                  Comment


                    #10
                    and what about styling? I found groupBorderCSS, but for the label?

                    Comment


                      #11
                      groupLabel is an isc.Label autoChild of canvas, so groupLabelProperties

                      Comment


                        #12
                        you can also use property: groupLabelStyleName

                        Comment

                        Working...
                        X