I’m trying to create a custom theme for all Telerik controls using ASP.Net themes.
I’ve set web.config not to use embedded base style sheet and embedded skins:
<appSettings>
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />
<add key="Telerik.EnableEmbeddedSkins" value="false" />
<add key="Telerik.Skin" value="Default" />
</appSettings>
<pages theme="ThemeName">
I’ve followed the instructions on
http://www.telerik.com/community/forums/aspnet-ajax/treeview/radtreeview-q3-2008-skins-available-for-download.aspx
In my theme folder I created a directory to hold Telerik styles – i’ve only added the styles for TreeView
ThemeName
Telerik
Default
TreeView
TreeView.Default.css
TreeView.css
This works fine – and I can customise the styles.
But unfortunately once i add the rest of the files it all goes wrong - i have no other styling - so its not clashing
ThemeName
Telerik
Default
TreeView
TreeView.Default.css
Editor
Editor.Default.css
..Etc ...
TreeView.css
Editor.css
...Etc
Not sure what to try next?

Hi,
I have two related questions.
1) If I define a custom edit form how can I achieve that both updating and inserting would work ?
If I use the following link button than also insert forms will execute an update command:
<asp:LinkButton runat="server" Text="Update" CommandName="Update" />
2) Which command name is used for inserting data ? ('Insert' did not work for me.)
Thanks.
Can anyone help me. Show me good working samples in VB and ASPNET AJax Grid. Show me samples that set the state via the events listed above.
Been working on this for 5 hours. Getting no where. Almost ready to give up and try to pass the "state" variables via Querystring, which I know is NOT the way to do this.
| Protected Sub RadGrid1_NeedDataSource(ByVal source As Object, ByVal e As Telerik.WebControls.GridNeedDataSourceEventArgs) Handles RadGrid1.NeedDataSource |
| Dim startRowIndex As Integer = IIf((ShouldApplySortFilterOrGroup()), 0, RadGrid1.CurrentPageIndex * RadGrid1.PageSize) |
| Dim maximumRows As Integer = IIf((ShouldApplySortFilterOrGroup()), AppBusinessHelper.getTotalRecords(Me.radDateFrom.SelectedDate, Me.radDateTo.SelectedDate) ,RadGrid1.PageSize) |
| RadGrid1.AllowCustomPaging = Not ShouldApplySortFilterOrGroup() |
| RadGrid1.DataSource = AppBusinessHelper.getCurrentPageRecords(Me.radDateFrom.SelectedDate, Me.radDateTo.SelectedDate,startRowIndex, maximumRows) |
| End Sub |
| Public Function ShouldApplySortFilterOrGroup() As Boolean |
| Return RadGrid1.MasterTableView.FilterExpression <> "" OrElse RadGrid1.MasterTableView.GroupByExpressions.Count > 0 OrElse RadGrid1.MasterTableView.SortExpressions.Count > 0 |
| End Function |