<
Telerik:GridButtonColumn
CommandName
=
"Delete"
ButtonType
=
"LinkButton"
Text
=
"Delete"
UniqueName
=
"deleteColumn"
/>
<
configuration
>
<
system.webServer
>
<
modules
runAllManagedModulesForAllRequests
=
"false"
>
<
remove
name
=
"RadCompression"
/>
</
modules
>
<
httpErrors
errorMode
=
"Detailed"
/>
<
rewrite
>
<
rules
>
<
rule
name
=
"Main Rule"
stopProcessing
=
"true"
>
<
match
url
=
".*"
/>
<
conditions
logicalGrouping
=
"MatchAll"
>
<
add
input
=
"{REQUEST_FILENAME}"
matchType
=
"IsFile"
negate
=
"true"
/>
<
add
input
=
"{REQUEST_FILENAME}"
matchType
=
"IsDirectory"
negate
=
"true"
/>
</
conditions
>
<
action
type
=
"Rewrite"
url
=
"index.php"
/>
</
rule
>
</
rules
>
</
rewrite
>
</
system.webServer
>
</
configuration
>
<
appSettings
>
<
add
key
=
"Telerik.Skin"
value
=
"Black"
/>
<
add
key
=
"Telerik.ScriptManager.TelerikCdn"
value
=
"Disabled"
/>
<!-- this was added -->
<
add
key
=
"Telerik.StyleSheetManager.TelerikCdn"
value
=
"Disabled"
/>
<!-- this was also added -->
</
appSettings
>
Hi
I need to achieve the following;
Have variable length formatted html text and a tick box in a container control such that the container control has a scroll bar to allow user to scroll down to the end of text and make the tick box visible for the user to tick.
What controls/technique can I use to achieve this? Any pointers would be appreciated.
Many Thanks
Regards
Hi guys,
before I export grid to pdf I need to write couple of titles lines include header from another grid.My pdf format should look like this:
Title: NYC DEPT OF EDUCATION
BUREAU OF COMPENSATION
ROSTER - 9/08 thru 06/09
Header coming from another grid:
TOTAL DAYS - 80 TOTAL AMOUNT - 1900
And then detail data which I exporting to PDF.
Please help me with that issue.So far I only have the following code:
PriReportGrid.ExportSettings.Pdf.PageTitle = "NEW YORK CITY DEPT.OF EDUCATION ";
PriReportGrid.MasterTableView.ExportToPdf();
Thanks so much