I have a master page with a tool tip manager:
<telerik:RadToolTipManager ID="ttm" runat="server" Enabled="true" Skin="MetroTouch" AutoTooltipify="true" EnableRoundedCorners="true" RelativeTo="Element" Position="TopCenter"></telerik:RadToolTipManager>
All but only a few controls have the Telerik tooltips applied. If I copy the RadToolTipManager and paste it into the content page everything is tool tipped as expected. What could be the reason behind this behavior?
Rober
RadGrid1.ExportSettings.Csv.ColumnDelimiter = GridCsvDelimiter.Semicolon;
RadGrid1.ExportSettings.Csv.FileExtension =
".csv"
;
RadGrid1.ExportSettings.Csv.RowDelimiter = GridCsvDelimiter.NewLine;
RadGrid1.ExportSettings.FileName =
"export"
;
RadGrid1.ExportSettings.IgnorePaging =
true
;
RadGrid1.ExportSettings.OpenInNewWindow =
true
;
RadGrid1.ExportSettings.ExportOnlyData =
true
;
void
RadGrid1_ItemCommand(
object
source, GridCommandEventArgs e)
{
if
(e.CommandName == RadGrid.ExportToCsvCommandName)
{
foreach
(GridDataItem item
in
RadGrid1.MasterTableView.Items)
{
var typeCompteurs = from tc
in
DbContext.TypeCompteurs
orderby tc.Ordre
select tc;
foreach
(var t
in
typeCompteurs)
{
Literal lt = item[t.LibelleTypeCompteur].FindControl(
"ctrlAcquis_"
+ t.LibelleTypeCompteur)
as
Literal;
if
(lt !=
null
)
item[t.LibelleTypeCompteur].Text = lt.Text;
}
}
RadGrid1.MasterTableView.ExportToCSV();
}
}
<
telerik:RadAjaxLoadingPanel
ID
=
"loading_tabs"
runat
=
"server"
IsSticky
=
"true"
MinDisplayTime
=
"2000"
InitialDelayTime
=
"250"
>
Loading ...
</
telerik:RadAjaxLoadingPanel
>
Hi,
I want to change the width of pivot grid column programmatically. Please check the ached file for more details.
Thanks,
Sagar Jaunjalkar
Dear Gurus,
Your urgent support is required my IIS application is caching on production server.
Please reply urgently.
Please do let me know which logs you need to analysis.
I got report from Fiddler but i am unable to read it as i am totally new to Fiddler.
Thanks
Malik Adeel Imtiaz