Hide Timeline views.
3 Answers, 1 is accepted
0
Accepted
Hello Bassam,
This can be achieved by setting the ListWidth="100%" and using the following style to hide the resize handle:
.RadGantt div.rgtSplitbar {
display: none;
}
Regards,
Peter Milchev
Progress Telerik
Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Our thoughts here at Progress are with those affected by the outbreak.
0
bassam
Top achievements
Rank 1
Veteran
answered on 21 May 2020, 07:13 PM
Hello Peter Milchev
Thanks a lot for the quick answers
I could not add this code to ASB.net
Please kindly provide us with an example as possible
Sorry for the inconvenience
0
bassam
Top achievements
Rank 1
Veteran
answered on 27 May 2020, 10:05 PM
Hello Peter Milchev
Thank you very much
Your code has been successfully executed
As shown in the following code
<telerik:RadScriptBlock runat="server">
<style type="text/css">
.RadGantt div.rgtSplitbar {
display: none;
}
</style>
</telerik:RadScriptBlock>