Jump to content

Recommended Posts

Posted

Hi

 

I want to change the height and width of the cells of a string grid , height = 90 width = 90 , in design mode seen in that size, but in execution only the width is changed, as I can do ?

 

Use delphi XE2 , Windows 10 home

 

 

I want to change the height and width of the cells of a string grid , height = 90 width = 90 , in design mode seen in that size, but in execution only the width is changed, as I can do ? Use delphi XE2 , Windows 10 home

Posted

Hi,

 

Try:
 

Width:

UniStringGrid1->Columns[xxx].Width = 90;

 

Height:

UniServerModule->CustomCSS...

.x-grid-cell-inner {
    height: 90px;
}

Best regards.

  • 2 weeks later...
Posted

Thanks for your reply.
That instruction , exchange all existing StringGrid in the application ?
If only what I require this specific size , in a specific way , as it should ?

Thank you

Posted

Hi,

 

That instruction , exchange all existing StringGrid in the application ?

 

yes, height will be changed for all

 

 

If only what I require this specific size , in a specific way , as it should ?

 

Do you mean for only one ?!

Posted

Hi,

 

Then try this:

 

1. UniServerModule->CustomCSS...

.my-stringgrid .x-grid-cell {
    height: 90px;
}

2. UniStringGrid1->ClientEvents->UniEvents-> beforeInit fn:

function beforeInit(sender, config)
{
    config.cls = "my-stringgrid";
}

Best regards.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...