Jump to content

newsanti

uniGUI Subscriber
  • Posts

    323
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by newsanti

  1. Event Painted...with Tunimemo... has effected flash white border. (2 step ..1. write white border then 2. remove border)
  2. UnimMemo1.JSInterface.JSConfig('border', ['0 0 0 0']); Border still exist.
  3. Ext.form.field.Text view source $form-text-field-border-color $form-text-field-border-style $form-text-field-border-width https://docs-devel.sencha.com/extjs/7.5.1/classic/Ext.form.field.TextArea.html#css_var-S-$form-text-field-border-style
  4. Setting Padding of TunimMemo Example Padding = 50 50 50 50
  5. Working. Thanks. How to editing vertical center?
  6. constructor TsmswUnimWebSpaceWS666A100BodyItem78Frame101.Create( AOwner: TComponent); begin inherited Create(AOwner); var oMemo:= UnimMemo1; oMemo.JSInterface .JSAddListener('painted', 'function(me){'+ 'me.inputElement.applyStyles('''+oMemo.Font.ToString(True, False, True) +''');'+ 'me.inputElement.setStyle("line-height", me.inputElement.getStyle("font-size"));'+ 'me.inputWrapElement.setStyle("border", "none");'+ '}'); end; This code not working. for overlap.
  7. Run-Time... var oMemo:= oForm.UnimMemo1; oMemo.Color:= oTask.TagColor1; oMemo.Font.Color:= oTask.TagColor2; oMemo.Font.Size:= 20; oMemo.JSInterface. JSConfig('textAlign', ['center']); //'left', 'center', 'right'
  8. overlap text..with TunimMemo not working. UnimMemo1.JSInterface .JSAddListener('afterrender', 'function(){this.inputEl.setStyle("line-height", this.inputEl.getStyle("font-size"))}');
  9. Change Border Color and Border size of TunimPanel. When panel selected.
  10. with oForm.Panel_BODY.JSInterface do begin JSCall('bodyElement.setStyle',['border', 'none']); //Inner Border? Exist. end; How to change corder Color of TunimPanel at run-time?
  11. Yes… I want to create panel as button with image background and Label on top And TunimImage.Visible= False for client side Menu application.
  12. Tunipicture.ImageURL TunimImage.Picture is TPicture, Thus no ImageURL Property.
  13. TunimImage.Picture >> What is URL Image in Picture Property? Bring URL to set Background Image of TunimPanel. don't need external file.
  14. How to get Image URL From TunimImage? 1.Save image in TunimImage; 2.Get Image URL inside TunimImage 3.Change Panel Background with Image URL
  15. How to play video from youtube with TunimVideo?
  16. function chart.beforeInit(sender, config) { config.series[1].renderer=function(sprite, config, rendererData, index){ return {strokeStyle: '#FF8C00', label: "" }; } } How to fix Border color for each part of Series2? I try with run-time code but error. JSCall('chart.getSeries()['+ UnimChart1.SeriesList.IndexOf(UnimPieSeries2).ToString +']._setStrokeStyle', '"#FF8C00"');
  17. Sorry ... It worked. Thank. I miss redraw. procedure TMainmForm.UnimLabel1Click(Sender: TObject); begin UnimPieSeries2.Colors[0]:= '#FF8C00'; UnimPieSeries2.Colors[1]:= '#FFFFFF'; UnimPieSeries2.Colors[2]:= '#FFFFFF'; with UnimChart1.JSInterface do JSCall('chart.getSeries()['+ UnimChart1.SeriesList.IndexOf(UnimPieSeries2).ToString +'].setColors', [JSArray(['#FF8C00','#FFFFFF','#FFFFFF'])]); UnimChart1.Redraw; end;
×
×
  • Create New...