or

Our requirement is to have a grid with columns with predefined sized, have a static header, column resize enabled, row resize disabled. I tried setting the properties to achieve this requirement, to some extent i was successful. One column has long text with spaces when the user resizes the column the content is taken to next line even if i set ClipCellContentOnResize to be true. This actually increases the row size which we do not want. What we want is to have a fixed row size and the columns should start clipping as soon as the resizer crosses the text. The text should not be taken to the next row.
Following is my grid configuration :var id = sender.get_id();var windowDiv = $(".RadWindow[id$='" + id + "']");windowDiv.css('z-index', 500);myDBindex = getWordIndex(AppID, myserv.Name, defaultLang) mycontrol = CType(dataitem("Name").FindControl("btn_DictionaryName"), Button) mycontrol.OnClientClick = String.Format("OpenDictionary('{0}', '{1}','{2}','{3}','{4}','{5}');", myDBindex, defaultLang, tblName, "IDSPAService", myIDSpaService, "Name")Me.RadToolTipManager1.TargetControls.Add(mycontrol.ClientID, myDBindex, True)Protected Sub OnAjaxUpdate(ByVal sender As Object, ByVal args As ToolTipUpdateEventArgs) Me.UpdateToolTip(args.Value, args.UpdatePanel) End Sub Private Sub UpdateToolTip(ByVal elementID As String, ByVal panel As UpdatePanel) Dim ctrl As Control = Page.LoadControl("/FrontEndASCX/Dictionary/Dictionary.ascx") panel.ContentTemplateContainer.Controls.Add(ctrl) Dim myDict As ASP.GMDictionary = DirectCast(ctrl, ASP.GMDictionary) myDict.AppID = AppID myDict.IndexValue = elementID myDict.showSaveButton = False End Sub