Jump to content

TUnimDatePicker has problem with FireFox 49


Freeman35

Recommended Posts

Hello,

I can not edit TUnimDatePicker in firefox? tested in

http://prime.fmsoft.net/demo/touch/mdemo.dll/m

menu item "Carousel" not show any text etc. empty page

Form controls -> DatePicker when click on TUnimDatePicker, show whell under screen, but not any text so can not select day

Is this bug?

I tested with firefox, its has problem. On safari and opera work normal.

Regards

Link to comment
Share on other sites

For now you can use this solution... :

 

UnimDBDatePicker (UnimDatePicker) -> ClientEvents -> ExtEvents -> painted fn:

function painted(sender, eOpts) 
{
    if (this.getPicker()) {
        if (this.getPicker().getInnerItems()[0]) this.getPicker().getInnerItems()[0].element.dom.style.flex = "44.5%";
        if (this.getPicker().getInnerItems()[1]) this.getPicker().getInnerItems()[1].element.dom.style.flex = "22%";
        if (this.getPicker().getInnerItems()[2]) this.getPicker().getInnerItems()[2].element.dom.style.flex = "33.5%";
    }
}

Best regards.

Link to comment
Share on other sites

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