开发者

ASP .Net Gridview rowupdated - can it happen before the page load?

Here's the scenario: -Gridview control -Calendar control

I only want the calendar to show if a specific item is chosen in the drop down list which is in a gridview. When the grid view row is updated I want to change whether or 开发者_运维问答not the calendar is visible. The calendar's visibility only shows correctly on the next post back.


Page_Load is called before events which are called before Render. There is no reason why you couldn't, in your event, check the value of the dropdownlist and set the Calendar control visible property, this would then knock into Render.


Try adding a check of IsPostBack before setting the loading your GridView. That will prevent you from overwriting it's values.

protected void Page_Load(object sender, EventArgs e) {
    if(!IsPostBack) {
         /*Populate your GridView*/
    }
}

protected void GridView_RowUpdated(object sender, GridViewUpdatedEventArgs e) 
{
    /*show your calendar here if you need to*/
    if(whatever) calendar.Visible = true;
}

This should work, if it doesn't then I'd recommend putting breakpoints in your Page_Load and RowUpdated methods and stepping through it, preferrably with a Watch on the gridview's datasource (it'll go red if it's changed) and a watch on calendar.Visible, to help you see if something has changed.

For the record, control events like OnRowUpdated will never fire before Page_Load unless explicitly called for some reason. Chances are you're just doing something where it's not updating the content of the GridView before it gets to the RowUpdated method, or it's overwriting the data in the GridView due to a lack of !IsPostBack check.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜