or
I have a RadGrid in my page.
For a particular string type column i had set the default filter function as "Contains".
On first page load i found that it appears as "Contains" in the Filter menu.
But if lets say, i filter any other column with any filter criteria and again come back to this column and open the filter menu the default filter function now automatically changed to "No Filter".
Many work arrounds i had tried but is not working for me, cant even found the exact cause for it.
Can any body help me in this regard ? I want to know why it happens like this and what may be the fixes for this ?
Thanks in advance. :)
function GetAddress(rcbCity) { // rcbCity is the clientID of the RadComboBox with ID rcbCity . how do i get the selected index,item and value here?}if (!IsPostBack)
{
btnMap.Attributes.Add("onClick", "GeocodeAddress('" + this.rcbCity.ClientID + "'); return false;");
}function OnClientSelectedIndexChanged(sender, eventArgs) { var item = eventArgs.get_item(); if (item.get_text() == "Rejected") { var WorkItemId = [...] OpenReasonWindow(workItemId); }}<tr id="ctl00_PageContent_rtlRshItems_ctl04__2" class="rtlR rtlRL" style="background-color:Lavender;"><td align="left" valign="middle" style="width:90px;"> <div id="ctl00_PageContent_rtlRshItems_ctl04_rcbStatus" class="RadComboBox RadComboBox_Windows7"> <table class="rcbFocused" style="border-width: 0pt; border-collapse: collapse;" summary="combobox"> <tbody> <tr class="rcbReadOnly"> <td class="rcbInputCell rcbInputCellLeft" style="width:100%;"> <input id="ctl00_PageContent_rtlRshItems_ctl04_rcbStatus_Input" class="rcbInput" type="text" readonly="readonly" value="Submitted" name="ctl00$PageContent$rtlRshItems$ctl04$rcbStatus" autocomplete="off"> </td> <td class="rcbArrowCell rcbArrowCellRight"> <a id="ctl00_PageContent_rtlRshItems_ctl04_rcbStatus_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a> </td> </tr> </tbody> </table> <input id="ctl00_PageContent_rtlRshItems_ctl04_rcbStatus_ClientState" type="hidden" name="ctl00_PageContent_rtlRshItems_ctl04_rcbStatus_ClientState" autocomplete="off"> </div></td><td class=" rtlCL" style="width:0px;"> <asp:label id="lblWorkItemId" text="199" visible="false"> </asp:label></td>lblWorkItemId, how can I do this?
if (e.CommandName == "Edit") { GridEditFormItem item = (GridEditFormItem)(e.Item as GridDataItem).EditFormItem; ListBox lb = (ListBox)item.FindControl("lstMembers");