Jump to content

Recommended Posts

Posted

Hello,

I'm trying to change a css (line-height) of a UniButton or apply a css class as below, but does not work.

1 UniButton1.ClientEvents.ExtEvents

function OnAfterrender(sender)
{
  var id = $(this).attr('id') + '-btnInnerEl';
  $("#"+id).css('line-height', '15px');  
}

 

2 Using UniSession.AddJS

begin
 UniSession.AddJS(UniButton1.JSName+'-btnInnerEl.addCls("x-line-height");');
end;

Any idea?

 

Thanks.

Posted

Hi Cristiano,

 

1 UniButton1.ClientEvents.ExtEvents

function OnAfterrender(sender)
{
  var id = $(this).attr('id') + '-btnInnerEl';
  $("#"+id).css('line-height', '15px');  
}

 

Try:

function boxready(sender, width, height, eOpts)
{
  sender.btnInnerEl.setStyle('line-height', '15px')
}
2 Using UniSession.AddJS

begin
 UniSession.AddJS(UniButton1.JSName+'-btnInnerEl.addCls("x-line-height");');
end;

Any idea?

 

 

Try:

UniSession.AddJS(UniButton3.JSName + '.btnInnerEl.setStyle(''line-height'', ''15px'')');

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...