this is a radFilter (not on a grid) that i would like to save & or load settings and have the filter expand and show them.
i get a method error when trying to use the :
Session["RadFilterExpressions"] = RadFilter1.SaveSettings();
LoadSettings.Enabled = true;
tells me there's no method for this. is this something that's reserved for the radGridFilters only? i've done this before on grid filters, but not the STAND ALONE RADFILTER.
and i've looked a literally every tutorial out there, so, if not doable - just lemme know and i'll walk away from this one.
thanks
rik
i get a method error when trying to use the :
Session["RadFilterExpressions"] = RadFilter1.SaveSettings();
LoadSettings.Enabled = true;
tells me there's no method for this. is this something that's reserved for the radGridFilters only? i've done this before on grid filters, but not the STAND ALONE RADFILTER.
and i've looked a literally every tutorial out there, so, if not doable - just lemme know and i'll walk away from this one.
thanks
rik
<telerik:RadFilter ID="WorkOrdersRadFilter" runat="server" Skin="WebBlue" ShowApplyButton="true"
OnApplyExpressions="WorkOrdersRadFilter_Apply" ApplyButtonText="Filter Work Orders"
OnPreRender="WorkOrdersRadFilter_PreRender" OnFieldEditorCreating="RadFilter_FieldEditorCreating" OnItemCommand="WorkOrdersRadFilter_ItemCommand">
<FieldEditors>
<telerik:RadFilterTextFieldEditor FieldName="WORKORDERNUMBER" DisplayName="Work Order#"
DataType="System.String" />
<goldcustom:RadFilterComboBoxEditor FieldName="WOTYPENAME" DisplayName="WO Type"
DataTextField="WOTYPENAME" DataSourceID="WorkOrderTypeFilterODS" DataType="System.String"
ComboBoxSkin="WebBlue" />
</FieldEditors>
</telerik:RadFilter>
</telerik:RadFilter>