i created a filtration scheme which filters my grid..lets say i choose in the combo box x ..we get all the activites of type x.. which is working just fine...now when i press edit button(the edit column is created with the following code:
when i press edit all the filtration is removed and the column with the same index as the one i hit edit on (but with deferant data without filtration apears).... now what am i doing wrong please help me guys i have asked 2 questions in the last 3 days on this forum and got no responses so i had to alter everything i am doing but i am at a very critical point of my work right now pleaase help me asap
| <EditItemTemplate><asp:ImageButton |
| ID="update_button" runat="server" Commandname="update" |
| ImageUrl="~/updatebutton.JPG" OnClick="update_button_click" /><asp:ImageButton |
| ID="cancel_button" runat="server" CausesValidation="false" CommandName="cancel" |
| ImageUrl="~/cancelbutton.JPG" /> |
| </EditItemTemplate> |
| <ItemTemplate> |
| <asp:ImageButton ID="edit_button" runat="server" Commandname="edit" |
| ImageUrl="~/editbutton.JPG" onclick="edit_button_click" /> |
| </ItemTemplate> |
| <HeaderStyle Height="10px" Width="45px" /> |
| <itemstyle BorderColor="gray" BorderStyle="NotSet" borderwidth="1px" |
| Font-Size="9px" Height="10px" VerticalAlign="Top" Width="45px" /> |
| </telerik:GridTemplateColumn> |