I have the following code that when displayed with a left-to-right language, looks perfectly fine. But when I change the language to a right-to-left such as Arabic, the select application disappears. Is this smartclient issue? or do I need to do something with my layout?
I've attached a screenshot of both cases
I've attached a screenshot of both cases
Code:
isc.HLayout.create({ID:"hLayoutWrapSelectAppGrid", members: [isc.DynamicForm.create({ID:"SelectAppGrid",name:"SelectAppGrid",title:" ",canFocus:true,canHover:true,numCols:1,titleSuffix:" ",rightTitlePrefix:" ",requiredTitleSuffix:"*",requiredRightTitleSuffix:"*",requiredRightTitlePrefix:"<B> ",colWidths:["220"],titleOrientation:"top",autoFocus:true,fields: [{title:"Select Application ",showSaveValue:false,ID:"SelectApp_Header",name:"SelectApp_Header",defaultValue:"Select Application",showValidation:"false",_constructor:"HeaderItem"} ,{title:"<nobr>Available Applications <\/nobr>",width:"*",colSpan:"1",height:120,ID:"appName",name:"appName",$cwname:"model.appName", allowEmptyValue:true,fastCellUpdates:false,multiple:true,multipleAppearance:"grid",errorIconSrc:"\/cwf\/r\/cwfv\/error.png",_constructor:"SelectItem"}, {title:"Select ",showTitle:false,widgetID:"Button1",redrawOnStateChange:true,width:100,autoFit:true,startRow:false,height:20,buttonStyle:"button",shouldSaveValue:false,name:"Button1", buttonLabel:" Select ",textAlign:"center",_constructor:"ButtonItem"}]})],canFocus:true});
Comment