or
var btn = new Telerik.Web.UI.RadToolBarButton();
btn.set_value(navItem.ID);
btn.set_text(' My Text');
btn.set_toolTip('My Tooltip');
splitButton.get_buttons().add(btn);
Regards
| /*progress area*/ |
| .RadUpload_FileExplorer .ruProgress li |
| { |
| margin:0 0 1em; |
| font-weight:bold; |
| color:#333; |
| } |
| .RadUpload_FileExplorer .ruProgress li.ruCurrentFile |
| { |
| font-weight:normal; |
| color:#004a93; |
| } |
| .RadUpload_FileExplorer .ruProgress .ruBar |
| { |
| border:1px solid #7f9db9; |
| background:#fff; |
| margin-bottom:0.4em; |
| height:16px; |
| overflow: hidden; |
| } |
| .RadUpload_FileExplorer .ruProgress .ruBar div |
| { |
| background:#ee8315; |
| height:16px; |
| } |
| .RadUpload_FileExplorer .ruProgress .ruActions |
| { |
| margin:1.2em 0 0; |
| font-weight:normal; |
| } |
| .RadUpload_FileExplorer .ruProgress span |
| { |
| font-weight:normal; |
| } |
rsCategoryGreen
etc ), but they seem to have disappeared.
Do you have any ideas as to why this has happened?
Thanks

| <asp:TextBox ID="AssoPresident" runat="server" Width="260px" Text='<%# DataBinder.Eval( Container, "DataItem.AssoPresident" ) %>'></asp:TextBox> |
default.aspx (code behind) :
| Protected Sub RadGrid1_UpdateCommand(ByVal source As Object, ByVal e As GridCommandEventArgs) Handles RadGrid1.UpdateCommand |
| Dim editedItem As GridEditableItem = TryCast(e.Item, GridEditableItem) |
| Dim MyUserControl As UserControl = CType(e.Item.FindControl(GridEditFormItem.EditFormUserControlID), UserControl) |
| 'Get the primary key value using the DataKeyValue. |
| Dim AssoID As String = editedItem.OwnerTableView.DataKeyValues(editedItem.ItemIndex)("AssoID").ToString() |
| 'Access the textbox from the edit form template and store the values in string variables. |
| 'Dim AssoNom As String = (TryCast(editedItem.FindControl("RadTextNom"), RadTextBox)).Text |
| Dim AssoPresident As String = CType(MyUserControl.FindControl("AssoPresident"), TextBox).Text |
| 'Dim PetitDescriptif As String = CType(userControl.FindControl("PetitDescriptif"), TextBox).Text |
| Try |
| 'Open the SqlConnection |
| SqlConnection.Open() |
| 'Update Query to update the Datatable |
| Dim updateQuery As String = "UPDATE association set AssoPresident='" & AssoPresident & "' where AssoID='" & AssoID & "'" |
| SqlCommand.CommandText = updateQuery |
| SqlCommand.Connection = SqlConnection |
| SqlCommand.ExecuteNonQuery() |
| 'Close the SqlConnection |
| SqlConnection.Close() |
| Catch ex As Exception |
| RadGrid1.Controls.Add(New LiteralControl("Unable to update Customers. Reason: " + ex.Message)) |
| e.Canceled = True |
| End Try |
| End Sub |
Grid1.MasterTableView.NoMasterRecordsText =
"";
But i can see the row line displayed in this case. How can i avoid the row lines being displayed in the grid when that conditions occurs.
Regards
Sujith