Jump to content

Recommended Posts

Posted

1.TUnimTabPanel bugs:

 

 a.if  TabVisible = false,the control(align=alClient)   in tabsheep is not bottom. Fix:

function TUnimTabSheet.GetEffectiveHeight:Integer;
var
  CH : Integer;
begin
  CH := -1;
  if Assigned(PageControl) then
    CH := PageControl.Height
  else if Assigned(Parent) then
    CH := Parent.Height;

  if CH<>-1 then
  begin
    //old code =  Result:=CH-TOUCH_TAB_HEIGHT
    //tintinsoft
    if TabVisible then
       Result:=CH-TOUCH_TAB_HEIGHT
    else
      Result := CH;
  end
  else
    Result:=Height;
end;

b.If using touch Theme "cupertino-classic",the font on  tabsheet of TUnimTabPanel is verry  small and  Layout confusion.

 

 

2. TFieldDataLink in TUnimDBSelect.

     

 The dbcombobox TFieldDataLink variable is declared in the protected region,but  TUnimDBSelect TFieldDataLink variable is declared in the private region.so if i extend TUnimDBSelect, I can not use TFieldDataLink variable .

 

3. About question with TUnimSegmentedButton.

 

i want to click any button of TUnimSegmentedButton(allowMultiple =true),and click it pressed and auto bounce.

How can write  js code?

 

init js code:

 

function beforeInit(sender, config)
{
    config.allowMultiple = true;
}

      

 

4. mobiel UnimButtonEdit 

   

   I write a UniButtonEdit,it work well on desktop. But I  write a UnimButtonEdit on mobile web, it raise error " can not read property "Trigger" undefine "

  

 

procedure TUnimDBButtonEdit.ConfigJSClasses(ALoading: Boolean);
begin
  inherited;
  // JSObjects.DefaultJSClassName:='Ext.form.TriggerField';
  JSObjects.DefaultJSClassName := 'Ext.form.field.Trigger';
end;
 
 
How do you modify this code?
 
5. TUnimMenu can not scroll menuitems when menuitems exceed screen

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