<
telerik:RadHtmlField ID="RadHtmlField1" FieldName="Content" runat="server" ToolsFile="/_wpresources/RadEditorSharePoint/5.8.6.0__1f131a624888eeed/Resources/QAAInternetToolsFile.xml" ConfigFile="/_wpresources/RadEditorSharePoint/5.8.6.0__1f131a624888eeed/Resources/QAAInternetConfigFile.xml"></telerik:RadHtmlField>
I wish to use Image Manager to insert images from both the SiteCollection and the current website. Looking at the documentation my ConfigFile.xml should look like this:
<configuration>
<property name="ToolbarMode">Default</property>
<property name="ToolsWidth">680px</property>
<property name="ImagesPaths">
<item>PublishingImages</item>
<item>/SiteCollectionImages</item>
</property>
</configuration>
When I click ImageManager it shows both folder locations defaulting to the current website image folder which is good. When I click on the second folder it displays the site collections images which is also fine. But, if I then click on the first folder again it will not change - it stays fixed on the site collection folder.
This looks like a bug. Is there a way around it?
When there is a single column relating two tables defining GridRelationFields is straight forward:
| GridRelationFields rf = new GridRelationFields(); |
| rf.MasterKeyField = "col1"; |
| rf.DetailKeyField = "col1"; |
| tvProtocols.ParentTableRelation.Add(rf); |
However, how do you define a GridRelationFields when the keys are compound, such as:
| GridRelationFields rf = new GridRelationFields(); |
| rf.MasterKeyField = "col1,col2,col3"; |
| rf.DetailKeyField = "col1,col2,col3"; |
| tvProtocols.ParentTableRelation.Add(rf); |
This is not uncommon.
Must I create an autoincremented column in the parent table and then rely only upon that in the child table?
I have asp.net web page that is using RadTabStrip & RadMultiPage. The multi page controls/tabs contain web parts.
When I use Ajax and click/switch to the Design Mode (WebPartManager.DesignDisplayMode) I don't have the web parts drag and drop feature, drop down verbs menu and other client functionality. What is the work arount to make it work with Telerik?
Cannot convert value of parameter 'Time' from 'System.DateTime' to 'Nullable<System.TimeSpan>' <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server"> <StyleSheets> <telerik:StyleSheetReference Path="~/Styles/Common.css" /> </StyleSheets> </telerik:RadStyleSheetManager>Hello.
I have a radgrid with gridtemplate column in it. In gridtemplate column i have placed filtertemplate with radcombox. I'm populating the grid with OnNeedDataSource method. Te code sample looks like this
<telerik:GridTemplateColumn DataField="Obraz" Visible="false" Resizable="false" UniqueName="TemplateColumn" AllowFiltering="true"> <FilterTemplate> <telerik:RadComboBox ID="ComboFilterBox" runat="server" AppendDataBoundItems="true" OnSelectedIndexChanged="FilterCombo_SelectedIndexChanged" DataTextField="Text" DataValueField="Obraz" AutoPostBack="true"> <items> <telerik:RadComboBoxItem Text="Bez filtra" value="1"/> <telerik:RadComboBoxItem Text="value1" value="~Gif/pic1.png"/> <telerik:RadComboBoxItem Text="value2" value="~/Gif/pic2.png"/> <telerik:RadComboBoxItem Text="value3" value="~/Gif/pic3.png"/> <telerik:RadComboBoxItem Text="value4" value=""/> </items> </telerik:RadComboBox> </FilterTemplate> <ItemTemplate> <asp:Image ID="Image1" runat="server" ImageUrl="<%# bind('Obraz') %>" ForeColor="White" /> </ItemTemplate> <HeaderStyle Width="199px" /> <ItemStyle Width="199px" /> </telerik:GridTemplateColumn>protected void FilterCombo_SelectedIndexChanged(object o, RadComboBoxSelectedIndexChangedEventArgs e) { Session["selectedComboitem"] = e.Text; string filterExpression; if (e.Value != "") { filterExpression = "([Obraz] = '" + e.Value + "')"; } else { filterExpression = ""; } RadGrid1.MasterTableView.FilterExpression = filterExpression; RadGrid1.MasterTableView.Rebind(); }var o = new Object();
o.FirstName =document.getElementById("first_name").innerHTML;
window.returnValue = o.FirstName;
window.close();retval=window.showModalDialog ('searchMNI.aspx?lastname=' + temp);
alert("it is: " + retval.FirstName);