Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
RockNRoll #1
Textbox Font and Fontsize in Edit Mode
How do I change the textbox font and fontsize in Edit Mode? Thanks,
-Dave
RockNRoll Guest
-
font rendering in edit mode
When we are making edits with the cs3 verison of contribute the font will render to an unreadable size when in edit mode. Does anyone have a clue as... -
FONT SIZES IN EDIT MODE
Just had my first look at contribute, and when i am in edit mode, some of the text appears so small on my screen its impossible to read, and... -
Edit button not converting to edit mode
I am running into this issue. I am still trying to pinpoint what is causing it but am having a hard time. -
Would like to load a datagrid already in edit mode instead of having the user click the edit button
Now my asp.net datagrid shows an edit button and clicking it puts the datagrid in edit mode. I would like to: 1) possilby load the page already... -
Set the width of the edit textbox after clicking on Edit link in datagrid...
Hi There, I have a data grid where I have a couple of columns as follows: ----------------------------------------- |id | textual... -
Raghavendra T V #2
Re: Textbox Font and Fontsize in Edit Mode
Hi RockNRoll,
You can change the Font,fontsize for a datagrid in editmode by
using this event
Create a CSS class with some name and add the font size, font style
etc..etc..
private void DataGridName_EditCommand()
{
e.Item.CssClass = "ClassName";
}
The above code will change the style at runtime.
You can also change the style at design time.
If your columns in Datagrid are template columns then you can rightclick on
grid and click on edit column [0] , column[1] ..etc..
and then choose the controls in the grid and set the CSS style for
editItemTemplate accordingly in Css in property window.
Hope this helps you.
Thanks
Raghavendra
"RockNRoll" <daveweber@yahoo.com> wrote in message
news:O6YFpH6jEHA.2764@TK2MSFTNGP11.phx.gbl...> How do I change the textbox font and fontsize in Edit Mode? Thanks,
>
> -Dave
>
>
Raghavendra T V Guest



Reply With Quote

