[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.buildingcontrols

Set readonly property on cell level in a datagridview

Patrik

2/15/2007 8:06:00 AM

Hi,

I have a datagridview column that will contain both editable and
non-editable values. I have set the columns readonly property to true. I
then use the AddRows event to check the value of an hidden column and if
that is false i set a specific cells readonly property in the column to
false.

My problems is that this do not open a specific cell for editing but seems
to open all cells in the column. Is it not possible to have some cells in a
column to override the columns readonly property?


3 Answers

stcheng

2/15/2007 10:28:00 AM

0

Hello Patrik,

As for the "DataGridView" control, do you mean the DataGrid or GridView
control? I'd like to confirm that you're using either of the two ASP.NET
template databound controls.

According to your description, you want to make a certain column(multiple
rows) in the GridView control have different editable status for each row
of that column, correct? If so, here are some of my understanding and some
questions which need your confirm:

** For the Readonly property of GridViews' columns, when you set it, it
will be applied to all the rows of that column, therefore, this property
can not be used to adjust individual cell(of a certain column)'s visibility
or edit mode.

** Since you want some rows of the column to be editable, how do you add
the edit UI/tempalte? Do you define two templates(ItemTemplate and
EditTemplate) or simply define only one template(ItemTemplate) and put
different control according to whether that row is editable?

** Is the "AddRows" event the "RowCreated" event of GridView? If so
what's your current code logic in it?

I would be helpful if you can provide us some code fragment to demonstrate
your current implement so that we can perform research on this.

Please feel free to post here if there is anything I missed.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default....
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/de....

==================================================



This posting is provided "AS IS" with no warranties, and confers no rights.


Patrik

2/15/2007 12:24:00 PM

0

I am sorry, I just realized that I have posted this in the wrong newsgroup.
I am working with the windows forms datagridview using C#.

/Patrik

"Steven Cheng[MSFT]" <stcheng@online.microsoft.com> wrote in message
news:yIiuVwOUHHA.608@TK2MSFTNGHUB02.phx.gbl...
> Hello Patrik,
>
> As for the "DataGridView" control, do you mean the DataGrid or GridView
> control? I'd like to confirm that you're using either of the two ASP.NET
> template databound controls.
>
> According to your description, you want to make a certain column(multiple
> rows) in the GridView control have different editable status for each row
> of that column, correct? If so, here are some of my understanding and
> some
> questions which need your confirm:
>
> ** For the Readonly property of GridViews' columns, when you set it, it
> will be applied to all the rows of that column, therefore, this property
> can not be used to adjust individual cell(of a certain column)'s
> visibility
> or edit mode.
>
> ** Since you want some rows of the column to be editable, how do you add
> the edit UI/tempalte? Do you define two templates(ItemTemplate and
> EditTemplate) or simply define only one template(ItemTemplate) and put
> different control according to whether that row is editable?
>
> ** Is the "AddRows" event the "RowCreated" event of GridView? If so
> what's your current code logic in it?
>
> I would be helpful if you can provide us some code fragment to demonstrate
> your current implement so that we can perform research on this.
>
> Please feel free to post here if there is anything I missed.
>
> Sincerely,
>
> Steven Cheng
>
> Microsoft MSDN Online Support Lead
>
>
>
> ==================================================
>
> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/subscriptions/managednewsgroups/default....
> ications.
>
>
>
> Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 1 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions or complex
> project analysis and dump analysis issues. Issues of this nature are best
> handled working with a dedicated Microsoft Support Engineer by contacting
> Microsoft Customer Support Services (CSS) at
> http://msdn.microsoft.com/subscriptions/support/de....
>
> ==================================================
>
>
>
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>
>


stcheng

2/16/2007 1:30:00 AM

0

Thanks for your reply Patrik,

If so, you can post the question in the following newsgroups which would be
helpful for you to get the quick and proper response:

microsoft.public.dotnet.framework.windowsforms
microsoft.public.dotnet.framework.windowsforms.controls

Also, if you meet any ASP.NET issues, welcome to post here :)

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.