Hi,
Is there any possibility to customize CommandItemTable and add one more button in addition to AddNewRecord and Refresh button.
I would like to add one Export button in the CommandItem row or in between Add and Refresh button. So please le me know the availability of this option.
-Thanks
<
script
>
function OnClientLoad(editor) {
var oTool = editor.getToolByName("SpellCheck");
var icon = oTool.GetIcon();
icon.style.display = "none";
}
</
script
>
<telerik:RadEditor OnClientLoad="OnClientLoad" ....
.userName
{
font-size
:
18px
;
font-wight:
bold
;
color
:
#598f97
;
vertical-align
:
top
;
float
:
right
;
margin
:
30px
;
}
In radgrid i am having a custom filter using a button. Here is my code.
protected void imSearch1_Click(object sender, EventArgs e)
{
RadTextBox txtFirstName = (RadTextBox)RadPanelBar1.FindItemByValue("QuickSearch").FindControl("txtFirstName");
RadTextBox txtLastName = (RadTextBox)RadPanelBar1.FindItemByValue("QuickSearch").FindControl("txtLastName");
DataSet ds = DhsBasePage.getProxyDataService().GetProviderListByName(txtFirstName.Text, txtLastName.Text);
RadGrid1.DataSource = ds;
RadGrid1.Rebind();
}
This works good, but this filter not applied to the next page. In other words when i click the next page, the grid lost the filter.
Need help ASAP.
Thanks in advance.
Eva
<% string ImageGalleryPath = "/images/ModuleName";
EditorID.ImageManager.ViewPaths = new string[] { ImageGalleryPath };
EditorID.ImageManager.UploadPaths = new string[] { ImageGalleryPath };
EditorID.ImageManager.DeletePaths = new string[] { ImageGalleryPath };
EditorID.ImageManager.MaxUploadFileSize = ConfigurationHelper.MaxUploadFileSize;
EditorID.ImageManager.SearchPatterns = ConfigurationHelper.SearchPatternsImages;
EditorID.DisableFilter(Telerik.Web.UI.EditorFilters.RemoveScripts);
EditorID.DisableFilter(Telerik.Web.UI.EditorFilters.MakeUrlsAbsolute);
EditorID.DisableFilter(Telerik.Web.UI.EditorFilters.FixUlBoldItalic);
EditorID.EnableFilter(Telerik.Web.UI.EditorFilters.FixEnclosingP);
EditorID.DisableFilter(Telerik.Web.UI.EditorFilters.IECleanAnchors);
EditorID.DisableFilter(Telerik.Web.UI.EditorFilters.MozEmStrong);
EditorID.EnableFilter(Telerik.Web.UI.EditorFilters.ConvertFontToSpan);
EditorID.DisableFilter(Telerik.Web.UI.EditorFilters.ConvertToXhtml);
EditorID.EnableFilter(Telerik.Web.UI.EditorFilters.IndentHTMLContent);
%>