Protected
Sub GridViewDevis_RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs) _
Handles GridViewDevis.RowDataBound
If (e.Row.RowType = DataControlRowType.DataRow) Then
Dim item As DataRowView
item = e.Row.DataItem
If item.Row.Item(10) = False Then
e.Row.CssClass =
"ligneRouge"
End If
End If
End Sub
Can you help me ?
Thanks
Jean-Yves
<telerik:RadToolBarSplitButton runat="server" Text="XYZ"
ImageUrl="~/Portals/icons/help1/Stats2.png" ID="Selector1" EnableViewState="true">
I have set the above EnableDefaultButton to true
So each time I select sub-button it will become the defaut button
In the code behide i want to save current default text value into cookie what is the command?
the cloest i get is,
"Selector1.defaultbuttonindex"
but it only gave me the integer of current default button, i need to get text value.
protected
void Button5_Click(object sender, EventArgs e)
{
rgvReport.MasterTableView.ExportToPdf();
//Now I have done the coding for sending the email attachment etc
//It is been taken when the pdf is generating.
//Atlast
-----
Here i want to cancel the exportToPdf
-----
}
Is there any way for it
-Anto