|
|||||||
![]() |
|
|
Thread Tools | Search this Thread |
|
#1
|
|||
|
|||
|
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; 1st Jul 2009 at 20:26.. |
|
#2
|
|||
|
|||
|
Use:
Code:
isGroup:true,
groupTitle:"title for group",
|
|
#3
|
|||
|
|||
|
very nice! what about styling?
|
|
#4
|
|||
|
|||
|
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. . |
|
#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. |
|
#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.. |
|
#7
|
|||
|
|||
|
check your code against what you posted earlier - you've changed a propertyname
|
|
#8
|
|||
|
|||
|
is it about "isGrouped" ? . ..
I tried with "isGroup" also.. still.. no result.. can you please post example code for "FieldSet" .. |
|
#9
|
|||
|
|||
|
your code works if you use isGroup:true and remove the trailing comma
|
|
#10
|
|||
|
|||
|
and what about styling? I found groupBorderCSS, but for the label?
|