or
<
telerik:RadMultiPage
ID
=
"rmpTabs"
runat
=
"server"
SelectedIndex
=
"0"
>
<
telerik:RadPageView
ID
=
"rpvSolicitud"
runat
=
"server"
>
...
<
telerik:RadAjaxPanel
ID
=
"rapAutorizaRechaza"
runat
=
"server"
>
<
asp:Panel
ID
=
"PanelAutorizaRechaza"
runat
=
"server"
Visible
=
"false"
>
...
<
telerik:RadTextBox
ID
=
"txtRechazoComentarios"
runat
=
"server"
Visible
=
"true"
TextMode
=
"MultiLine"
Width
=
"98%"
Height
=
"98%"
>
<
ClientEvents
OnLoad
=
"MostrarTxtRechazo"
/>
</
telerik:RadTextBox
>
...
</
asp:Panel
>
</
telerik:RadAjaxPanel
>
...
</
telerik:RadPageView
>
</
telerik:RadMultiPage
>
function
MostrarTxtRechazo() {
var
rechazo = document.getElementById(
'hdnRechazar'
);
if
(rechazo !=
null
&& rechazo.value == 1 && (TieneInnerHTML(
'<%= lblErrorMotivo.ClientID %>'
) || TieneInnerHTML(
'<%= lblErrorPassword.ClientID %>'
))) {
MostrarElemento(
'lblRechazoComentarios'
);
MostrarElemento(
'divRechazoComentarios'
);
}
}
Hi i am implemented radgrid filter in my code.
I do the following steps:
I have dropdown as filter in one of the column and two datepickers in other column
When i filter using the dropdown and clearing it works fine,
But when i filter using date pickers and clearing it ,The grid result set is filtered.
Now when I provide a new search condition and click on the Go button, the radgrid is populated but the filter condidtion provided in the previous case in not cleared.
Can someone provide me the code to clear the filter expression ???
It is extremely urgent.
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|
Thanks & Regards
Karthik